oleaut32: Remove WINAPI on static functions where not needed.

This commit is contained in:
Francois Gouget 2008-11-25 16:42:23 +01:00 committed by Alexandre Julliard
parent c584c2d12c
commit cc42922e08
2 changed files with 4 additions and 4 deletions

View File

@ -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)

View File

@ -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;