#include <vct.h>
typedef enum {
VCT_STATE_INIT,
VCT_STATE_OUTGOING,
VCT_STATE_TALKING,
VCT_STATE_CONNECTED,
VCT_STATE_INCOMING,
VCT_STATE_DISCONNECTING
} VCTState;
VCT_STATE_INIT | Initial condition. |
VCT_STATE_OUTGOING | INVITE/CONTACT has been already issued. |
VCT_STATE_TALKING | Connected and in conversation. |
VCT_STATE_CONNECTED | Connected and another player is talking (Transceiver Mode only). |
VCT_STATE_INCOMING | An external request is received. |
VCT_STATE_DISCONNECTING | Processing disconnection. |
These are enumeration codes to show the SSP's internal condition.
2006/04/13 Description regarding VCT_STATE_CONNECTED was modified.
2006/01/25 First release