1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-12-04 09:17:17 +01:00
segatools-dniel97/mu3hook/config.h

37 lines
730 B
C
Raw Normal View History

2019-08-31 01:06:32 +02:00
#pragma once
#include <stddef.h>
#include "board/config.h"
#include "board/led15093.h"
2019-08-31 01:06:32 +02:00
#include "gfxhook/gfx.h"
#include "hooklib/dvd.h"
2021-06-06 20:23:55 +02:00
#include "mu3hook/mu3-dll.h"
2019-08-31 01:06:32 +02:00
#include "platform/config.h"
#include "unityhook/config.h"
2019-08-31 01:06:32 +02:00
struct mu3_hook_config {
struct platform_config platform;
2019-08-31 01:06:32 +02:00
struct aime_config aime;
struct dvd_config dvd;
struct io4_config io4;
struct gfx_config gfx;
struct led15093_config led15093;
2024-02-06 12:34:11 +01:00
struct vfd_config vfd;
2021-06-06 20:23:55 +02:00
struct mu3_dll_config dll;
struct unity_config unity;
2019-08-31 01:06:32 +02:00
};
2021-06-06 20:23:55 +02:00
void mu3_dll_config_load(
struct mu3_dll_config *cfg,
const wchar_t *filename);
2019-08-31 01:06:32 +02:00
void mu3_hook_config_load(
struct mu3_hook_config *cfg,
const wchar_t *filename);