CTransformInputPin::CompleteConnect
Microsoft DirectShow 9.0 |
CTransformInputPin::CompleteConnect
The CompleteConnect method completes a connection to another pin.
Syntax
HRESULT CompleteConnect( IPin *pReceivePin );
Parameters
pReceivePin
Pointer to the other pin's IPin interface.
Return Value
Returns S_OK or another HRESULT value.
Remarks
This method overrides the CBasePin::CompleteConnect method. It calls the filter's CTransformFilter::CompleteConnect method, which returns S_OK in the base class. The derived class can override the CTransformFilter::CompleteConnect method to perform additional checks.
Requirements
** Header:** Declared in Transfrm.h; include Streams.h.
** Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).
See Also