auto-obs-rb-restart/monitor.c
Mylloon 1f5e245541
All checks were successful
Upload release / build (push) Successful in 29s
remove mouse support
2024-10-07 22:14:33 +02:00

29 lines
675 B
C

#include <time.h>
#include <windows.h>
static long long last_input_time = 0;
HHOOK hKeyboardHook = NULL;
LRESULT CALLBACK KeyboardHookProc(int nCode, WPARAM wParam, LPARAM lParam) {
if (nCode == HC_ACTION) {
last_input_time = time(NULL);
}
return CallNextHookEx(hKeyboardHook, nCode, wParam, lParam);
}
__declspec(dllexport) void start_hook(void) {
hKeyboardHook = SetWindowsHookEx(WH_KEYBOARD_LL, KeyboardHookProc, NULL, 0);
}
__declspec(dllexport) void stop_hook(void) {
if (hKeyboardHook) {
UnhookWindowsHookEx(hKeyboardHook);
hKeyboardHook = NULL;
}
}
__declspec(dllexport) long long last_input_received(void) {
return last_input_time;
}