xaudio2: Add TRACE functions to CreateAudioReverb/CreateAudioVolumeMeter.
Signed-off-by: Ethan Lee <elee@codeweavers.com> Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
73af53c4bc
commit
6103b8173b
|
@ -2075,6 +2075,8 @@ HRESULT WINAPI CreateAudioVolumeMeter(IUnknown **out)
|
|||
IClassFactory *cf;
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("%p\n", out);
|
||||
|
||||
hr = make_xapo_factory(&CLSID_AudioVolumeMeter27, &IID_IClassFactory, (void**)&cf);
|
||||
if(FAILED(hr))
|
||||
return hr;
|
||||
|
@ -2091,6 +2093,8 @@ HRESULT WINAPI CreateAudioReverb(IUnknown **out)
|
|||
IClassFactory *cf;
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("%p\n", out);
|
||||
|
||||
hr = make_xapo_factory(&CLSID_AudioReverb27, &IID_IClassFactory, (void**)&cf);
|
||||
if(FAILED(hr))
|
||||
return hr;
|
||||
|
|
Loading…
Reference in New Issue