2019-05-17 23:41:14 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2019-11-05 20:11:25 -05:00
|
|
|
#include "amex/amex.h"
|
2019-05-17 23:41:14 -04:00
|
|
|
|
2019-11-05 20:11:25 -05:00
|
|
|
#include "board/sg-reader.h"
|
|
|
|
|
2021-06-06 09:38:20 -04:00
|
|
|
#include "divahook/diva-dll.h"
|
2019-12-29 13:28:32 -04:00
|
|
|
#include "divahook/slider.h"
|
|
|
|
|
2019-11-05 20:11:25 -05:00
|
|
|
#include "platform/platform.h"
|
2019-05-17 23:41:14 -04:00
|
|
|
|
|
|
|
struct diva_hook_config {
|
2019-11-03 09:52:33 -05:00
|
|
|
struct platform_config platform;
|
2019-05-17 23:41:14 -04:00
|
|
|
struct amex_config amex;
|
2019-06-03 22:28:44 -04:00
|
|
|
struct aime_config aime;
|
2021-06-06 09:38:20 -04:00
|
|
|
struct diva_dll_config dll;
|
2019-12-29 13:28:32 -04:00
|
|
|
struct slider_config slider;
|
2019-05-17 23:41:14 -04:00
|
|
|
};
|
|
|
|
|
2021-06-06 09:38:20 -04:00
|
|
|
void diva_dll_config_load(
|
|
|
|
struct diva_dll_config *cfg,
|
|
|
|
const wchar_t *filename);
|
2019-12-29 13:28:32 -04:00
|
|
|
void slider_config_load(struct slider_config *cfg, const wchar_t *filename);
|
2019-05-17 23:41:14 -04:00
|
|
|
void diva_hook_config_load(
|
|
|
|
struct diva_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|