forked from Dniel97/segatools
19 lines
347 B
C
19 lines
347 B
C
|
#include <stddef.h>
|
||
|
|
||
|
#include "amex/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);
|
||
|
}
|