[user32_apitest.exe]

- Fix gcc build

svn path=/trunk/; revision=53832
This commit is contained in:
Giannis Adamopoulos 2011-09-24 12:05:14 +00:00
parent c21792df52
commit aa39ad7260
2 changed files with 4 additions and 2 deletions

View file

@ -93,6 +93,8 @@ void sprintf_msg_entry(char* buffer, MSG_ENTRY* msg)
msgName = NULL;
msgType = "event";
break;
default:
return;
}
if(msgName)

View file

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