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