forked from Dniel97/segatools
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 "gfxhook/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);
|