Commit 3543e3d8 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

dxgi: Implement IDXGIFactory::GetParent().

parent bfdd5df7
......@@ -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 */
......
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