CSupported.h
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:0k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. //
  2. // Supported.h
  3. //
  4. #ifndef __H_Supported__
  5. #define __H_Supported__
  6. const long GUID_MAX_COUNT = 1000;
  7. class CSupported
  8. {
  9. private:
  10. static GUID sSupportedGUIDs[GUID_MAX_COUNT];
  11. static long sGUIDCount;
  12. public:
  13. CSupported();
  14. ~CSupported();
  15. static BOOL IsGUIDSupported(GUID inGUID);
  16. };
  17. #endif // __H_Supported__