1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-10 07:41:46 +01:00

41 lines
856 B
C
Raw Normal View History

2019-05-17 23:48:21 -04:00
#pragma once
2019-11-03 16:12:58 -05:00
#include <stdbool.h>
2019-05-17 23:48:21 -04:00
#include <stddef.h>
2019-11-05 20:11:25 -05:00
#include "amex/amex.h"
2019-05-17 23:48:21 -04:00
2024-09-30 23:10:16 +02:00
#include "board/config.h"
#include "board/led15070.h"
#include "gfxhook/gfx.h"
#include "hooklib/dvd.h"
2021-06-12 12:40:19 -04:00
#include "idzhook/idz-dll.h"
2019-11-05 20:11:25 -05:00
#include "idzhook/zinput.h"
2019-05-17 23:48:21 -04:00
2019-11-05 20:11:25 -05:00
#include "platform/platform.h"
2019-11-03 16:12:58 -05:00
2019-05-17 23:48:21 -04:00
struct idz_hook_config {
struct platform_config platform;
2019-05-17 23:48:21 -04:00
struct amex_config amex;
struct aime_config aime;
struct dvd_config dvd;
struct gfx_config gfx;
2021-06-12 12:40:19 -04:00
struct idz_dll_config dll;
2024-09-30 23:10:16 +02:00
struct ffb_config ffb;
struct led15070_config led15070;
2019-11-03 16:12:58 -05:00
struct zinput_config zinput;
2019-05-17 23:48:21 -04:00
};
2021-06-12 12:40:19 -04:00
void idz_dll_config_load(
struct idz_dll_config *cfg,
const wchar_t *filename);
2019-05-17 23:48:21 -04:00
void idz_hook_config_load(
struct idz_hook_config *cfg,
const wchar_t *filename);
2019-11-03 16:12:58 -05:00
void zinput_config_load(struct zinput_config *cfg, const wchar_t *filename);