This structure is used by the Audio Gateway (AG) service and stores information about the type of call and error code that indicates the type of failure.
typedef struct _NetworkCallFailedInfo { USHORT usCallType; DWORD dwStatus;} NetworkCallFailedInfo;
Members
- usCallType
Stores a value that identifies the type of the call. The possible values that are defined in the NETWORK_CALL_TYPE enumeration. - dwStatus
Stores standard error code that indicates type of failure.
Remarks
The NETWORK_CALL_TYPE enumeration is defined in btagnetwork.h.
typedef enum _NETWORK_CALL_TYPE {
CALL_TYPE_ANSWER = 0x01,
CALL_TYPE_DROP = 0x02,
CALL_TYPE_DIAL = 0x03,
CALL_TYPE_HOLD = 0x04,
CALL_TYPE_SWAP = 0x05,
CALL_TYPE_UNHOLD = 0x06,
} NETWORK_CALL_TYPE;
Requirements
OS Versions: Windows CE 5.0 and later.
Header: Btagnetwork.h.
See Also
Bluetooth OS Structures | Bluetooth Reference | Audio Gateway Service | BthAGNetworkGetCallState
Send Feedback on this topic to the authors