forked from Dniel97/segatools
3d6669dff1
There's basically no difference at the platform level except for the addition of the ALLS PCBID hook, which is harmless on Nu.
20 lines
340 B
C
20 lines
340 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "amex/config.h"
|
|
|
|
#include "board/config.h"
|
|
|
|
#include "platform/config.h"
|
|
|
|
struct idz_hook_config {
|
|
struct platform_config platform;
|
|
struct amex_config amex;
|
|
struct aime_config aime;
|
|
};
|
|
|
|
void idz_hook_config_load(
|
|
struct idz_hook_config *cfg,
|
|
const wchar_t *filename);
|