mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2025-01-09 15:31:36 +01:00
2a6a8bf8b2
credits go to @domeori https://dev.s-ul.net/domeori/segatools/-/tree/mr-imports
35 lines
814 B
C
35 lines
814 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "board/config.h"
|
|
|
|
#include "hooklib/dvd.h"
|
|
|
|
#include "gfxhook/config.h"
|
|
|
|
#include "platform/config.h"
|
|
|
|
#include "chusanhook/chuni-dll.h"
|
|
#include "chusanhook/slider.h"
|
|
#include "chunihook/led1509306.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;
|
|
struct led1509306_config led1509306;
|
|
};
|
|
|
|
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);
|