2019-05-18 03:41:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "amex/amex.h"
|
2019-05-18 03:41:14 +00:00
|
|
|
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "board/sg-reader.h"
|
|
|
|
|
|
|
|
#include "platform/platform.h"
|
2019-05-18 03:41:14 +00:00
|
|
|
|
|
|
|
struct diva_hook_config {
|
2019-11-03 14:52:33 +00:00
|
|
|
struct platform_config platform;
|
2019-05-18 03:41:14 +00:00
|
|
|
struct amex_config amex;
|
2019-06-04 02:28:44 +00:00
|
|
|
struct aime_config aime;
|
2019-05-18 03:41:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void diva_hook_config_load(
|
|
|
|
struct diva_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|