2019-08-30 23:06:32 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "board/config.h"
|
|
|
|
|
|
|
|
#include "platform/config.h"
|
|
|
|
|
|
|
|
struct mu3_hook_config {
|
2019-11-03 14:52:33 +00:00
|
|
|
struct platform_config platform;
|
2019-08-30 23:06:32 +00:00
|
|
|
struct aime_config aime;
|
|
|
|
};
|
|
|
|
|
|
|
|
void mu3_hook_config_load(
|
|
|
|
struct mu3_hook_config *cfg,
|
|
|
|
const wchar_t *filename);
|