1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2024-11-12 04:40:46 +01:00
segatools-hay1tsme/idzhook/config.h

28 lines
516 B
C
Raw Normal View History

2019-05-18 05:48:21 +02:00
#pragma once
2019-11-03 22:12:58 +01:00
#include <stdbool.h>
2019-05-18 05:48:21 +02:00
#include <stddef.h>
#include "amex/config.h"
#include "board/config.h"
2019-05-18 05:48:21 +02:00
#include "platform/config.h"
2019-11-03 22:12:58 +01:00
struct zinput_config {
bool enable;
};
2019-05-18 05:48:21 +02:00
struct idz_hook_config {
struct platform_config platform;
2019-05-18 05:48:21 +02:00
struct amex_config amex;
struct aime_config aime;
2019-11-03 22:12:58 +01:00
struct zinput_config zinput;
2019-05-18 05:48:21 +02:00
};
void idz_hook_config_load(
struct idz_hook_config *cfg,
const wchar_t *filename);
2019-11-03 22:12:58 +01:00
void zinput_config_load(struct zinput_config *cfg, const wchar_t *filename);