Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 453 of file parser.c.
{ HRESULT hr = S_OK; ParserImpl *This = (ParserImpl *)iface; TRACE("(%p, %s)\n", pGraph, debugstr_w(pName)); EnterCriticalSection(&This->csFilter); { if (pName) strcpyW(This->filterInfo.achName, pName); else *This->filterInfo.achName = '\0'; This->filterInfo.pGraph = pGraph; /* NOTE: do NOT increase ref. count */ } LeaveCriticalSection(&This->csFilter); return hr; }