Module: wine Branch: master Commit: db36599affde0b594aff0dda79a472e54fa36354 URL: http://source.winehq.org/git/wine.git/?a=commit;h=db36599affde0b594aff0dda79...
Author: Francois Gouget fgouget@free.fr Date: Fri Jul 1 09:32:37 2011 +0200
shell32: Remove WINAPI on static functions where not needed.
---
dlls/shell32/shellpath.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index 017f101..c468cb8 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -3135,7 +3135,7 @@ static HRESULT get_known_folder_registry_path( * However, besides root key, path is always that same, and is stored * as "szKnownFolderRedirections" constant */ -static HRESULT WINAPI get_known_folder_redirection_place( +static HRESULT get_known_folder_redirection_place( REFKNOWNFOLDERID rfid, HKEY *rootKey) { @@ -3173,7 +3173,7 @@ static HRESULT WINAPI get_known_folder_redirection_place( return hr; }
-static HRESULT WINAPI redirect_known_folder( +static HRESULT redirect_known_folder( REFKNOWNFOLDERID rfid, HWND hwnd, KF_REDIRECT_FLAGS flags,