taitools/sivahook/config.h

24 lines
493 B
C
Raw Permalink Normal View History

2024-02-11 04:38:24 +00:00
#pragma once
#include <stddef.h>
#include "sivahook/siva-dll.h"
2024-02-14 18:38:52 +00:00
#include "sivahook/touch.h"
2024-02-11 04:38:24 +00:00
2024-02-20 07:17:12 +00:00
#include "idmac/config.h"
2024-02-11 04:38:24 +00:00
#include "platform/config.h"
#include "gfxhook/config.h"
#include "board/config.h"
struct siva_hook_config {
2024-02-20 07:17:12 +00:00
struct idmac_config idmac;
2024-02-11 04:38:24 +00:00
struct platform_config platform;
struct siva_dll_config dll;
struct gfx_config gfx;
2024-02-14 18:38:52 +00:00
struct touch_config touch;
2024-02-11 04:38:24 +00:00
};
void siva_hook_config_load(
struct siva_hook_config *cfg,
const wchar_t *filename);