- //
- // Supported.h
- //
- #ifndef __H_Supported__
- #define __H_Supported__
- const long GUID_MAX_COUNT = 1000;
- class CSupported
- {
- private:
- static GUID sSupportedGUIDs[GUID_MAX_COUNT];
- static long sGUIDCount;
- public:
- CSupported();
- ~CSupported();
- static BOOL IsGUIDSupported(GUID inGUID);
- };
- #endif // __H_Supported__