2021-12-21 00:02:17 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "board/config.h"
|
|
|
|
|
|
|
|
#include "hooklib/dvd.h"
|
2022-02-10 12:17:10 -05:00
|
|
|
#include "gfxhook/gfx.h"
|
2021-12-21 00:02:17 -05:00
|
|
|
|
|
|
|
#include "mercuryhook/mercury-dll.h"
|
2022-01-04 03:46:30 -05:00
|
|
|
#include "mercuryhook/touch.h"
|
2023-02-12 20:40:41 -05:00
|
|
|
#include "mercuryhook/elisabeth.h"
|
2021-12-21 00:02:17 -05: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 12:17:10 -05:00
|
|
|
struct gfx_config gfx;
|
2024-02-06 12:34:11 +01:00
|
|
|
struct vfd_config vfd;
|
2021-12-21 00:02:17 -05:00
|
|
|
struct mercury_dll_config dll;
|
2022-01-04 03:46:30 -05:00
|
|
|
struct touch_config touch;
|
2023-02-12 20:40:41 -05:00
|
|
|
struct elisabeth_config elisabeth;
|
2021-12-21 00:02:17 -05: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);
|