Updated dxgi-MakeWindowAssociation patchset

This commit is contained in:
Alistair Leslie-Hughes 2018-02-21 09:18:17 +11:00
parent 1943caeef2
commit 471aacbe42

View File

@ -29,7 +29,7 @@ index 7fc3279..d983928 100644
static HRESULT STDMETHODCALLTYPE dxgi_factory_MakeWindowAssociation(IWineDXGIFactory *iface,
HWND window, UINT flags)
{
+ struct dxgi_factory *factory = impl_from_IDXGIFactory1(iface);
+ struct dxgi_factory *factory = impl_from_IWineDXGIFactory(iface);
+
FIXME("iface %p, window %p, flags %#x stub!\n", iface, window, flags);
@ -43,7 +43,7 @@ index 7fc3279..d983928 100644
static HRESULT STDMETHODCALLTYPE dxgi_factory_GetWindowAssociation(IWineDXGIFactory *iface, HWND *window)
{
+ struct dxgi_factory *factory = impl_from_IDXGIFactory1(iface);
+ struct dxgi_factory *factory = impl_from_IWineDXGIFactory(iface);
+
FIXME("iface %p, window %p stub!\n", iface, window);