mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-12 04:40:46 +01:00
33 lines
730 B
C
33 lines
730 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
#include "amex/amex.h"
|
|
|
|
#include "board/sg-reader.h"
|
|
|
|
#include "chunihook/chuni-dll.h"
|
|
#include "chunihook/slider.h"
|
|
|
|
#include "hooklib/gfx.h"
|
|
|
|
#include "platform/platform.h"
|
|
|
|
struct chuni_hook_config {
|
|
struct platform_config platform;
|
|
struct amex_config amex;
|
|
struct aime_config aime;
|
|
struct gfx_config gfx;
|
|
struct chuni_dll_config dll;
|
|
struct slider_config slider;
|
|
};
|
|
|
|
void chuni_dll_config_load(
|
|
struct chuni_dll_config *cfg,
|
|
const wchar_t *filename);
|
|
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);
|