From: Ivan Maidanski Date: Fri, 12 Feb 2016 08:46:06 +0000 (+0300) Subject: Fix de_win WndProc prototype parameters for 64-bit (Win64) X-Git-Tag: gc7_4_4~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8374c8653a42e6f712a9763b948bfeaf47d9b8f;p=gc Fix de_win WndProc prototype parameters for 64-bit (Win64) * cord/tests/de_win.h (WndProc): Change UINT type (for wParam) to WPARAM; change LONG type to LPARAM. * cord/tests/de_win.h (AboutBox): Remove unused declaration. --- diff --git a/cord/tests/de_win.h b/cord/tests/de_win.h index a6a02f39..93c5eebd 100644 --- a/cord/tests/de_win.h +++ b/cord/tests/de_win.h @@ -44,11 +44,7 @@ /* Windows UI stuff */ LRESULT CALLBACK WndProc (HWND hwnd, UINT message, - UINT wParam, LONG lParam); - -LRESULT CALLBACK AboutBox( HWND hDlg, UINT message, - UINT wParam, LONG lParam ); - + WPARAM wParam, LPARAM lParam); /* Screen dimensions. Maintained by de_win.c. */ extern int LINES;