Author: akhaldi
Date: Wed Jul 31 13:30:50 2013
New Revision: 59600
URL:
http://svn.reactos.org/svn/reactos?rev=59600&view=rev
Log:
[QUARTZ]
* Correct IAMDirectSound::GetFocusWindow signature.
* Brought to you by Thomas Faber. Already applied upstream.
Modified:
trunk/reactos/dll/directx/quartz/dsoundrender.c
Modified: trunk/reactos/dll/directx/quartz/dsoundrender.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/quartz/dsoundr…
==============================================================================
--- trunk/reactos/dll/directx/quartz/dsoundrender.c [iso-8859-1] (original)
+++ trunk/reactos/dll/directx/quartz/dsoundrender.c [iso-8859-1] Wed Jul 31 13:30:50 2013
@@ -1247,20 +1247,20 @@
return E_NOTIMPL;
}
-static HRESULT WINAPI AMDirectSound_SetFocusWindow(IAMDirectSound *iface, HWND hwnd, BOOL
bgsilent)
+static HRESULT WINAPI AMDirectSound_SetFocusWindow(IAMDirectSound *iface, HWND hwnd, BOOL
bgaudible)
{
DSoundRenderImpl *This = impl_from_IAMDirectSound(iface);
- FIXME("(%p/%p)->(%p,%d): stub\n", This, iface, hwnd, bgsilent);
+ FIXME("(%p/%p)->(%p,%d): stub\n", This, iface, hwnd, bgaudible);
return E_NOTIMPL;
}
-static HRESULT WINAPI AMDirectSound_GetFocusWindow(IAMDirectSound *iface, HWND hwnd)
+static HRESULT WINAPI AMDirectSound_GetFocusWindow(IAMDirectSound *iface, HWND *hwnd,
BOOL *bgaudible)
{
DSoundRenderImpl *This = impl_from_IAMDirectSound(iface);
- FIXME("(%p/%p)->(%p): stub\n", This, iface, hwnd);
+ FIXME("(%p/%p)->(%p,%p): stub\n", This, iface, hwnd, bgaudible);
return E_NOTIMPL;
}