2019-08-30 23:06:32 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "board/config.h"
|
|
|
|
|
2021-06-16 10:08:08 +00:00
|
|
|
#include "hooklib/dvd.h"
|
2020-03-23 06:53:48 +00:00
|
|
|
#include "hooklib/gfx.h"
|
|
|
|
|
2021-06-06 18:23:55 +00:00
|
|
|
#include "mu3hook/mu3-dll.h"
|
|
|
|
|
2019-08-30 23:06:32 +00:00
|
|
|
#include "platform/config.h"
|
|
|
|
|
|
|
|
struct mu3_hook_config {
|
2019-11-03 14:52:33 +00:00
|
|
|
struct platform_config platform;
|
2019-08-30 23:06:32 +00:00
|
|
|
struct aime_config aime;
|
2021-06-16 10:08:08 +00:00
|
|
|
struct dvd_config dvd;
|
2020-10-07 17:26:12 +00:00
|
|
|
struct io4_config io4;
|
2020-03-23 06:53:48 +00:00
|
|
|
struct gfx_config gfx;
|
2021-06-06 18:23:55 +00:00
|
|
|
struct mu3_dll_config dll;
|
2019-08-30 23:06:32 +00:00
|
|
|
};
|
|
|
|
|
2021-06-06 18:23:55 +00:00
|
|
|
void mu3_dll_config_load(
|
|
|
|
struct mu3_dll_config *cfg,
|
|
|
|
const wchar_t *filename);
|
|
|
|
|
2019-08-30 23:06:32 +00:00
|
|
|
void mu3_hook_config_load(
|
|
|
|
struct mu3_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|