Commit cc42922e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

oleaut32: Remove WINAPI on static functions where not needed.

parent c584c2d1
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(ole); 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) * DispInvoke (OLEAUT32.30)
...@@ -425,7 +425,7 @@ static const IDispatchVtbl StdDispatch_VTable = ...@@ -425,7 +425,7 @@ static const IDispatchVtbl StdDispatch_VTable =
StdDispatch_Invoke StdDispatch_Invoke
}; };
static IDispatch * WINAPI StdDispatch_Construct( static IDispatch * StdDispatch_Construct(
IUnknown * punkOuter, IUnknown * punkOuter,
void * pvThis, void * pvThis,
ITypeInfo * pTypeInfo) ITypeInfo * pTypeInfo)
......
...@@ -1036,7 +1036,7 @@ static inline ITypeInfoImpl *info_impl_from_ITypeComp( ITypeComp *iface ) ...@@ -1036,7 +1036,7 @@ static inline ITypeInfoImpl *info_impl_from_ITypeComp( ITypeComp *iface )
static const ITypeInfo2Vtbl tinfvt; static const ITypeInfo2Vtbl tinfvt;
static const ITypeCompVtbl tcompvt; static const ITypeCompVtbl tcompvt;
static ITypeInfo2 * WINAPI ITypeInfo_Constructor(void); static ITypeInfo2 * ITypeInfo_Constructor(void);
typedef struct tagTLBContext typedef struct tagTLBContext
{ {
...@@ -4805,7 +4805,7 @@ static const ITypeCompVtbl tlbtcvt = ...@@ -4805,7 +4805,7 @@ static const ITypeCompVtbl tlbtcvt =
}; };
/*================== ITypeInfo(2) Methods ===================================*/ /*================== ITypeInfo(2) Methods ===================================*/
static ITypeInfo2 * WINAPI ITypeInfo_Constructor(void) static ITypeInfo2 * ITypeInfo_Constructor(void)
{ {
ITypeInfoImpl * pTypeInfoImpl; ITypeInfoImpl * pTypeInfoImpl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment