2019-05-18 03:48:21 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "amex/config.h"
|
|
|
|
|
2019-06-04 02:28:44 +00:00
|
|
|
#include "board/config.h"
|
|
|
|
|
2019-05-18 03:48:21 +00:00
|
|
|
#include "platform/config.h"
|
|
|
|
|
|
|
|
struct idz_hook_config {
|
|
|
|
struct nu_config nu;
|
|
|
|
struct amex_config amex;
|
2019-06-04 02:28:44 +00:00
|
|
|
struct aime_config aime;
|
2019-05-18 03:48:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void idz_hook_config_load(
|
|
|
|
struct idz_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|