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.

73 lines
2.1 KiB

  1. /*++
  2. Copyright (c) 1994-1998 Microsoft Corporation
  3. Module Name :
  4. guids.h
  5. Abstract:
  6. GUIDs as used by IIS snapin definition
  7. Author:
  8. Ronald Meijer (ronaldm)
  9. Project:
  10. Internet Services Manager
  11. Revision History:
  12. --*/
  13. #ifndef _GUIDS_H
  14. #define _GUIDS_H
  15. //
  16. // New Clipboard format that has the Type and Cookie
  17. //
  18. extern const wchar_t * ISM_SNAPIN_INTERNAL;
  19. //
  20. // Published context information for extensions to extend
  21. //
  22. // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  23. extern const wchar_t * MYCOMPUT_MACHINE_NAME;
  24. extern const wchar_t * ISM_SNAPIN_MACHINE_NAME;
  25. extern const wchar_t * ISM_SNAPIN_SERVICE;
  26. extern const wchar_t * ISM_SNAPIN_INSTANCE;
  27. extern const wchar_t * ISM_SNAPIN_PARENT_PATH;
  28. extern const wchar_t * ISM_SNAPIN_NODE;
  29. extern const wchar_t * ISM_SNAPIN_META_PATH;
  30. //
  31. // GUIDS
  32. //
  33. // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  34. //
  35. // Snapin GUID
  36. //
  37. extern const CLSID CLSID_Snapin; // In-Proc server GUID
  38. extern const CLSID CLSID_About; // About GUID
  39. //
  40. // IIS Object GUIDS
  41. //
  42. extern "C" const GUID cInternetRootNode; // Internet root node num
  43. extern "C" const GUID cMachineNode; // Machine node num
  44. extern "C" const GUID cServiceCollectorNode; // Service Collector node num
  45. extern "C" const GUID cInstanceCollectorNode; // Instance Collector node num
  46. extern "C" const GUID cInstanceNode; // Instance node num
  47. extern "C" const GUID cChildNode; // Child node num
  48. extern "C" const GUID cFileNode; // File node num
  49. extern "C" const GUID cAppPoolsNode;
  50. extern "C" const GUID cAppPoolNode;
  51. extern "C" const GUID cApplicationNode;
  52. extern "C" const GUID cWebServiceExtensionContainer;
  53. extern "C" const GUID cWebServiceExtension;
  54. extern "C" const GUID cCompMgmtService;
  55. BOOL GetFriendlyGuidName(GUID InputGUID, CString & strReturnedString);
  56. #endif //_GUIDS_H