VideoConfigGroup.h 556 B

1234567891011121314151617181920212223
  1. #ifndef NULLSOFT_WINAMP_VIDEOCONFIGGROUP_H
  2. #define NULLSOFT_WINAMP_VIDEOCONFIGGROUP_H
  3. #include "main.h"
  4. #include "../Agave/Config/ifc_configgroup.h"
  5. // {2135E318-6919-4bcf-99D2-62BE3FCA8FA6}
  6. static const GUID videoConfigGroupGUID =
  7. { 0x2135e318, 0x6919, 0x4bcf, { 0x99, 0xd2, 0x62, 0xbe, 0x3f, 0xca, 0x8f, 0xa6 } };
  8. class VideoConfigGroup : public ifc_configgroup
  9. {
  10. public:
  11. ifc_configitem *GetItem(const wchar_t *name);
  12. GUID GetGUID() { return videoConfigGroupGUID; }
  13. protected:
  14. RECVS_DISPATCH;
  15. };
  16. extern VideoConfigGroup videoConfigGroup;
  17. #endif