VCT_Contact

Syntax

#include <vct.h>
int VCT_Contact ( VCTSession **outSession );

Argument

outSession VCTSession Structure

Return Value

0 if successful; otherwise, the error code returns as a negative number

Description

VCT_Contact issues a request to start a conversation in Transceiver Mode. Machines acting as the server in Transceiver Mode experience the same events that a client issues upon processing in VoiceChat Library. The VCT_REQUEST_CONTACT method is issued inside VoiceChat Library.

Advance session participation in Transceiver Mode is possible using the VCT_SetTransceiverServer function or the VCT_SetTransceiverClients function.

Once the function call succeeds, a pointer to the session's structure is stored in outSession.

In Transceiver Mode, VCT_REQUEST_CONTACT should not be sent for CONTACT requests using the VCT_Request function ; VCT_Contact should always be used.

See Also

VCT_Release, VCT_SetTransceiverServer, VCT_SetTransceiverClients

Revision History

2006/04/17 Link of error codes is added.
2006/04/14 A note regarding VCT_Request was added.
2006/01/25 First release