Platform SDK: TAPI

CMSPCallBase::RemoveStream

(Interface ITStreamControl) This method is called by the application to remove a stream from the call. Derived MSP call objects that do not want to allow applications to remove streams should override this to simply return TAPI_E_NOTSUPPORTED. (This is a good simplification strategy for many MSPs.) Derived call objects that do support removal of streams by the application should override this method to remove the stream object from the call object's list of streams and release the call's references to the stream. (See below for the CMSPCallMultiGraph's implementation.)

virtual HRESULT RemoveStream (
  ITStream *pStream
) = 0;

Parameters

pStream
Pointer to ITStream interface to be removed.

See Also

CMSPCallBase