Microsoft DirectX 9.0 |
The SetConfigInfo method specifies the IGraphConfig pointer and the stop event.
Syntax
void SetConfigInfo(
IGraphConfig *pGraphConfig,
HANDLE hStopEvent
);
Parameters
pGraphConfig
Pointer to the IGraphConfig interface, or NULL.
hStopEvent
Handle to an event that is signaled when the filter stops, or NULL.
Remarks
The filter must call this method when it joins the filter graph. The filter graph manager supports IGraphConfig. For the hStopEvent parameter, create a manual-reset event. When the filter leaves the filter graph, call this method again with NULL for both parameters.
See Also