mirror of
https://gitea.tendokyu.moe/TeamTofuShop/bananatools.git
synced 2026-09-27 17:37:56 +03:00
12 lines
191 B
C
12 lines
191 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct misc_config {
|
|
bool block_input_hook;
|
|
bool show_cursor_hook;
|
|
};
|
|
|
|
HRESULT misc_hook_init(const struct misc_config *cfg); |