Files
TeamTofuShop_taitools/ll3hook/config.h
T
2025-06-07 15:09:37 -04:00

23 lines
465 B
C

#pragma once
#include <stddef.h>
#include "ll3hook/ll3-dll.h"
#include "platform/config.h"
#include "gfxhook/config.h"
#include "board/config.h"
#include "hooklib/config.h"
struct ll3_hook_config {
struct platform_config platform;
struct ll3_dll_config dll;
struct gfx_config gfx;
struct printer_config printer;
struct usbio_config usbio;
};
void ll3_hook_config_load(
struct ll3_hook_config *cfg,
const wchar_t *filename);