Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.3 KiB

  1. // appcompr.idl : IDL source for appcompr.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (appcompr.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. #include "olectl.h"
  8. [
  9. object,
  10. uuid(CDCA6A6F-9C38-4828-A76C-05A6E490E574),
  11. dual,
  12. helpstring("IAppReport Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface IAppReport : IDispatch
  16. {
  17. [id(1), helpstring("method BrowseForExecutable")] HRESULT BrowseForExecutable([in] BSTR bstrWinTitle, [in] BSTR bstrPreviousPath, [out, retval] VARIANT *bstrExeName);
  18. [id(2), helpstring("method GetApplicationFromList")] HRESULT GetApplicationFromList([in] BSTR bstrTitle, [out, retval] VARIANT *bstrExeName);
  19. [id(3), helpstring("method CreateReport")] HRESULT CreateReport([in] BSTR bstrTitle, [in] BSTR bstrProblemType, [in] BSTR bstrComment, [in] BSTR bstrACWResult, [in] BSTR bstrAppName, [out, retval] VARIANT* DwResult);
  20. };
  21. [
  22. uuid(EB71D940-2FD5-4FB3-99F4-FC0CB921A90F),
  23. version(1.0),
  24. helpstring("appcompr 1.0 Type Library")
  25. ]
  26. library APPCOMPRLib
  27. {
  28. importlib("stdole32.tlb");
  29. importlib("stdole2.tlb");
  30. [
  31. uuid(E065DE4B-6F0E-45FD-B30F-04ED81D5C258),
  32. helpstring("AppReport Class")
  33. ]
  34. coclass AppReport
  35. {
  36. [default] interface IAppReport;
  37. };
  38. };