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>
oldstable
Józef Kucia 2016-02-12 01:27:42 +01:00 committed by Alexandre Julliard
parent 24d937b618
commit a36ae03c9f
1 changed files with 1 additions and 1 deletions

View File

@ -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)