taitools/sivahook/config.h

22 lines
436 B
C

#pragma once
#include <stddef.h>
#include "sivahook/siva-dll.h"
#include "sivahook/touch.h"
#include "platform/config.h"
#include "gfxhook/config.h"
#include "board/config.h"
struct siva_hook_config {
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);