Source code of Windows XP (NT5)
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.

51 lines
1.8 KiB

  1. /*
  2. **------------------------------------------------------------------------------
  3. ** Module: NTFS Compression Disk Cleanup Cleaner
  4. ** File: compguid.h
  5. **
  6. ** Purpose: Defines A 'NTFS Compression Cleaner' Class ID for OLE 2.0
  7. ** Notes: The unique Class ID of this Compression Cleaner class is:
  8. **
  9. ** {B50F5260-0C21-11D2-AB56-00A0C9082678}
  10. **
  11. ** Mod Log: Created by Jason Cobb (2/97)
  12. ** Adapted for Compression Cleaner by DSchott (6/98)
  13. **
  14. ** Copyright (c)1997-1998 Microsoft Corporation. All Rights Reserved.
  15. **------------------------------------------------------------------------------
  16. */
  17. #ifndef COMPGUID_H
  18. #define COMPGUID_H
  19. /*
  20. **------------------------------------------------------------------------------
  21. ** Microsoft C++ include files
  22. **------------------------------------------------------------------------------
  23. */
  24. #include <objbase.h>
  25. #include <initguid.h>
  26. /*
  27. **------------------------------------------------------------------------------
  28. ** Class ID
  29. **------------------------------------------------------------------------------
  30. */
  31. // {B50F5260-0C21-11D2-AB56-00A0C9082678}
  32. DEFINE_GUID(CLSID_CompCleaner,
  33. 0xB50F5260L, 0x0C21, 0x11D2, 0xAB, 0x56, 0x00, 0xA0, 0xC9, 0x08, 0x26, 0x78);
  34. #define REG_COMPCLEANER_GUID TEXT("{B50F5260-0C21-11D2-AB56-00A0C9082678}")
  35. #define REG_COMPCLEANER_CLSID TEXT("CLSID\\{B50F5260-0C21-11D2-AB56-00A0C9082678}")
  36. #define REG_COMPCLEANER_INPROCSERVER32 TEXT("CLSID\\{B50F5260-0C21-11D2-AB56-00A0C9082678}\\InProcServer32")
  37. #define REG_COMPCLEANER_DEFAULTICON TEXT("CLSID\\{B50F5260-0C21-11D2-AB56-00A0C9082678}\\DefaultIcon")
  38. #define ID_COMPCLEANER 2
  39. #endif // COMPGUID_H
  40. /*
  41. **------------------------------------------------------------------------------
  42. ** End of File
  43. **------------------------------------------------------------------------------
  44. */