forked from Dniel97/segatools
17 lines
275 B
C
17 lines
275 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;
|
||
|
};
|
||
|
|
||
|
void diva_hook_config_load(
|
||
|
struct diva_hook_config *cfg,
|
||
|
const wchar_t *filename);
|