mirror of
https://gitea.tendokyu.moe/Hay1tsme/bananatools.git
synced 2026-04-02 07:25:35 -05:00
13 lines
224 B
C
13 lines
224 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct misc_config {
|
|
bool block_input_hook;
|
|
bool show_cursor_hook;
|
|
wchar_t system_version[256];
|
|
};
|
|
|
|
HRESULT misc_hook_init(const struct misc_config *cfg); |