mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[user32_apitest.exe]
- Fix gcc build svn path=/trunk/; revision=53832
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user