Commit e79bf359 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

dxgi: Make dxgi_swapchain_SetFullscreenState() hotpatchable.

parent 64e02271
......@@ -178,10 +178,10 @@ static HRESULT STDMETHODCALLTYPE dxgi_swapchain_GetBuffer(IDXGISwapChain *iface,
return hr;
}
static HRESULT STDMETHODCALLTYPE dxgi_swapchain_SetFullscreenState(IDXGISwapChain *iface,
static HRESULT STDMETHODCALLTYPE DECLSPEC_HOTPATCH dxgi_swapchain_SetFullscreenState(IDXGISwapChain *iface,
BOOL fullscreen, IDXGIOutput *target)
{
FIXME("iface %p, fullscreen %u, target %p stub!\n", iface, fullscreen, target);
FIXME("iface %p, fullscreen %#x, target %p stub!\n", iface, fullscreen, target);
return E_NOTIMPL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment