mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-28 11:00:49 +01:00
10 lines
156 B
C
10 lines
156 B
C
#pragma once
|
|
#include <windows.h>
|
|
#include <stdbool.h>
|
|
|
|
struct touch_config {
|
|
bool enable;
|
|
};
|
|
|
|
HRESULT touch_hook_init(const struct touch_config *cfg);
|