Platform SDK: TAPI

CMSPCallBase::ReceiveTSPCallData

This method is called by the MSP address object's ReceiveTSPData method to dispatch TSP data to the correct call. The call object should override this method to handle the TSP data according to whatever semantics have been defined for communication between this particular MSP and its corresponding TSP. The default implementation simply returns S_OK, which is sufficient for an MSP that does not handle any per-call TSP data.

virtual HRESULT ReceiveTSPCallData(
  PBYTE pBuffer,
  DWORD dwSize
);

Parameters

pBuffer
Pointer to buffer containing TSP data.
dwSize
Size in bytes of pBuffer.

See Also

CMSPCallBase