1
0
mirror of synced 2024-11-12 00:40:49 +01:00
bananatools/platform/misc.h
2023-09-18 03:56:15 -04:00

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);