2024-10-04 09:09:51 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "kizunahook/kizuna-dll.h"
|
|
|
|
|
|
|
|
#include "platform/config.h"
|
|
|
|
#include "gfxhook/config.h"
|
|
|
|
#include "amcus/config.h"
|
|
|
|
#include "board/config.h"
|
|
|
|
|
|
|
|
struct kizuna_hook_config {
|
|
|
|
struct platform_config platform;
|
|
|
|
struct aime_config aime;
|
|
|
|
struct kizuna_dll_config dll;
|
|
|
|
struct gfx_config gfx;
|
|
|
|
struct amcus_config amcus;
|
|
|
|
struct usio_config usio;
|
2024-10-06 20:37:20 +02:00
|
|
|
struct vfd_config vfd;
|
2024-10-04 09:09:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void kizuna_dll_config_load(
|
|
|
|
struct kizuna_dll_config *cfg,
|
|
|
|
const wchar_t *filename);
|
|
|
|
|
|
|
|
void kizuna_hook_config_load(
|
|
|
|
struct kizuna_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|
|
|
|
|