1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-11 23:17:08 +01:00
segatools-dniel97/idzhook/config.c

23 lines
438 B
C
Raw Normal View History

#include <assert.h>
2019-05-18 05:48:21 +02:00
#include <stddef.h>
#include "amex/config.h"
#include "board/config.h"
2019-05-18 05:48:21 +02:00
#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);
2019-05-18 05:48:21 +02:00
}