taitools/sivahook/config.h
2024-02-20 02:17:12 -05:00

24 lines
493 B
C

#pragma once
#include <stddef.h>
#include "sivahook/siva-dll.h"
#include "sivahook/touch.h"
#include "idmac/config.h"
#include "platform/config.h"
#include "gfxhook/config.h"
#include "board/config.h"
struct siva_hook_config {
struct idmac_config idmac;
struct platform_config platform;
struct siva_dll_config dll;
struct gfx_config gfx;
struct touch_config touch;
};
void siva_hook_config_load(
struct siva_hook_config *cfg,
const wchar_t *filename);