mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 18:22:35 +00:00
[win32k]
- Improve IS_KBD_MESSAGE macro. Should fix some more tests svn path=/trunk/; revision=51379
This commit is contained in:
parent
4321ac7baa
commit
3026082bde
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ VOID APIENTRY MsqRemoveWindowMessagesFromQueue(PVOID pWindow); /* F*(&$ headers,
|
|||
(message >= WM_MOUSEFIRST && message <= WM_MOUSELAST))
|
||||
|
||||
#define IS_KBD_MESSAGE(message) \
|
||||
(message == WM_KEYDOWN || message == WM_KEYUP)
|
||||
(message >= WM_KEYFIRST && message <= WM_KEYLAST)
|
||||
|
||||
HANDLE FASTCALL
|
||||
IntMsqSetWakeMask(DWORD WakeMask);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue