1
0
mirror of synced 2025-01-24 07:04:05 +01:00

12 lines
191 B
C
Raw Normal View History

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;
};
HRESULT misc_hook_init(const struct misc_config *cfg);