Francois Gouget : comdlg32: Remove WINAPI on static functions where not needed.
Module: wine Branch: master Commit: 7e4aa49387ff5fa0207c89eccf6c8310b917797e URL: http://source.winehq.org/git/wine.git/?a=commit;h=7e4aa49387ff5fa0207c89eccf... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Mon Nov 24 00:28:25 2008 +0100 comdlg32: Remove WINAPI on static functions where not needed. --- dlls/comdlg32/filedlg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/comdlg32/filedlg.c b/dlls/comdlg32/filedlg.c index 5aa2da5..953a5ba 100644 --- a/dlls/comdlg32/filedlg.c +++ b/dlls/comdlg32/filedlg.c @@ -240,7 +240,7 @@ static BOOL BrowseSelectedFolder(HWND hwnd); * OUT : TRUE on success * FALSE on cancel, error, close or filename-does-not-fit-in-buffer. */ -static BOOL WINAPI GetFileName95(FileOpenDlgInfos *fodInfos) +static BOOL GetFileName95(FileOpenDlgInfos *fodInfos) { LRESULT lRes;
participants (1)
-
Alexandre Julliard