mirror of
https://gitea.tendokyu.moe/TeamTofuShop/bananatools.git
synced 2026-09-22 22:37:56 +03:00
42 lines
916 B
C
42 lines
916 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "saohook/sao-dll.h"
|
|
|
|
#include "platform/config.h"
|
|
#include "hooklib/touch.h"
|
|
#include "gfxhook/config.h"
|
|
#include "amcus/config.h"
|
|
#include "board/config.h"
|
|
#include "saohook/systype.h"
|
|
|
|
struct sao_hook_config {
|
|
struct platform_config platform;
|
|
struct aime_config aime;
|
|
struct sao_dll_config dll;
|
|
struct gfx_config gfx;
|
|
struct amcus_config amcus;
|
|
struct qr_config qr;
|
|
struct usio_config usio;
|
|
struct systype_config systype;
|
|
struct touch_screen_config touch;
|
|
struct vfd_config vfd;
|
|
};
|
|
|
|
void sao_dll_config_load(
|
|
struct sao_dll_config *cfg,
|
|
const wchar_t *filename);
|
|
|
|
void qr_config_load(
|
|
struct qr_config *cfg,
|
|
const wchar_t *filename);
|
|
|
|
void sao_hook_config_load(
|
|
struct sao_hook_config *cfg,
|
|
const wchar_t *filename);
|
|
|
|
void systype_config_load(
|
|
struct systype_config *cfg,
|
|
const wchar_t *filename);
|