taitools/ll3hook/config.h

20 lines
371 B
C
Raw Permalink Normal View History

2024-02-17 21:46:23 +00:00
#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);