=?UTF-8?Q?J=C3=B3zef=20Kucia=20?=: dxgi: Return S_OK in dxgi_factory_MakeWindowAssociation() stub.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Feb 12 09:47:45 CST 2016


Module: wine
Branch: master
Commit: a36ae03c9fab07b019117bdfda228d0637209b40
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a36ae03c9fab07b019117bdfda228d0637209b40

Author: Józef Kucia <jkucia at codeweavers.com>
Date:   Fri Feb 12 01:27:42 2016 +0100

dxgi: Return S_OK in dxgi_factory_MakeWindowAssociation() stub.

Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dxgi/factory.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dxgi/factory.c b/dlls/dxgi/factory.c
index 5da45f3..5956e62 100644
--- a/dlls/dxgi/factory.c
+++ b/dlls/dxgi/factory.c
@@ -165,7 +165,7 @@ static HRESULT STDMETHODCALLTYPE dxgi_factory_MakeWindowAssociation(IDXGIFactory
 {
     FIXME("iface %p, window %p, flags %#x stub!\n", iface, window, flags);
 
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 static HRESULT STDMETHODCALLTYPE dxgi_factory_GetWindowAssociation(IDXGIFactory1 *iface, HWND *window)




More information about the wine-cvs mailing list