1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2025-01-09 12:51:38 +01:00
segatools-hay1tsme/chunihook/config.c

27 lines
501 B
C
Raw Normal View History

2019-05-18 05:35:53 +02:00
#include <windows.h>
#include <assert.h>
#include <stddef.h>
#include "amex/config.h"
#include "chunihook/config.h"
2019-10-19 23:04:34 +02:00
#include "hooklib/config.h"
2019-05-18 05:35:53 +02:00
#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);
2019-10-19 23:04:34 +02:00
gfx_config_load(&cfg->gfx, filename);
2019-05-18 05:35:53 +02:00
}