From 07b325f8f2b5ee9e6f3f3d88579d6888312a6231 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Wed, 15 Oct 2008 14:12:20 +0100 Subject: [PATCH] shell32: Fix the position where WINAPI is specified in the LPFNOFN typedef. --- dlls/shell32/dialogs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/dialogs.c b/dlls/shell32/dialogs.c index b64d3063d07..77eea186bf8 100644 --- a/dlls/shell32/dialogs.c +++ b/dlls/shell32/dialogs.c @@ -49,7 +49,7 @@ typedef struct UINT uFlags ; } RUNFILEDLGPARAMS ; -typedef BOOL (*WINAPI LPFNOFN) (OPENFILENAMEW *) ; +typedef BOOL (WINAPI * LPFNOFN) (OPENFILENAMEW *) ; WINE_DEFAULT_DEBUG_CHANNEL(shell); static INT_PTR CALLBACK RunDlgProc (HWND, UINT, WPARAM, LPARAM) ;