forked from Dniel97/segatools
dfc1e13397
And so the cycle goes on.
30 lines
577 B
C
30 lines
577 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
#include "amex/config.h"
|
|
|
|
#include "board/config.h"
|
|
|
|
#include "hooklib/config.h"
|
|
|
|
#include "platform/config.h"
|
|
|
|
struct slider_config {
|
|
bool enable;
|
|
};
|
|
|
|
struct chuni_hook_config {
|
|
struct platform_config platform;
|
|
struct amex_config amex;
|
|
struct aime_config aime;
|
|
struct gfx_config gfx;
|
|
struct slider_config slider;
|
|
};
|
|
|
|
void slider_config_load(struct slider_config *cfg, const wchar_t *filename);
|
|
void chuni_hook_config_load(
|
|
struct chuni_hook_config *cfg,
|
|
const wchar_t *filename);
|