9 lines
167 B
C
9 lines
167 B
C
#pragma once
|
|
#include <windows.h>
|
|
#include <stdbool.h>
|
|
|
|
struct sao_touch_config {
|
|
bool enable;
|
|
};
|
|
|
|
HRESULT sao_touch_hook_init(const struct sao_touch_config *cfg); |