mirror of
https://gitea.tendokyu.moe/TeamTofuShop/taitools.git
synced 2026-09-25 07:37:54 +03:00
20 lines
371 B
C
20 lines
371 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "ll3hook/ll3-dll.h"
|
|
|
|
#include "platform/config.h"
|
|
#include "gfxhook/config.h"
|
|
#include "board/config.h"
|
|
|
|
struct ll3_hook_config {
|
|
struct platform_config platform;
|
|
struct ll3_dll_config dll;
|
|
struct gfx_config gfx;
|
|
};
|
|
|
|
void ll3_hook_config_load(
|
|
struct ll3_hook_config *cfg,
|
|
const wchar_t *filename);
|