mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-14 00:25:35 +08:00
Correct wrong variable types in CKeyboardWindows
This commit is contained in:
committed by
Klaus Basan
parent
23a1f86834
commit
324e16121e
@@ -44,9 +44,6 @@ namespace BlackInput
|
||||
//! Keyboard hook handle
|
||||
HHOOK keyboardHook() const { return m_keyboardHook; }
|
||||
|
||||
//! \private
|
||||
void processKeyEvent(WPARAM vkCode, uint event);
|
||||
|
||||
protected:
|
||||
//! \copydoc IKeyboard::init()
|
||||
virtual bool init() override;
|
||||
@@ -59,6 +56,7 @@ namespace BlackInput
|
||||
|
||||
void addKey(WPARAM vkcode);
|
||||
void removeKey(WPARAM vkcode);
|
||||
void processKeyEvent(DWORD vkCode, WPARAM event);
|
||||
|
||||
//! Keyboard hook procedure
|
||||
static LRESULT CALLBACK keyboardProc(int nCode, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
Reference in New Issue
Block a user