Mike McCormack : winetest: Fix dialog prototypes.
Module: wine Branch: refs/heads/master Commit: 5ea2a17776ea805b51fda3b5e296c1f2f732b6a2 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=5ea2a17776ea805b51fda3b5... Author: Mike McCormack <mike(a)codeweavers.com> Date: Tue Jun 6 14:21:13 2006 +0900 winetest: Fix dialog prototypes. --- programs/winetest/gui.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/winetest/gui.c b/programs/winetest/gui.c index a75d1e8..b738679 100644 --- a/programs/winetest/gui.c +++ b/programs/winetest/gui.c @@ -323,7 +323,7 @@ EditTagProc (HWND hwnd, UINT msg, WPARAM return CallWindowProcA (DefEditProc, hwnd, msg, wParam, lParam); } -static BOOL CALLBACK +static INT_PTR CALLBACK AskTagProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { int len; @@ -376,7 +376,7 @@ qAsk (va_list ap) return MBdefault (va_arg (ap, int)); } -static BOOL CALLBACK +static INT_PTR CALLBACK AboutProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) { @@ -390,7 +390,7 @@ AboutProc (HWND hwnd, UINT msg, WPARAM w return FALSE; } -static BOOL CALLBACK +static INT_PTR CALLBACK DlgProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) {
participants (1)
-
Alexandre Julliard