From 827aad3b87ff612bc3d20f3adb8d2e48ade768ac Mon Sep 17 00:00:00 2001 From: Hardeep Sidhu Date: Thu, 3 Jul 2003 04:04:28 +0000 Subject: Roland's fix for running simulator on NT git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3805 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/win32/uisw32.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'uisimulator/win32') diff --git a/uisimulator/win32/uisw32.c b/uisimulator/win32/uisw32.c index 6d91f76c12..eb568e2a60 100644 --- a/uisimulator/win32/uisw32.c +++ b/uisimulator/win32/uisw32.c @@ -50,12 +50,12 @@ char having_new_lcd=true; // Used for player simulator // GUIWndProc // window proc for GUI simulator -LRESULT GUIWndProc ( - HWND hWnd, - UINT uMsg, - WPARAM wParam, - LPARAM lParam - ) +LRESULT CALLBACK GUIWndProc ( + HWND hWnd, + UINT uMsg, + WPARAM wParam, + LPARAM lParam + ) { static HBITMAP hBkgnd; static HDC hMemDc; @@ -234,7 +234,7 @@ BOOL GUIStartup () wc.hbrBackground = GetSysColorBrush (COLOR_WINDOW); wc.hCursor = LoadCursor (NULL, IDC_ARROW); wc.hInstance = GetModuleHandle (NULL); - wc.lpfnWndProc = (WNDPROC)GUIWndProc; + wc.lpfnWndProc = GUIWndProc; wc.lpszClassName = "RockBoxUISimulator"; wc.style = CS_HREDRAW | CS_VREDRAW; -- cgit v1.2.3