segatools/divahook/config.h

18 lines
316 B
C

#pragma once
#include <stddef.h>
#include "amex/config.h"
#include "platform/config.h"
struct diva_hook_config {
struct platform_config platform;
struct amex_config amex;
struct aime_config aime;
};
void diva_hook_config_load(
struct diva_hook_config *cfg,
const wchar_t *filename);