Only warn if message is >= WM_USER && < WM_APP.

oldstable
Dan Kegel 2003-01-30 00:18:48 +00:00 committed by Alexandre Julliard
parent 92155f158f
commit 07f773d917
1 changed files with 4 additions and 2 deletions

View File

@ -714,8 +714,10 @@ static LRESULT WINAPI RICHED32_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
}
FIXME("Unknown message 0x%x Passed to default hwnd=%p, wParam=%08x, lParam=%08x\n",
uMsg, hwnd, (UINT)wParam, (UINT)lParam);
if ((uMsg >= WM_USER) && (uMsg < WM_APP)) {
FIXME("Unknown message 0x%x Passed to default hwnd=%p, wParam=%08x, lParam=%08x\n",
uMsg, hwnd, (UINT)wParam, (UINT)lParam);
}
return DefWindowProcA( hwnd,uMsg,wParam,lParam);
}