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_6_0~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e0244f1232127f5020d02f1f3580d5c73f681212;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;