Module: wine Branch: master Commit: cc42922e08b1751039b0e64de3c0a9facc9431e0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cc42922e08b1751039b0e64de3...
Author: Francois Gouget fgouget@codeweavers.com Date: Tue Nov 25 16:42:23 2008 +0100
oleaut32: Remove WINAPI on static functions where not needed.
---
dlls/oleaut32/dispatch.c | 4 ++-- dlls/oleaut32/typelib.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/oleaut32/dispatch.c b/dlls/oleaut32/dispatch.c index 057e39a..4dfc470 100644 --- a/dlls/oleaut32/dispatch.c +++ b/dlls/oleaut32/dispatch.c @@ -39,7 +39,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(ole);
-static IDispatch * WINAPI StdDispatch_Construct(IUnknown * punkOuter, void * pvThis, ITypeInfo * pTypeInfo); +static IDispatch * StdDispatch_Construct(IUnknown * punkOuter, void * pvThis, ITypeInfo * pTypeInfo);
/****************************************************************************** * DispInvoke (OLEAUT32.30) @@ -425,7 +425,7 @@ static const IDispatchVtbl StdDispatch_VTable = StdDispatch_Invoke };
-static IDispatch * WINAPI StdDispatch_Construct( +static IDispatch * StdDispatch_Construct( IUnknown * punkOuter, void * pvThis, ITypeInfo * pTypeInfo) diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index bbdebae..8e4745b 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -1036,7 +1036,7 @@ static inline ITypeInfoImpl *info_impl_from_ITypeComp( ITypeComp *iface ) static const ITypeInfo2Vtbl tinfvt; static const ITypeCompVtbl tcompvt;
-static ITypeInfo2 * WINAPI ITypeInfo_Constructor(void); +static ITypeInfo2 * ITypeInfo_Constructor(void);
typedef struct tagTLBContext { @@ -4805,7 +4805,7 @@ static const ITypeCompVtbl tlbtcvt = };
/*================== ITypeInfo(2) Methods ===================================*/ -static ITypeInfo2 * WINAPI ITypeInfo_Constructor(void) +static ITypeInfo2 * ITypeInfo_Constructor(void) { ITypeInfoImpl * pTypeInfoImpl;