Microsoft DirectX 9.0 |
The Disconnect method breaks the current pin connection. This method implements the IPin::Disconnect method.
Syntax
HRESULT Disconnect(void);
Return Value
Returns an HRESULT value. Possible values include those in the following table.
Value | Description |
S_FALSE | The pin was not connected. |
S_OK | Success. |
VFW_E_NOT_STOPPED | The filter is active and the pin does not support dynamic reconnection. |
Remarks
The base class delegates most of the work to the CBasePin::DisconnectInternal method.
See Also