From 3543e3d8cc047b4f462680d74d025c49db6fb3bd Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Thu, 3 Dec 2009 11:38:21 +0100 Subject: [PATCH] dxgi: Implement IDXGIFactory::GetParent(). --- dlls/dxgi/factory.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dlls/dxgi/factory.c b/dlls/dxgi/factory.c index 33c15767eb5..150e40ce015 100644 --- a/dlls/dxgi/factory.c +++ b/dlls/dxgi/factory.c @@ -110,9 +110,11 @@ static HRESULT STDMETHODCALLTYPE dxgi_factory_GetPrivateData(IWineDXGIFactory *i static HRESULT STDMETHODCALLTYPE dxgi_factory_GetParent(IWineDXGIFactory *iface, REFIID riid, void **parent) { - FIXME("iface %p, riid %s, parent %p stub!\n", iface, debugstr_guid(riid), parent); + WARN("iface %p, riid %s, parent %p.\n", iface, debugstr_guid(riid), parent); - return E_NOTIMPL; + *parent = NULL; + + return E_NOINTERFACE; } /* IDXGIFactory methods */ -- 2.11.4.GIT