mirror of
https://github.com/kunkundi/crossdesk.git
synced 2025-10-29 04:10:17 +08:00
31 lines
600 B
C++
31 lines
600 B
C++
/*
|
|
* @Author: DI JUNKUN
|
|
* @Date: 2024-11-22
|
|
* Copyright (c) 2024 by DI JUNKUN, All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef _KEYBOARD_CAPTURER_H_
|
|
#define _KEYBOARD_CAPTURER_H_
|
|
|
|
#include <Windows.h>
|
|
|
|
#include "device_controller.h"
|
|
|
|
namespace crossdesk {
|
|
|
|
class KeyboardCapturer : public DeviceController {
|
|
public:
|
|
KeyboardCapturer();
|
|
virtual ~KeyboardCapturer();
|
|
|
|
public:
|
|
virtual int Hook(OnKeyAction on_key_action, void* user_ptr);
|
|
virtual int Unhook();
|
|
virtual int SendKeyboardCommand(int key_code, bool is_down);
|
|
|
|
private:
|
|
HHOOK keyboard_hook_ = nullptr;
|
|
};
|
|
} // namespace crossdesk
|
|
|
|
#endif |