1
0
mirror of synced 2024-12-18 07:05:52 +01:00
bananatools/platform/misc.h

13 lines
224 B
C
Raw Normal View History

2023-01-03 05:35:53 +01:00
#pragma once
#include <windows.h>
#include <stdbool.h>
struct misc_config {
bool block_input_hook;
bool show_cursor_hook;
2023-09-18 09:56:15 +02:00
wchar_t system_version[256];
2023-01-03 05:35:53 +01:00
};
HRESULT misc_hook_init(const struct misc_config *cfg);