inetcomm: Trace all IMimeBody function parameters.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alistair Leslie-Hughes 2016-04-15 07:50:33 +00:00 committed by Alexandre Julliard
parent 0e727d4264
commit 8604604244
1 changed files with 61 additions and 32 deletions

View File

@ -559,7 +559,8 @@ static HRESULT WINAPI MimeBody_GetClassID(
IMimeBody* iface, IMimeBody* iface,
CLSID* pClassID) CLSID* pClassID)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%p) stub\n", This, pClassID);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -567,20 +568,22 @@ static HRESULT WINAPI MimeBody_GetClassID(
static HRESULT WINAPI MimeBody_IsDirty( static HRESULT WINAPI MimeBody_IsDirty(
IMimeBody* iface) IMimeBody* iface)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->() stub\n", This);
return E_NOTIMPL; return E_NOTIMPL;
} }
static HRESULT WINAPI MimeBody_Load(IMimeBody *iface, IStream *pStm) static HRESULT WINAPI MimeBody_Load(IMimeBody *iface, IStream *pStm)
{ {
MimeBody *This = impl_from_IMimeBody(iface); MimeBody *This = impl_from_IMimeBody(iface);
TRACE("(%p)->(%p)\n", iface, pStm); TRACE("(%p)->(%p)\n", This, pStm);
return parse_headers(This, pStm); return parse_headers(This, pStm);
} }
static HRESULT WINAPI MimeBody_Save(IMimeBody *iface, IStream *pStm, BOOL fClearDirty) static HRESULT WINAPI MimeBody_Save(IMimeBody *iface, IStream *pStm, BOOL fClearDirty)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%p, %d)\n", This, pStm, fClearDirty);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -588,14 +591,16 @@ static HRESULT WINAPI MimeBody_GetSizeMax(
IMimeBody* iface, IMimeBody* iface,
ULARGE_INTEGER* pcbSize) ULARGE_INTEGER* pcbSize)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%p) stub\n", This, pcbSize);
return E_NOTIMPL; return E_NOTIMPL;
} }
static HRESULT WINAPI MimeBody_InitNew( static HRESULT WINAPI MimeBody_InitNew(
IMimeBody* iface) IMimeBody* iface)
{ {
TRACE("%p->()\n", iface); MimeBody *This = impl_from_IMimeBody(iface);
TRACE("(%p)->()\n", This);
return S_OK; return S_OK;
} }
@ -604,7 +609,8 @@ static HRESULT WINAPI MimeBody_GetPropInfo(
LPCSTR pszName, LPCSTR pszName,
LPMIMEPROPINFO pInfo) LPMIMEPROPINFO pInfo)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%s, %p) stub\n", This, debugstr_a(pszName), pInfo);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -613,7 +619,8 @@ static HRESULT WINAPI MimeBody_SetPropInfo(
LPCSTR pszName, LPCSTR pszName,
LPCMIMEPROPINFO pInfo) LPCMIMEPROPINFO pInfo)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%s, %p) stub\n", This, debugstr_a(pszName), pInfo);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -624,7 +631,7 @@ static HRESULT WINAPI MimeBody_GetProp(
LPPROPVARIANT pValue) LPPROPVARIANT pValue)
{ {
MimeBody *This = impl_from_IMimeBody(iface); MimeBody *This = impl_from_IMimeBody(iface);
TRACE("(%p)->(%s, %d, %p)\n", This, pszName, dwFlags, pValue); TRACE("(%p)->(%s, 0x%x, %p)\n", This, pszName, dwFlags, pValue);
if(!strcasecmp(pszName, "att:pri-content-type")) if(!strcasecmp(pszName, "att:pri-content-type"))
{ {
@ -644,7 +651,8 @@ static HRESULT WINAPI MimeBody_SetProp(
DWORD dwFlags, DWORD dwFlags,
LPCPROPVARIANT pValue) LPCPROPVARIANT pValue)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%s, 0x%x, %p) stub\n", This, debugstr_a(pszName), dwFlags, pValue);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -654,7 +662,8 @@ static HRESULT WINAPI MimeBody_AppendProp(
DWORD dwFlags, DWORD dwFlags,
LPPROPVARIANT pValue) LPPROPVARIANT pValue)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%s, 0x%x, %p) stub\n", This, debugstr_a(pszName), dwFlags, pValue);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -662,7 +671,8 @@ static HRESULT WINAPI MimeBody_DeleteProp(
IMimeBody* iface, IMimeBody* iface,
LPCSTR pszName) LPCSTR pszName)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%s) stub\n", This, debugstr_a(pszName));
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -672,7 +682,8 @@ static HRESULT WINAPI MimeBody_CopyProps(
LPCSTR* prgszName, LPCSTR* prgszName,
IMimePropertySet* pPropertySet) IMimePropertySet* pPropertySet)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%d, %p, %p) stub\n", This, cNames, prgszName, pPropertySet);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -682,7 +693,8 @@ static HRESULT WINAPI MimeBody_MoveProps(
LPCSTR* prgszName, LPCSTR* prgszName,
IMimePropertySet* pPropertySet) IMimePropertySet* pPropertySet)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%d, %p, %p) stub\n", This, cNames, prgszName, pPropertySet);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -691,7 +703,8 @@ static HRESULT WINAPI MimeBody_DeleteExcept(
ULONG cNames, ULONG cNames,
LPCSTR* prgszName) LPCSTR* prgszName)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%d, %p) stub\n", This, cNames, prgszName);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -702,7 +715,8 @@ static HRESULT WINAPI MimeBody_QueryProp(
boolean fSubString, boolean fSubString,
boolean fCaseSensitive) boolean fCaseSensitive)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%s, %s, %d, %d) stub\n", This, debugstr_a(pszName), debugstr_a(pszCriteria), fSubString, fCaseSensitive);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -710,7 +724,8 @@ static HRESULT WINAPI MimeBody_GetCharset(
IMimeBody* iface, IMimeBody* iface,
LPHCHARSET phCharset) LPHCHARSET phCharset)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%p) stub\n", This, phCharset);
*phCharset = NULL; *phCharset = NULL;
return S_OK; return S_OK;
} }
@ -720,7 +735,8 @@ static HRESULT WINAPI MimeBody_SetCharset(
HCHARSET hCharset, HCHARSET hCharset,
CSETAPPLYTYPE applytype) CSETAPPLYTYPE applytype)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%p, %d) stub\n", This, hCharset, applytype);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -799,7 +815,8 @@ static HRESULT WINAPI MimeBody_BindToObject(
REFIID riid, REFIID riid,
void** ppvObject) void** ppvObject)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%s, %p) stub\n", This, debugstr_guid(riid), ppvObject);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -807,7 +824,8 @@ static HRESULT WINAPI MimeBody_Clone(
IMimeBody* iface, IMimeBody* iface,
IMimePropertySet** ppPropertySet) IMimePropertySet** ppPropertySet)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%p) stub\n", This, ppPropertySet);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -816,8 +834,9 @@ static HRESULT WINAPI MimeBody_SetOption(
const TYPEDID oid, const TYPEDID oid,
LPCPROPVARIANT pValue) LPCPROPVARIANT pValue)
{ {
MimeBody *This = impl_from_IMimeBody(iface);
HRESULT hr = E_NOTIMPL; HRESULT hr = E_NOTIMPL;
TRACE("(%p)->(%08x, %p)\n", iface, oid, pValue); TRACE("(%p)->(%08x, %p)\n", This, oid, pValue);
if(pValue->vt != TYPEDID_TYPE(oid)) if(pValue->vt != TYPEDID_TYPE(oid))
{ {
@ -843,7 +862,8 @@ static HRESULT WINAPI MimeBody_GetOption(
const TYPEDID oid, const TYPEDID oid,
LPPROPVARIANT pValue) LPPROPVARIANT pValue)
{ {
FIXME("(%p)->(%08x, %p): stub\n", iface, oid, pValue); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%08x, %p): stub\n", This, oid, pValue);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -852,7 +872,8 @@ static HRESULT WINAPI MimeBody_EnumProps(
DWORD dwFlags, DWORD dwFlags,
IMimeEnumProperties** ppEnum) IMimeEnumProperties** ppEnum)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(0x%x, %p) stub\n", This, dwFlags, ppEnum);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -862,7 +883,7 @@ static HRESULT WINAPI MimeBody_IsType(
{ {
MimeBody *This = impl_from_IMimeBody(iface); MimeBody *This = impl_from_IMimeBody(iface);
TRACE("(%p)->(%d)\n", iface, bodytype); TRACE("(%p)->(%d)\n", This, bodytype);
switch(bodytype) switch(bodytype)
{ {
case IBT_EMPTY: case IBT_EMPTY:
@ -877,7 +898,8 @@ static HRESULT WINAPI MimeBody_SetDisplayName(
IMimeBody* iface, IMimeBody* iface,
LPCSTR pszDisplay) LPCSTR pszDisplay)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%s) stub\n", This, debugstr_a(pszDisplay));
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -885,7 +907,8 @@ static HRESULT WINAPI MimeBody_GetDisplayName(
IMimeBody* iface, IMimeBody* iface,
LPSTR* ppszDisplay) LPSTR* ppszDisplay)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%p) stub\n", This, ppszDisplay);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -931,7 +954,8 @@ static HRESULT WINAPI MimeBody_GetEstimatedSize(
ENCODINGTYPE ietEncoding, ENCODINGTYPE ietEncoding,
ULONG* pcbSize) ULONG* pcbSize)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%d, %p) stub\n", This, ietEncoding, pcbSize);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -940,7 +964,8 @@ static HRESULT WINAPI MimeBody_GetDataHere(
ENCODINGTYPE ietEncoding, ENCODINGTYPE ietEncoding,
IStream* pStream) IStream* pStream)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%d, %p) stub\n", This, ietEncoding, pStream);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -995,7 +1020,8 @@ static HRESULT WINAPI MimeBody_SetData(
static HRESULT WINAPI MimeBody_EmptyData( static HRESULT WINAPI MimeBody_EmptyData(
IMimeBody* iface) IMimeBody* iface)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->() stub\n", This);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -1003,7 +1029,8 @@ static HRESULT WINAPI MimeBody_CopyTo(
IMimeBody* iface, IMimeBody* iface,
IMimeBody* pBody) IMimeBody* pBody)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%p) stub\n", This, pBody);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -1011,7 +1038,8 @@ static HRESULT WINAPI MimeBody_GetTransmitInfo(
IMimeBody* iface, IMimeBody* iface,
LPTRANSMITINFO pTransmitInfo) LPTRANSMITINFO pTransmitInfo)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%p) stub\n", This, pTransmitInfo);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -1020,7 +1048,8 @@ static HRESULT WINAPI MimeBody_SaveToFile(
ENCODINGTYPE ietEncoding, ENCODINGTYPE ietEncoding,
LPCSTR pszFilePath) LPCSTR pszFilePath)
{ {
FIXME("stub\n"); MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%d, %s) stub\n", This, ietEncoding, debugstr_a(pszFilePath));
return E_NOTIMPL; return E_NOTIMPL;
} }