Microsoft DirectX 9.0 |
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.
See Also