Rob Shearman : shell32: Fix the position where WINAPI is specified in the LPFNOFN typedef.
Module: wine Branch: master Commit: 07b325f8f2b5ee9e6f3f3d88579d6888312a6231 URL: http://source.winehq.org/git/wine.git/?a=commit;h=07b325f8f2b5ee9e6f3f3d8857... Author: Rob Shearman <robertshearman(a)gmail.com> Date: Wed Oct 15 14:12:20 2008 +0100 shell32: Fix the position where WINAPI is specified in the LPFNOFN typedef. --- dlls/shell32/dialogs.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shell32/dialogs.c b/dlls/shell32/dialogs.c index b64d306..77eea18 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) ;
participants (1)
-
Alexandre Julliard