diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Winamp/VideoConfigGroup.h | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/Winamp/VideoConfigGroup.h')
-rw-r--r-- | Src/Winamp/VideoConfigGroup.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Src/Winamp/VideoConfigGroup.h b/Src/Winamp/VideoConfigGroup.h new file mode 100644 index 00000000..1b51de52 --- /dev/null +++ b/Src/Winamp/VideoConfigGroup.h @@ -0,0 +1,23 @@ +#ifndef NULLSOFT_WINAMP_VIDEOCONFIGGROUP_H +#define NULLSOFT_WINAMP_VIDEOCONFIGGROUP_H + +#include "main.h" +#include "../Agave/Config/ifc_configgroup.h" + +// {2135E318-6919-4bcf-99D2-62BE3FCA8FA6} +static const GUID videoConfigGroupGUID = +{ 0x2135e318, 0x6919, 0x4bcf, { 0x99, 0xd2, 0x62, 0xbe, 0x3f, 0xca, 0x8f, 0xa6 } }; + +class VideoConfigGroup : public ifc_configgroup +{ +public: + ifc_configitem *GetItem(const wchar_t *name); + GUID GetGUID() { return videoConfigGroupGUID; } + +protected: + RECVS_DISPATCH; +}; + +extern VideoConfigGroup videoConfigGroup; + +#endif
\ No newline at end of file |