segatools/idachook/config.h

43 lines
933 B
C
Raw Permalink Normal View History

2023-04-23 14:13:51 +00:00
#pragma once
#include <stdbool.h>
#include <stddef.h>
2023-06-29 09:24:34 +00:00
#include "board/config.h"
2024-06-23 19:21:57 +00:00
#include "board/led15070.h"
2023-04-23 14:13:51 +00:00
#include "hooklib/dvd.h"
#include "idachook/idac-dll.h"
#include "idachook/zinput.h"
#include "idachook/indrun.h"
2023-04-23 14:13:51 +00:00
#include "platform/platform.h"
struct idac_hook_config {
struct platform_config platform;
struct aime_config aime;
struct dvd_config dvd;
2023-06-29 09:24:34 +00:00
struct io4_config io4;
2023-04-23 14:13:51 +00:00
struct idac_dll_config dll;
struct zinput_config zinput;
2024-06-23 19:21:57 +00:00
struct led15070_config led15070;
struct indrun_config indrun;
2023-04-23 14:13:51 +00:00
};
void idac_dll_config_load(
struct idac_dll_config *cfg,
const wchar_t *filename);
void idac_hook_config_load(
struct idac_hook_config *cfg,
const wchar_t *filename);
void zinput_config_load(
struct zinput_config *cfg,
const wchar_t *filename);
void indrun_config_load(
struct indrun_config *cfg,
const wchar_t *filename);