Correct wrong variable types in CKeyboardWindows

This commit is contained in:
Roland Winklmeier
2018-09-14 15:27:29 +02:00
committed by Klaus Basan
parent 23a1f86834
commit 324e16121e
2 changed files with 3 additions and 5 deletions

View File

@@ -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);