forked from Dniel97/segatools
05e4dda8e6
Fixes non-PCH build.
23 lines
438 B
C
23 lines
438 B
C
#include <assert.h>
|
|
#include <stddef.h>
|
|
|
|
#include "amex/config.h"
|
|
|
|
#include "board/config.h"
|
|
|
|
#include "idzhook/config.h"
|
|
|
|
#include "platform/config.h"
|
|
|
|
void idz_hook_config_load(
|
|
struct idz_hook_config *cfg,
|
|
const wchar_t *filename)
|
|
{
|
|
assert(cfg != NULL);
|
|
assert(filename != NULL);
|
|
|
|
nu_config_load(&cfg->nu, filename);
|
|
amex_config_load(&cfg->amex, filename);
|
|
aime_config_load(&cfg->aime, filename);
|
|
}
|