forked from Hay1tsme/segatools
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);
|