Module: wine Branch: master Commit: b362db03276b7a105b629ece9ef7f8be7b0cf843 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b362db03276b7a105b629ece9e...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Nov 28 15:19:26 2008 +0100
dmloader: Remove WINAPI on static functions where not needed.
---
dlls/dmloader/loader.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/dmloader/loader.c b/dlls/dmloader/loader.c index 1a6d095..4bb3c43 100644 --- a/dlls/dmloader/loader.c +++ b/dlls/dmloader/loader.c @@ -21,7 +21,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(dmloader);
-static HRESULT WINAPI DMUSIC_SetLoaderSettings (LPDIRECTMUSICLOADER8 iface, REFGUID pClassID, WCHAR* wszSearchPath, LPBOOL pbCache); +static HRESULT DMUSIC_SetLoaderSettings (LPDIRECTMUSICLOADER8 iface, REFGUID pClassID, WCHAR* wszSearchPath, LPBOOL pbCache);
/***************************************************************************** * IDirectMusicLoaderImpl implementation @@ -893,7 +893,7 @@ HRESULT WINAPI DMUSIC_GetLoaderSettings (LPDIRECTMUSICLOADER8 iface, REFGUID pCl }
/* help function for setting search path and caching option for certain class */ -static HRESULT WINAPI DMUSIC_SetLoaderSettings (LPDIRECTMUSICLOADER8 iface, REFGUID pClassID, WCHAR* wszSearchPath, LPBOOL pbCache) { +static HRESULT DMUSIC_SetLoaderSettings (LPDIRECTMUSICLOADER8 iface, REFGUID pClassID, WCHAR* wszSearchPath, LPBOOL pbCache) { ICOM_THIS_MULTI(IDirectMusicLoaderImpl, LoaderVtbl, iface); struct list *pEntry; HRESULT result = S_FALSE; /* in case pClassID != GUID_DirectMusicAllTypes and not a valid CLSID */