1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-14 17:17:36 +01:00
segatools-dniel97/chunihook/config.h

20 lines
334 B
C
Raw Normal View History

2019-05-18 05:35:53 +02:00
#pragma once
#include <stddef.h>
#include "amex/config.h"
2019-10-19 23:04:34 +02:00
#include "hooklib/config.h"
2019-05-18 05:35:53 +02:00
#include "platform/config.h"
struct chuni_hook_config {
struct nu_config nu;
struct amex_config amex;
2019-10-19 23:04:34 +02:00
struct gfx_config gfx;
2019-05-18 05:35:53 +02:00
};
void chuni_hook_config_load(
struct chuni_hook_config *cfg,
const wchar_t *filename);