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.

56 lines
1.1 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation
  6. //
  7. // File: devmgr.idl
  8. //
  9. //--------------------------------------------------------------------------
  10. // devmgr.idl : IDL source for devmgr.dll
  11. //
  12. // This file will be processed by the MIDL tool to
  13. // produce the type library (devmgr.tlb) and marshalling code.
  14. [
  15. object,
  16. uuid(74246BF8-4C96-11D0-ABEF-0020AF6B0B7A),
  17. helpstring("IDevMgr Interface"),
  18. pointer_default(unique)
  19. ]
  20. interface IDevMgrSnapin : IUnknown
  21. {
  22. import "oaidl.idl";
  23. };
  24. [
  25. uuid(74246BF6-4C96-11D0-ABEF-0020AF6B0B7A),
  26. version(1.0),
  27. helpstring("devive manager snapin 1.0 Type Library")
  28. ]
  29. library DEVMGRLib
  30. {
  31. importlib("stdole2.tlb");
  32. [
  33. uuid(74246BFC-4C96-11D0-ABEF-0020AF6B0B7A),
  34. helpstring("DevMgrSnapin Class")
  35. ]
  36. coclass CDevMgrSnapin
  37. {
  38. [default] interface IDevMgrSnapin;
  39. };
  40. [
  41. uuid(90087284-d6d6-11d0-8353-00a0c90640bf),
  42. helpstring("DevMgr Extension class")
  43. ]
  44. coclass CDevMgrExtension
  45. {
  46. [default] interface IDevMgrSnapin;
  47. };
  48. };