ole32: Use debugstr_guid() in TRACE() messages.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
cb901b5fe5
commit
3db78a2bb7
|
@ -231,7 +231,7 @@ static HRESULT WINAPI ClassMoniker_BindToObject(IMoniker* iface,
|
|||
IClassActivator *pActivator;
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("(%p,%p,%p,%p)\n", pbc, pmkToLeft, riid, ppvResult);
|
||||
TRACE("(%p, %p, %s, %p)\n", pbc, pmkToLeft, debugstr_guid(riid), ppvResult);
|
||||
|
||||
bindopts.cbStruct = sizeof(bindopts);
|
||||
IBindCtx_GetBindOptions(pbc, (BIND_OPTS *)&bindopts);
|
||||
|
@ -264,7 +264,7 @@ static HRESULT WINAPI ClassMoniker_BindToStorage(IMoniker* iface,
|
|||
REFIID riid,
|
||||
VOID** ppvResult)
|
||||
{
|
||||
TRACE("(%p,%p,%p,%p)\n",pbc, pmkToLeft, riid, ppvResult);
|
||||
TRACE("(%p, %p, %s, %p)\n", pbc, pmkToLeft, debugstr_guid(riid), ppvResult);
|
||||
return IMoniker_BindToObject(iface, pbc, pmkToLeft, riid, ppvResult);
|
||||
}
|
||||
|
||||
|
@ -586,7 +586,7 @@ static HRESULT WINAPI ClassMonikerROTData_QueryInterface(IROTData *iface,REFIID
|
|||
|
||||
ClassMoniker *This = impl_from_IROTData(iface);
|
||||
|
||||
TRACE("(%p,%p,%p)\n",iface,riid,ppvObject);
|
||||
TRACE("(%p, %s, %p)\n", iface, debugstr_guid(riid), ppvObject);
|
||||
|
||||
return IMoniker_QueryInterface(&This->IMoniker_iface, riid, ppvObject);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue