Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
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;
|
Loading…
Add table
Add a link
Reference in a new issue