1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2025-01-19 22:32:47 +01:00

30 lines
577 B
C
Raw Normal View History

2019-05-17 23:35:53 -04:00
#pragma once
2019-10-19 20:37:43 -04:00
#include <stdbool.h>
2019-05-17 23:35:53 -04:00
#include <stddef.h>
#include "amex/config.h"
#include "board/config.h"
2019-10-19 17:04:34 -04:00
#include "hooklib/config.h"
2019-05-17 23:35:53 -04:00
#include "platform/config.h"
2019-10-19 20:37:43 -04:00
struct slider_config {
bool enable;
};
2019-05-17 23:35:53 -04:00
struct chuni_hook_config {
struct platform_config platform;
2019-05-17 23:35:53 -04:00
struct amex_config amex;
struct aime_config aime;
2019-10-19 17:04:34 -04:00
struct gfx_config gfx;
2019-10-19 20:37:43 -04:00
struct slider_config slider;
2019-05-17 23:35:53 -04:00
};
2019-10-19 20:37:43 -04:00
void slider_config_load(struct slider_config *cfg, const wchar_t *filename);
2019-05-17 23:35:53 -04:00
void chuni_hook_config_load(
struct chuni_hook_config *cfg,
const wchar_t *filename);