1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-26 10:29:23 +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) LRESULT CALLBACK fake_WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{ {
/* if (uMsg != WM_MOUSEMOVE && uMsg != WM_NCMOUSEMOVE && uMsg != WM_NCHITTEST && uMsg != WM_SETCURSOR)
TRACE( {
TRACE_EXT(
" uMsg = %s (%d), wParam = %08X (%d), lParam = %08X (%d)\n", " uMsg = %s (%d), wParam = %08X (%d), lParam = %08X (%d)\n",
dbg_mes_to_str(uMsg), dbg_mes_to_str(uMsg),
uMsg, uMsg,
@ -25,7 +26,7 @@ LRESULT CALLBACK fake_WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam
wParam, wParam,
lParam, lParam,
lParam); lParam);
*/ }
static BOOL in_size_move = FALSE; static BOOL in_size_move = FALSE;
static int redraw_count = 0; static int redraw_count = 0;