2019-05-18 03:48:21 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-11-03 21:12:58 +00:00
|
|
|
#include <stdbool.h>
|
2019-05-18 03:48:21 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "amex/amex.h"
|
2019-05-18 03:48:21 +00:00
|
|
|
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "board/sg-reader.h"
|
2019-06-04 02:28:44 +00:00
|
|
|
|
2021-11-03 17:14:24 +00:00
|
|
|
#include "gfxhook/gfx.h"
|
|
|
|
|
2021-06-16 10:08:08 +00:00
|
|
|
#include "hooklib/dvd.h"
|
|
|
|
|
2021-06-12 16:40:19 +00:00
|
|
|
#include "idzhook/idz-dll.h"
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "idzhook/zinput.h"
|
2019-05-18 03:48:21 +00:00
|
|
|
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "platform/platform.h"
|
2019-11-03 21:12:58 +00:00
|
|
|
|
2019-05-18 03:48:21 +00:00
|
|
|
struct idz_hook_config {
|
2019-11-03 14:52:33 +00:00
|
|
|
struct platform_config platform;
|
2019-05-18 03:48:21 +00:00
|
|
|
struct amex_config amex;
|
2019-06-04 02:28:44 +00:00
|
|
|
struct aime_config aime;
|
2021-06-16 10:08:08 +00:00
|
|
|
struct dvd_config dvd;
|
2021-10-25 09:16:14 +00:00
|
|
|
struct gfx_config gfx;
|
2021-06-12 16:40:19 +00:00
|
|
|
struct idz_dll_config dll;
|
2019-11-03 21:12:58 +00:00
|
|
|
struct zinput_config zinput;
|
2019-05-18 03:48:21 +00:00
|
|
|
};
|
|
|
|
|
2021-06-12 16:40:19 +00:00
|
|
|
void idz_dll_config_load(
|
|
|
|
struct idz_dll_config *cfg,
|
|
|
|
const wchar_t *filename);
|
|
|
|
|
2019-05-18 03:48:21 +00:00
|
|
|
void idz_hook_config_load(
|
|
|
|
struct idz_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|
2019-11-03 21:12:58 +00:00
|
|
|
|
|
|
|
void zinput_config_load(struct zinput_config *cfg, const wchar_t *filename);
|