mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-12-18 14:55:51 +01:00
17 lines
278 B
C
17 lines
278 B
C
|
#pragma once
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#include "amex/config.h"
|
||
|
|
||
|
#include "platform/config.h"
|
||
|
|
||
|
struct chuni_hook_config {
|
||
|
struct nu_config nu;
|
||
|
struct amex_config amex;
|
||
|
};
|
||
|
|
||
|
void chuni_hook_config_load(
|
||
|
struct chuni_hook_config *cfg,
|
||
|
const wchar_t *filename);
|