mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2025-02-20 12:21:00 +01:00
18 lines
307 B
C
18 lines
307 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;
|
|
struct aime_config aime;
|
|
};
|
|
|
|
void chuni_hook_config_load(
|
|
struct chuni_hook_config *cfg,
|
|
const wchar_t *filename);
|