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.

85 lines
1.8 KiB

  1. // AddIn.idl : IDL source for AddIn
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (AddIn.tlb) and marshalling code.
  5. #include "olectl.h"
  6. import "oaidl.idl";
  7. import "ocidl.idl";
  8. [
  9. object,
  10. uuid(AC8A6BA8-D87D-409C-A0F0-D999662C913A),
  11. dual,
  12. nonextensible,
  13. helpstring("ITestSettingsCtrl Interface"),
  14. pointer_default(unique)
  15. ]
  16. interface ITestSettingsCtrl : IDispatch{
  17. };
  18. [
  19. object,
  20. uuid(EFEC845F-A87B-4738-9E34-BF4DAAD4C4F4),
  21. dual,
  22. nonextensible,
  23. helpstring("ILogViewer Interface"),
  24. pointer_default(unique)
  25. ]
  26. interface ILogViewer : IDispatch{
  27. HRESULT Refresh();
  28. };
  29. [
  30. object,
  31. uuid(95be0197-6a8a-486a-b18c-fa36bb1c274b),
  32. dual,
  33. nonextensible,
  34. helpstring("IAVOptions Interface"),
  35. pointer_default(unique)
  36. ]
  37. interface IAVOptions : IDispatch{
  38. };
  39. [
  40. uuid(361F419C-04B3-49EC-B4E5-FFD812346A8A),
  41. version(1.0),
  42. helpstring("AppVerifier 1.0 Type Library")
  43. ]
  44. library AppVerifierLib
  45. {
  46. importlib("stdole2.tlb");
  47. [
  48. uuid(FED46B11-2A9A-40CC-A493-65E7AF0A3227),
  49. helpstring("Connect Class")
  50. ]
  51. coclass Connect
  52. {
  53. [default] interface IUnknown;
  54. };
  55. [
  56. uuid(BCD20B6C-DD84-4EC8-8E43-580229F1A9EE),
  57. helpstring("TestSettingsCtrl Class")
  58. ]
  59. coclass TestSettingsCtrl
  60. {
  61. [default] interface ITestSettingsCtrl;
  62. };
  63. [
  64. uuid(DC86FB80-6B27-4592-A82F-90F5C70EB929),
  65. helpstring("LogViewer Class")
  66. ]
  67. coclass LogViewer
  68. {
  69. [default] interface ILogViewer;
  70. };
  71. [
  72. uuid(0f9a8228-9a06-4d15-97c2-fa14c9ff397a),
  73. helpstring("AVOptions Class")
  74. ]
  75. coclass AVOptions
  76. {
  77. [default] interface IAVOptions;
  78. };
  79. };