Commit 385d89a7 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

Enable querying of IID_FilterGraph interface from filtergraph manager

(spotted by Robert Reif).
parent ffcc67ab
......@@ -182,6 +182,7 @@ static HRESULT Filtergraph_QueryInterface(IFilterGraphImpl *This,
TRACE("(%p)->(%s (%p), %p)\n", This, debugstr_guid(riid), riid, ppvObj);
if (IsEqualGUID(&IID_IUnknown, riid) ||
IsEqualGUID(&IID_IFilterGraph, riid) ||
IsEqualGUID(&IID_IGraphBuilder, riid)) {
*ppvObj = &(This->IGraphBuilder_vtbl);
TRACE(" returning IGraphBuilder interface (%p)\n", *ppvObj);
......
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