Fix de_win WndProc prototype parameters for 64-bit (Win64)
authorIvan Maidanski <ivmai@mail.ru>
Fri, 12 Feb 2016 08:46:06 +0000 (11:46 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Fri, 12 Feb 2016 08:46:06 +0000 (11:46 +0300)
* 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

index a6a02f3..93c5eeb 100644 (file)
 /* 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;