oleaut32: Remove WINAPI on static functions where not needed.
This commit is contained in:
parent
c584c2d12c
commit
cc42922e08
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue