2022-12-11 03:01:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "amex/amex.h"
|
|
|
|
|
|
|
|
#include "board/sg-reader.h"
|
|
|
|
|
|
|
|
#include "carolhook/carol-dll.h"
|
|
|
|
|
|
|
|
#include "platform/platform.h"
|
|
|
|
|
|
|
|
#include "gfxhook/gfx.h"
|
|
|
|
|
|
|
|
#include "carolhook/touch.h"
|
2023-04-11 04:20:51 +00:00
|
|
|
#include "carolhook/ledbd.h"
|
2022-12-11 03:01:52 +00:00
|
|
|
#include "carolhook/controlbd.h"
|
|
|
|
|
|
|
|
struct carol_hook_config {
|
|
|
|
struct platform_config platform;
|
|
|
|
struct amex_config amex;
|
|
|
|
struct aime_config aime;
|
|
|
|
struct carol_dll_config dll;
|
|
|
|
struct gfx_config gfx;
|
|
|
|
struct touch_config touch;
|
2023-04-11 04:20:51 +00:00
|
|
|
struct ledbd_config ledbd;
|
2022-12-11 03:01:52 +00:00
|
|
|
struct controlbd_config controlbd;
|
|
|
|
};
|
|
|
|
|
|
|
|
void carol_dll_config_load(
|
|
|
|
struct carol_dll_config *cfg,
|
|
|
|
const wchar_t *filename);
|
|
|
|
void carol_hook_config_load(
|
|
|
|
struct carol_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|