mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 20:01:50 +00:00
[user32_apitest.exe]
- Fix gcc build svn path=/trunk/; revision=53832
This commit is contained in:
parent
c21792df52
commit
aa39ad7260
2 changed files with 4 additions and 2 deletions
|
@ -93,6 +93,8 @@ void sprintf_msg_entry(char* buffer, MSG_ENTRY* msg)
|
|||
msgName = NULL;
|
||||
msgType = "event";
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
||||
if(msgName)
|
||||
|
|
|
@ -23,7 +23,7 @@ void empty_message_cache();
|
|||
ATOM RegisterSimpleClass(WNDPROC lpfnWndProc, LPCWSTR lpszClassName);
|
||||
|
||||
/* filter messages that are affected by dwm */
|
||||
static _inline BOOL IsDWmMsg(UINT msg)
|
||||
static inline BOOL IsDWmMsg(UINT msg)
|
||||
{
|
||||
switch(msg)
|
||||
{
|
||||
|
@ -36,7 +36,7 @@ static _inline BOOL IsDWmMsg(UINT msg)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
static _inline BOOL IseKeyMsg(UINT msg)
|
||||
static inline BOOL IseKeyMsg(UINT msg)
|
||||
{
|
||||
return (msg == WM_KEYUP || msg == WM_KEYDOWN);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue