ole32: Remove WINAPI on static functions where not needed.
This commit is contained in:
parent
d026b74d79
commit
66063ae4a4
|
@ -116,7 +116,7 @@ static ULONG WINAPI ClassMoniker_AddRef(IMoniker* iface)
|
|||
/******************************************************************************
|
||||
* ClassMoniker_Destroy (local function)
|
||||
*******************************************************************************/
|
||||
static HRESULT WINAPI ClassMoniker_Destroy(ClassMoniker* This)
|
||||
static HRESULT ClassMoniker_Destroy(ClassMoniker* This)
|
||||
{
|
||||
TRACE("(%p)\n",This);
|
||||
|
||||
|
@ -693,7 +693,7 @@ static const IROTDataVtbl ROTDataVtbl =
|
|||
/******************************************************************************
|
||||
* ClassMoniker_Construct (local function)
|
||||
*******************************************************************************/
|
||||
static HRESULT WINAPI ClassMoniker_Construct(ClassMoniker* This, REFCLSID rclsid)
|
||||
static HRESULT ClassMoniker_Construct(ClassMoniker* This, REFCLSID rclsid)
|
||||
{
|
||||
TRACE("(%p,%s)\n",This,debugstr_guid(rclsid));
|
||||
|
||||
|
|
|
@ -1267,7 +1267,7 @@ HRESULT WINAPI CoCreateGuid(GUID *pguid)
|
|||
* SEE ALSO
|
||||
* StringFromCLSID
|
||||
*/
|
||||
static HRESULT WINAPI __CLSIDFromString(LPCWSTR s, CLSID *id)
|
||||
static HRESULT __CLSIDFromString(LPCWSTR s, CLSID *id)
|
||||
{
|
||||
int i;
|
||||
BYTE table[256];
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
WINE_DEFAULT_DEBUG_CHANNEL(ole);
|
||||
|
||||
/* this code is from SysAllocStringLen (ole2disp.c in oleaut32) */
|
||||
static BSTR WINAPI ERRORINFO_SysAllocString(const OLECHAR* in)
|
||||
static BSTR ERRORINFO_SysAllocString(const OLECHAR* in)
|
||||
{
|
||||
DWORD bufferSize;
|
||||
DWORD* newBuffer;
|
||||
|
@ -99,7 +99,7 @@ static BSTR WINAPI ERRORINFO_SysAllocString(const OLECHAR* in)
|
|||
}
|
||||
|
||||
/* this code is from SysFreeString (ole2disp.c in oleaut32)*/
|
||||
static VOID WINAPI ERRORINFO_SysFreeString(BSTR in)
|
||||
static VOID ERRORINFO_SysFreeString(BSTR in)
|
||||
{
|
||||
DWORD* bufferPointer;
|
||||
|
||||
|
|
|
@ -63,8 +63,8 @@ static inline IMoniker *impl_from_IROTData( IROTData *iface )
|
|||
}
|
||||
|
||||
/* Local function used by filemoniker implementation */
|
||||
static HRESULT WINAPI FileMonikerImpl_Construct(FileMonikerImpl* iface, LPCOLESTR lpszPathName);
|
||||
static HRESULT WINAPI FileMonikerImpl_Destroy(FileMonikerImpl* iface);
|
||||
static HRESULT FileMonikerImpl_Construct(FileMonikerImpl* iface, LPCOLESTR lpszPathName);
|
||||
static HRESULT FileMonikerImpl_Destroy(FileMonikerImpl* iface);
|
||||
|
||||
/*******************************************************************************
|
||||
* FileMoniker_QueryInterface
|
||||
|
@ -456,7 +456,7 @@ FileMonikerImpl_GetSizeMax(IMoniker* iface, ULARGE_INTEGER* pcbSize)
|
|||
/******************************************************************************
|
||||
* FileMoniker_Destroy (local function)
|
||||
*******************************************************************************/
|
||||
HRESULT WINAPI FileMonikerImpl_Destroy(FileMonikerImpl* This)
|
||||
HRESULT FileMonikerImpl_Destroy(FileMonikerImpl* This)
|
||||
{
|
||||
TRACE("(%p)\n",This);
|
||||
|
||||
|
@ -1333,8 +1333,7 @@ static const IROTDataVtbl VT_ROTDataImpl =
|
|||
/******************************************************************************
|
||||
* FileMoniker_Construct (local function)
|
||||
*/
|
||||
static HRESULT WINAPI
|
||||
FileMonikerImpl_Construct(FileMonikerImpl* This, LPCOLESTR lpszPathName)
|
||||
static HRESULT FileMonikerImpl_Construct(FileMonikerImpl* This, LPCOLESTR lpszPathName)
|
||||
{
|
||||
int nb=0,i;
|
||||
int sizeStr=lstrlenW(lpszPathName);
|
||||
|
|
|
@ -97,8 +97,8 @@ static HRESULT WINAPI ItemMonikerImpl_ParseDisplayName(IMoniker* iface,IBindCtx*
|
|||
static HRESULT WINAPI ItemMonikerImpl_IsSystemMoniker(IMoniker* iface,DWORD* pwdMksys);
|
||||
|
||||
/* Local function used by ItemMoniker implementation */
|
||||
static HRESULT WINAPI ItemMonikerImpl_Construct(ItemMonikerImpl* iface, LPCOLESTR lpszDelim,LPCOLESTR lpszPathName);
|
||||
static HRESULT WINAPI ItemMonikerImpl_Destroy(ItemMonikerImpl* iface);
|
||||
static HRESULT ItemMonikerImpl_Construct(ItemMonikerImpl* iface, LPCOLESTR lpszDelim,LPCOLESTR lpszPathName);
|
||||
static HRESULT ItemMonikerImpl_Destroy(ItemMonikerImpl* iface);
|
||||
|
||||
/********************************************************************************/
|
||||
/* IROTData prototype functions */
|
||||
|
@ -391,7 +391,7 @@ HRESULT WINAPI ItemMonikerImpl_GetSizeMax(IMoniker* iface,
|
|||
/******************************************************************************
|
||||
* ItemMoniker_Construct (local function)
|
||||
*******************************************************************************/
|
||||
static HRESULT WINAPI ItemMonikerImpl_Construct(ItemMonikerImpl* This, LPCOLESTR lpszDelim,LPCOLESTR lpszItem)
|
||||
static HRESULT ItemMonikerImpl_Construct(ItemMonikerImpl* This, LPCOLESTR lpszDelim,LPCOLESTR lpszItem)
|
||||
{
|
||||
|
||||
int sizeStr1=lstrlenW(lpszItem), sizeStr2;
|
||||
|
@ -429,7 +429,7 @@ static HRESULT WINAPI ItemMonikerImpl_Construct(ItemMonikerImpl* This, LPCOLESTR
|
|||
/******************************************************************************
|
||||
* ItemMoniker_Destroy (local function)
|
||||
*******************************************************************************/
|
||||
static HRESULT WINAPI ItemMonikerImpl_Destroy(ItemMonikerImpl* This)
|
||||
static HRESULT ItemMonikerImpl_Destroy(ItemMonikerImpl* This)
|
||||
{
|
||||
TRACE("(%p)\n",This);
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ typedef struct EnumMonikerImpl
|
|||
|
||||
|
||||
/* IEnumMoniker Local functions*/
|
||||
static HRESULT WINAPI EnumMonikerImpl_CreateEnumROTMoniker(InterfaceList *moniker_list,
|
||||
static HRESULT EnumMonikerImpl_CreateEnumROTMoniker(InterfaceList *moniker_list,
|
||||
ULONG pos, IEnumMoniker **ppenumMoniker);
|
||||
|
||||
static IrotHandle get_irot_handle(void)
|
||||
|
@ -342,7 +342,7 @@ RunningObjectTableImpl_AddRef(IRunningObjectTable* iface)
|
|||
/***********************************************************************
|
||||
* RunningObjectTable_Initialize
|
||||
*/
|
||||
static HRESULT WINAPI
|
||||
static HRESULT
|
||||
RunningObjectTableImpl_Destroy(void)
|
||||
{
|
||||
struct list *cursor, *cursor2;
|
||||
|
@ -1463,7 +1463,7 @@ static const IEnumMonikerVtbl VT_EnumMonikerImpl =
|
|||
* Used by EnumRunning to create the structure and EnumClone
|
||||
* to copy the structure
|
||||
*/
|
||||
static HRESULT WINAPI EnumMonikerImpl_CreateEnumROTMoniker(InterfaceList *moniker_list,
|
||||
static HRESULT EnumMonikerImpl_CreateEnumROTMoniker(InterfaceList *moniker_list,
|
||||
ULONG current_pos,
|
||||
IEnumMoniker **ppenumMoniker)
|
||||
{
|
||||
|
|
|
@ -725,7 +725,7 @@ static DWORD BIGBLOCKFILE_GetProtectMode(DWORD openFlags)
|
|||
*
|
||||
* See the documentation of ILockBytes for more info.
|
||||
*/
|
||||
static HRESULT WINAPI ImplBIGBLOCKFILE_ReadAt(
|
||||
static HRESULT ImplBIGBLOCKFILE_ReadAt(
|
||||
BigBlockFile* const This,
|
||||
ULARGE_INTEGER ulOffset, /* [in] */
|
||||
void* pv, /* [length_is][size_is][out] */
|
||||
|
@ -812,7 +812,7 @@ static HRESULT WINAPI ImplBIGBLOCKFILE_ReadAt(
|
|||
*
|
||||
* See the documentation of ILockBytes for more info.
|
||||
*/
|
||||
static HRESULT WINAPI ImplBIGBLOCKFILE_WriteAt(
|
||||
static HRESULT ImplBIGBLOCKFILE_WriteAt(
|
||||
BigBlockFile* const This,
|
||||
ULARGE_INTEGER ulOffset, /* [in] */
|
||||
const void* pv, /* [size_is][in] */
|
||||
|
|
Loading…
Reference in New Issue