Skip to content
Snippets Groups Projects
Commit c8221e29 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard
Browse files

dxgi: Implement dxgi_output_SetPrivateDataInterface().

parent 7e2423e1
No related branches found
No related tags found
No related merge requests found
......@@ -90,9 +90,11 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_SetPrivateData(IDXGIOutput *iface,
static HRESULT STDMETHODCALLTYPE dxgi_output_SetPrivateDataInterface(IDXGIOutput *iface,
REFGUID guid, const IUnknown *object)
{
FIXME("iface %p, guid %s, object %p stub!\n", iface, debugstr_guid(guid), object);
struct dxgi_output *output = impl_from_IDXGIOutput(iface);
return E_NOTIMPL;
TRACE("iface %p, guid %s, object %p.\n", iface, debugstr_guid(guid), object);
return dxgi_set_private_data_interface(&output->private_store, guid, object);
}
static HRESULT STDMETHODCALLTYPE dxgi_output_GetPrivateData(IDXGIOutput *iface,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment