Module: wine Branch: master Commit: 0a9c529072bfcdc2c6bac829ce3f76f4c79269ba URL: http://source.winehq.org/git/wine.git/?a=commit;h=0a9c529072bfcdc2c6bac829ce...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Nov 24 00:15:36 2008 +0100
atl: Remove WINAPI on static functions where not needed.
---
dlls/atl/atl_ax.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/atl/atl_ax.c b/dlls/atl/atl_ax.c index e20c342..a5ae342 100644 --- a/dlls/atl/atl_ax.c +++ b/dlls/atl/atl_ax.c @@ -117,7 +117,7 @@ BOOL WINAPI AtlAxWinInit(void) */
-static ULONG WINAPI IOCS_AddRef(IOCS *This) +static ULONG IOCS_AddRef(IOCS *This) { ULONG ref = InterlockedIncrement(&This->ref);
@@ -132,7 +132,7 @@ static ULONG WINAPI IOCS_AddRef(IOCS *This) #define THIS2IOLEINPLACEFRAME(This) ((IOleInPlaceFrame*)&This->lpOleInPlaceFrameVtbl) #define THIS2IOLECONTROLSITE(This) ((IOleControlSite*)&This->lpOleControlSiteVtbl)
-static HRESULT WINAPI IOCS_QueryInterface(IOCS *This, REFIID riid, void **ppv) +static HRESULT IOCS_QueryInterface(IOCS *This, REFIID riid, void **ppv) { *ppv = NULL;
@@ -166,7 +166,7 @@ static HRESULT WINAPI IOCS_QueryInterface(IOCS *This, REFIID riid, void **ppv) }
static HRESULT IOCS_Detach( IOCS *This ); -static ULONG WINAPI IOCS_Release(IOCS *This) +static ULONG IOCS_Release(IOCS *This) { ULONG ref = InterlockedDecrement(&This->ref);