2021-12-21 05:02:17 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "board/config.h"
|
|
|
|
|
|
|
|
#include "hooklib/dvd.h"
|
2022-02-10 17:17:10 +00:00
|
|
|
#include "gfxhook/gfx.h"
|
2021-12-21 05:02:17 +00:00
|
|
|
|
|
|
|
#include "mercuryhook/mercury-dll.h"
|
2022-01-04 08:46:30 +00:00
|
|
|
#include "mercuryhook/touch.h"
|
2023-02-13 01:40:41 +00:00
|
|
|
#include "mercuryhook/elisabeth.h"
|
2021-12-21 05:02:17 +00:00
|
|
|
|
|
|
|
#include "platform/config.h"
|
|
|
|
|
|
|
|
struct mercury_hook_config {
|
|
|
|
struct platform_config platform;
|
|
|
|
struct aime_config aime;
|
|
|
|
struct dvd_config dvd;
|
|
|
|
struct io4_config io4;
|
2022-02-10 17:17:10 +00:00
|
|
|
struct gfx_config gfx;
|
2021-12-21 05:02:17 +00:00
|
|
|
struct mercury_dll_config dll;
|
2022-01-04 08:46:30 +00:00
|
|
|
struct touch_config touch;
|
2023-02-13 01:40:41 +00:00
|
|
|
struct elisabeth_config elisabeth;
|
2021-12-21 05:02:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void mercury_dll_config_load(
|
|
|
|
struct mercury_dll_config *cfg,
|
|
|
|
const wchar_t *filename);
|
|
|
|
|
|
|
|
void mercury_hook_config_load(
|
|
|
|
struct mercury_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|