Files
segatools/mercuryhook/touch.h
2023-02-13 03:07:36 -05:00

12 lines
158 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
struct touch_config {
bool enable;
};
HRESULT touch_hook_init(const struct touch_config *cfg);