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:
parent
3589cd921d
commit
169615e79c
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue