From f8374c8653a42e6f712a9763b948bfeaf47d9b8f Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 12 Feb 2016 11:46:06 +0300 Subject: [PATCH] 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. --- cord/tests/de_win.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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; -- 2.40.0