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