Module: wine Branch: master Commit: a36ae03c9fab07b019117bdfda228d0637209b40 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a36ae03c9fab07b019117bdfda...
Author: Józef Kucia jkucia@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@codeweavers.com Signed-off-by: Henri Verbeet hverbeet@codeweavers.com Signed-off-by: Alexandre Julliard julliard@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)