Show use of undocumented messages.

oldstable
Dmitry Timoshkov 1999-12-05 02:45:10 +00:00 committed by Alexandre Julliard
parent c9713e58c0
commit 92f376f78b
1 changed files with 6 additions and 2 deletions

View File

@ -2138,8 +2138,12 @@ static inline LRESULT WINAPI ComboWndProc_locked( WND* pWnd, UINT message,
case CB_GETEXTENDEDUI16:
case CB_GETEXTENDEDUI:
return (lphc->wState & CBF_EUI) ? TRUE : FALSE;
case (WM_USER + 0x1B):
WARN("[%04x]: undocumented msg!\n", hwnd );
default:
if (message >= WM_USER)
WARN("unknown msg WM_USER+%04x wp=%04x lp=%08lx\n",
message - WM_USER, wParam, lParam );
break;
}
return DefWindowProcA(hwnd, message, wParam, lParam);
}