2023-07-13 22:58:02 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "board/config.h"
|
2023-11-25 22:00:05 +00:00
|
|
|
#include "board/led15093.h"
|
2023-07-13 22:58:02 +00:00
|
|
|
|
|
|
|
#include "hooklib/dvd.h"
|
|
|
|
|
|
|
|
#include "gfxhook/config.h"
|
|
|
|
|
|
|
|
#include "platform/config.h"
|
|
|
|
|
|
|
|
#include "chusanhook/chuni-dll.h"
|
|
|
|
#include "chusanhook/slider.h"
|
|
|
|
|
|
|
|
struct chusan_hook_config {
|
|
|
|
struct platform_config platform;
|
|
|
|
struct aime_config aime;
|
|
|
|
struct dvd_config dvd;
|
|
|
|
struct io4_config io4;
|
|
|
|
struct gfx_config gfx;
|
|
|
|
struct chuni_dll_config dll;
|
|
|
|
struct slider_config slider;
|
2023-11-25 22:00:05 +00:00
|
|
|
struct led15093_config led15093;
|
2023-07-13 22:58:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void chuni_dll_config_load(
|
|
|
|
struct chuni_dll_config *cfg,
|
|
|
|
const wchar_t *filename);
|
|
|
|
void slider_config_load(struct slider_config *cfg, const wchar_t *filename);
|
|
|
|
void chusan_hook_config_load(
|
|
|
|
struct chusan_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|