Module: wine Branch: master Commit: 7a23b9f0f85f652c8d01a0296455e07322268dac URL: http://source.winehq.org/git/wine.git/?a=commit;h=7a23b9f0f85f652c8d01a02964...
Author: Andrew Eikum aeikum@codeweavers.com Date: Thu Aug 20 15:02:52 2015 -0500
xaudio2: Implement IXAudio27::Initialize.
---
dlls/xaudio2_7/xaudio_dll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/xaudio2_7/xaudio_dll.c b/dlls/xaudio2_7/xaudio_dll.c index b13436c..03909bd 100644 --- a/dlls/xaudio2_7/xaudio_dll.c +++ b/dlls/xaudio2_7/xaudio_dll.c @@ -297,7 +297,7 @@ static HRESULT WINAPI XA27_Initialize(IXAudio27 *iface, UINT32 flags, { IXAudio2Impl *This = impl_from_IXAudio27(iface); TRACE("(%p)->(0x%x, 0x%x)\n", This, flags, processor); - return E_NOTIMPL; + return S_OK; }
static HRESULT WINAPI XA27_RegisterForCallbacks(IXAudio27 *iface,