Load and bind idzio at runtime

This commit is contained in:
Tau
2021-06-12 12:40:19 -04:00
parent 3a03c95e1d
commit 392cd89c6a
8 changed files with 184 additions and 7 deletions

View File

@ -7,6 +7,7 @@
#include "board/sg-reader.h"
#include "idzhook/idz-dll.h"
#include "idzhook/zinput.h"
#include "platform/platform.h"
@ -15,9 +16,14 @@ struct idz_hook_config {
struct platform_config platform;
struct amex_config amex;
struct aime_config aime;
struct idz_dll_config dll;
struct zinput_config zinput;
};
void idz_dll_config_load(
struct idz_dll_config *cfg,
const wchar_t *filename);
void idz_hook_config_load(
struct idz_hook_config *cfg,
const wchar_t *filename);