mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
29
Src/config/config.cpp
Normal file
29
Src/config/config.cpp
Normal file
@ -0,0 +1,29 @@
|
||||
/** (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;
|
Reference in New Issue
Block a user