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.

46 lines
1.1 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996 - 1998
  5. //
  6. // File: ClassID.hxx
  7. //
  8. // Contents: Class Ids for MMC snapin for CI.
  9. //
  10. // History: 08-Aug-1997 KyleP Added header
  11. // 7/1/98 mohamedn extend comp. mgmt
  12. //
  13. //--------------------------------------------------------------------------
  14. #pragma once
  15. #include <extinc.hxx>
  16. //
  17. // CI Snapin clsids
  18. //
  19. GUID const guidCISnapin = { 0x95ad72f0, 0x44ce, 0x11d0,
  20. 0xae, 0x29, 0x00, 0xaa, 0x00, 0x4b, 0x99, 0x86 };
  21. WCHAR const wszCISnapin[] = L"{95ad72f0-44ce-11d0-ae29-00aa004b9986}";
  22. //
  23. // CI Node clsids
  24. //
  25. GUID const guidCIRootNode = { 0x5401e3e9, 0xf5f6, 0x11d1, { 0xb4, 0xf7, 0x0, 0xc0, 0x4f, 0xc2, 0xdb, 0x8d } };
  26. WCHAR const wszCIRootNode[] = L"{5401E3E9-F5F6-11d1-B4F7-00C04FC2DB8D}";
  27. //
  28. // NodeType registration info
  29. //
  30. struct _NODE_TYPE_INFO_ENTRY
  31. {
  32. const GUID * _pNodeGUID;
  33. WCHAR const * _pwszNodeGUID;
  34. WCHAR const * _pwszNodeDescription;
  35. };