Commit 169615e7 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dpvoice: Use debugstr_guid() to trace GUIDs.

parent 3589cd92
......@@ -286,7 +286,8 @@ static HRESULT WINAPI dpvtest_CheckAudioSetup(IDirectPlayVoiceTest *iface, const
HWND hwndParent, DWORD dwFlags)
{
IDirectPlayVoiceTestImpl *This = impl_from_IDirectPlayVoiceTest(iface);
FIXME("%p %p %p %p %d\n", This, pguidPlaybackDevice, pguidCaptureDevice, hwndParent, dwFlags);
FIXME("%p %s %s %p %d\n", This, debugstr_guid(pguidPlaybackDevice),
debugstr_guid(pguidCaptureDevice), hwndParent, dwFlags);
return E_NOTIMPL;
}
......
......@@ -102,7 +102,7 @@ static IClassFactoryImpl DPVOICE_CFS[] =
HRESULT WINAPI DirectPlayVoiceCreate(LPCGUID pIID, void **ppvInterface)
{
FIXME("(%p, %p) stub\n", pIID, ppvInterface);
FIXME("(%s, %p) stub\n", debugstr_guid(pIID), ppvInterface);
return E_NOTIMPL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment