mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
29 lines
536 B
C++
29 lines
536 B
C++
/** (c) Nullsoft, Inc. C O N F I D E N T I A L
|
|
** Filename:
|
|
** Project:
|
|
** Description:
|
|
** Author: Ben Allison benski@nullsoft.com
|
|
** Created:
|
|
**/
|
|
#include "main.h"
|
|
#include "config.h"
|
|
|
|
void Config::RegisterGroup(ifc_configgroup *newGroup)
|
|
{
|
|
if (newGroup)
|
|
{
|
|
groups[newGroup->GetGUID()]=newGroup;
|
|
}
|
|
}
|
|
|
|
ifc_configgroup *Config::GetGroup(GUID groupGUID)
|
|
{
|
|
return groups[groupGUID];
|
|
}
|
|
|
|
|
|
#define CBCLASS Config
|
|
START_DISPATCH;
|
|
CB(API_CONFIG_GETGROUP, GetGroup)
|
|
VCB(API_CONFIG_REGISTERGROUP, RegisterGroup)
|
|
END_DISPATCH;
|