mirror of
https://github.com/kunkundi/crossdesk.git
synced 2025-10-29 12:32:58 +08:00
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
#include "keyboard_capturer.h"
|
|
|
|
#include "rd_log.h"
|
|
|
|
static OnKeyAction g_on_key_action = nullptr;
|
|
static void* g_user_ptr = nullptr;
|
|
|
|
LRESULT CALLBACK KeyboardProc(int nCode, WPARAM wParam, LPARAM lParam) {
|
|
if (nCode == HC_ACTION && g_on_key_action) {
|
|
KBDLLHOOKSTRUCT* kbData = reinterpret_cast<KBDLLHOOKSTRUCT*>(lParam);
|
|
|
|
if (wParam == WM_KEYDOWN || wParam == WM_SYSKEYDOWN) {
|
|
g_on_key_action(kbData->vkCode, true, g_user_ptr);
|
|
} else if (wParam == WM_KEYUP || wParam == WM_SYSKEYUP) {
|
|
g_on_key_action(kbData->vkCode, false, g_user_ptr);
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
return CallNextHookEx(NULL, nCode, wParam, lParam);
|
|
}
|
|
|
|
KeyboardCapturer::KeyboardCapturer() {}
|
|
|
|
KeyboardCapturer::~KeyboardCapturer() {}
|
|
|
|
int KeyboardCapturer::Hook(OnKeyAction on_key_action, void* user_ptr) {
|
|
g_on_key_action = on_key_action;
|
|
g_user_ptr = user_ptr;
|
|
|
|
keyboard_hook_ = SetWindowsHookEx(WH_KEYBOARD_LL, KeyboardProc, NULL, 0);
|
|
if (!keyboard_hook_) {
|
|
LOG_ERROR("Failed to install keyboard hook");
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int KeyboardCapturer::Unhook() {
|
|
UnhookWindowsHookEx(keyboard_hook_);
|
|
return 0;
|
|
}
|
|
|
|
// apply remote keyboard commands to the local machine
|
|
int KeyboardCapturer::SendKeyboardCommand(int key_code, bool is_down) {
|
|
INPUT input = {0};
|
|
input.type = INPUT_KEYBOARD;
|
|
input.ki.wVk = (WORD)key_code;
|
|
|
|
if (!is_down) {
|
|
input.ki.dwFlags = KEYEVENTF_KEYUP;
|
|
}
|
|
SendInput(1, &input, sizeof(INPUT));
|
|
|
|
return 0;
|
|
} |