2019-05-18 03:35:53 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "amex/config.h"
|
|
|
|
|
2019-10-19 21:04:34 +00:00
|
|
|
#include "hooklib/config.h"
|
|
|
|
|
2019-05-18 03:35:53 +00:00
|
|
|
#include "platform/config.h"
|
|
|
|
|
|
|
|
struct chuni_hook_config {
|
|
|
|
struct nu_config nu;
|
|
|
|
struct amex_config amex;
|
2019-10-19 21:04:34 +00:00
|
|
|
struct gfx_config gfx;
|
2019-05-18 03:35:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void chuni_hook_config_load(
|
|
|
|
struct chuni_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|