From a36ae03c9fab07b019117bdfda228d0637209b40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3zef=20Kucia?= Date: Fri, 12 Feb 2016 01:27:42 +0100 Subject: [PATCH] dxgi: Return S_OK in dxgi_factory_MakeWindowAssociation() stub. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Józef Kucia Signed-off-by: Henri Verbeet Signed-off-by: Alexandre Julliard --- 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 5da45f3b0bc..5956e62bff8 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)