1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-28 15:00:49 +01:00
segatools-dniel97/hooklib/touch.h

14 lines
309 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
struct touch_screen_config {
bool enable;
};
/* Init is not thread safe because API hook init is not thread safe blah
blah blah you know the drill by now. */
void touch_screen_hook_init(const struct touch_screen_config *cfg, HINSTANCE self);