dpvoice: Use debugstr_guid() to trace GUIDs.

Signed-off-by: Michael Stefaniuc <mstefani@redhat.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2016-09-27 09:59:35 +02:00 committed by Alexandre Julliard
parent 3589cd921d
commit 169615e79c
2 changed files with 3 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}