forked from Dniel97/segatools
b44b62fc72
One less DLL floating around.
27 lines
501 B
C
27 lines
501 B
C
#include <windows.h>
|
|
|
|
#include <assert.h>
|
|
#include <stddef.h>
|
|
|
|
#include "amex/config.h"
|
|
|
|
#include "board/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);
|
|
aime_config_load(&cfg->aime, filename);
|
|
}
|