From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Winamp/PlaybackConfigGroup.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Src/Winamp/PlaybackConfigGroup.h (limited to 'Src/Winamp/PlaybackConfigGroup.h') diff --git a/Src/Winamp/PlaybackConfigGroup.h b/Src/Winamp/PlaybackConfigGroup.h new file mode 100644 index 00000000..d9a09639 --- /dev/null +++ b/Src/Winamp/PlaybackConfigGroup.h @@ -0,0 +1,24 @@ +#ifndef NULLSOFT_WINAMP_PLAYBACKCONFIGGROUP_H +#define NULLSOFT_WINAMP_PLAYBACKCONFIGGROUP_H + +#include "main.h" +#include "../Agave/Config/ifc_configgroup.h" + +// {B6CB4A7C-A8D0-4c55-8E60-9F7A7A23DA0F} +static const GUID playbackConfigGroupGUID = +{ 0xb6cb4a7c, 0xa8d0, 0x4c55, { 0x8e, 0x60, 0x9f, 0x7a, 0x7a, 0x23, 0xda, 0xf } }; + +class PlaybackConfigGroup : public ifc_configgroup +{ +public: + ifc_configitem *GetItem(const wchar_t *name); + GUID GetGUID() { return playbackConfigGroupGUID; } + +protected: + RECVS_DISPATCH; +}; + +extern PlaybackConfigGroup playbackConfigGroup; + + +#endif \ No newline at end of file -- cgit