forked from TeamTofuShop/segatools
chunihook/config.c: Consolidate config
This commit is contained in:
23
chunihook/config.c
Normal file
23
chunihook/config.c
Normal file
@ -0,0 +1,23 @@
|
||||
#include <windows.h>
|
||||
|
||||
#include <assert.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "amex/config.h"
|
||||
|
||||
#include "chunihook/config.h"
|
||||
|
||||
#include "platform/config.h"
|
||||
|
||||
void chuni_hook_config_load(
|
||||
struct chuni_hook_config *cfg,
|
||||
const wchar_t *filename)
|
||||
{
|
||||
assert(cfg != NULL);
|
||||
assert(filename != NULL);
|
||||
|
||||
memset(cfg, 0, sizeof(*cfg));
|
||||
|
||||
nu_config_load(&cfg->nu, filename);
|
||||
amex_config_load(&cfg->amex, filename);
|
||||
}
|
Reference in New Issue
Block a user