Initial community commit

This commit is contained in:
Jef 2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit fc06254474
16440 changed files with 4239995 additions and 2 deletions

View file

@ -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