mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-11 23:17:08 +01:00
18 lines
304 B
C
18 lines
304 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "amex/config.h"
|
|
|
|
#include "platform/config.h"
|
|
|
|
struct diva_hook_config {
|
|
struct nu_config nu;
|
|
struct amex_config amex;
|
|
struct aime_config aime;
|
|
};
|
|
|
|
void diva_hook_config_load(
|
|
struct diva_hook_config *cfg,
|
|
const wchar_t *filename);
|