auto-obs-rb-restart/monitor.c

33 lines
759 B
C
Raw Permalink Normal View History

#include <stdatomic.h>
2024-10-07 20:23:21 +02:00
#include <time.h>
#include <windows.h>
static atomic_llong last_input_time = 0;
2024-10-07 20:23:21 +02:00
2024-10-07 22:14:33 +02:00
HHOOK hKeyboardHook = NULL;
2024-10-07 20:23:21 +02:00
LRESULT CALLBACK KeyboardHookProc(int nCode, WPARAM wParam, LPARAM lParam) {
if (nCode == HC_ACTION) {
atomic_store(&last_input_time, time(NULL));
2024-10-07 20:23:21 +02:00
}
return CallNextHookEx(hKeyboardHook, nCode, wParam, lParam);
}
__declspec(dllexport) void start_hook(void) {
if (!hKeyboardHook) {
hKeyboardHook = SetWindowsHookEx(WH_KEYBOARD_LL, KeyboardHookProc, NULL, 0);
}
2024-10-07 20:23:21 +02:00
}
__declspec(dllexport) void stop_hook(void) {
if (hKeyboardHook) {
UnhookWindowsHookEx(hKeyboardHook);
hKeyboardHook = NULL;
}
2024-10-07 20:23:21 +02:00
}
2024-10-07 22:14:33 +02:00
__declspec(dllexport) long long last_input_received(void) {
return atomic_load(&last_input_time);
2024-10-07 20:23:21 +02:00
}