added touch emulator

This commit is contained in:
2022-01-04 03:46:30 -05:00
parent 8702cc9e99
commit c0a5f97ea9
7 changed files with 198 additions and 4 deletions

11
mercuryhook/touch.h Normal file
View File

@ -0,0 +1,11 @@
#pragma once
#include <windows.h>
#include <stdbool.h>
struct touch_config {
bool enable;
};
HRESULT touch_hook_init(const struct touch_config *cfg);