Enable querying of IID_FilterGraph interface from filtergraph manager

(spotted by Robert Reif).
This commit is contained in:
Christian Costa 2004-04-30 04:14:19 +00:00 committed by Alexandre Julliard
parent ffcc67abf1
commit 385d89a770
1 changed files with 1 additions and 0 deletions

View File

@ -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);