1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-25 10:07:47 +01:00

#160 log WndProc

This commit is contained in:
FunkyFr3sh 2022-09-05 06:07:23 +02:00
parent 4e2d7aea85
commit 641313eaaf

View File

@ -16,8 +16,9 @@
LRESULT CALLBACK fake_WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
/*
TRACE(
if (uMsg != WM_MOUSEMOVE && uMsg != WM_NCMOUSEMOVE && uMsg != WM_NCHITTEST && uMsg != WM_SETCURSOR)
{
TRACE_EXT(
" uMsg = %s (%d), wParam = %08X (%d), lParam = %08X (%d)\n",
dbg_mes_to_str(uMsg),
uMsg,
@ -25,7 +26,7 @@ LRESULT CALLBACK fake_WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam
wParam,
lParam,
lParam);
*/
}
static BOOL in_size_move = FALSE;
static int redraw_count = 0;