forked from Dniel97/segatools
d19b44e3a7
This reverts commit c69a09ead4323e33e4b6a867bba6c0fe58b77af0.
24 lines
430 B
C
24 lines
430 B
C
#include <windows.h>
|
|
|
|
#include <assert.h>
|
|
#include <stddef.h>
|
|
|
|
#include "amex/config.h"
|
|
|
|
#include "chunihook/config.h"
|
|
|
|
#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);
|
|
}
|