#include <vct.h>
typedef enum {
VCT_REQUEST_INVITE = 0,
VCT_REQUEST_BYE,
VCT_REQUEST_CANCEL,
VCT_REQUEST_CONTACT,
VCT_REQUEST_NOTIFY,
VCT_REQUEST_END
} VCTRequestCode;
VCT_REQUEST_INVITE | A request to talk. |
VCT_REQUEST_BYE | A request to terminate talking. |
VCT_REQUEST_CANCEL | Cancellation of the request to terminate talking. |
VCT_REQUEST_CONTACT | A request to talk in Transceiver Mode. |
VCT_REQUEST_NOTIFY | A request to send a notice in Transceiver Mode. |
These are SSP request codes. They are used in the VCT_Request
function.
VCT_REQUEST_COTACT and VCT_REQUEST_NOTIFY are used internally; the VCT_Request
function should not be called using these codes.
2006/01/25 First release