Commit 0bdc8bc5 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

quartz: Implement GraphConfig_Reconfigure.

parent 68a3ed21
......@@ -5032,10 +5032,20 @@ static HRESULT WINAPI GraphConfig_Reconfigure(IGraphConfig *iface,
HANDLE hAbortEvent)
{
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphConfig_vtbl, iface);
HRESULT hr;
FIXME("(%p)->(%p, %p, %x, %p): stub!\n", This, pCallback, pvContext, dwFlags, hAbortEvent);
return E_NOTIMPL;
WARN("(%p)->(%p, %p, %x, %p): partial stub!\n", This, pCallback, pvContext, dwFlags, hAbortEvent);
if (hAbortEvent)
FIXME("The parameter hAbortEvent is not handled!\n");
EnterCriticalSection(&This->cs);
hr = IGraphConfigCallback_Reconfigure(pCallback, pvContext, dwFlags);
LeaveCriticalSection(&This->cs);
return hr;
}
static HRESULT WINAPI GraphConfig_AddFilterToCache(IGraphConfig *iface,
......
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