44 lines
1.3 KiB
C
44 lines
1.3 KiB
C
/*
|
|
**------------------------------------------------------------------------------
|
|
** Module: Disk Space Cleanup Property Sheets
|
|
** File: diskguid.h
|
|
**
|
|
** Purpose: Defines The 'Disk Space Cleanup Property Sheet' Class ID for OLE 2.0
|
|
** Notes: The unique Class ID of this Disk Space Cleanup Shell extension class is:
|
|
**
|
|
** E0568D07-88AE-11d0-8B0C-00805F8ABE06
|
|
**
|
|
** Mod Log: Created by Jason Cobb (2/97)
|
|
**
|
|
** Copyright (c)1997 Microsoft Corporation, All Rights Reserved
|
|
**------------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DISKGUID_H
|
|
#define DISKGUID_H
|
|
|
|
|
|
/*
|
|
**------------------------------------------------------------------------------
|
|
** Microsoft C++ include files
|
|
**------------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
/*
|
|
**------------------------------------------------------------------------------
|
|
** Class ID
|
|
**------------------------------------------------------------------------------
|
|
*/
|
|
// {E0568D07-88AE-11d0-8B0C-00805F8ABE06}
|
|
DEFINE_GUID(CLSID_CleanMgrShellExt,
|
|
0xe0568d07, 0x88ae, 0x11d0, 0x8b, 0xc, 0x0, 0x80, 0x5f, 0x8a, 0xbe, 0x6);
|
|
|
|
|
|
|
|
#endif // DISKGUID_H
|
|
/*
|
|
**------------------------------------------------------------------------------
|
|
** End of File
|
|
**------------------------------------------------------------------------------
|
|
*/
|