// wwan.h
typedef enum _WWAN_VOICE_CALL_STATE {
WwanVoiceCallStateNone,
WwanVoiceCallStateInProgress,
WwanVoiceCallStateHangUp,
WwanVoiceCallStateMaximum
} WWAN_VOICE_CALL_STATE, *PWWAN_VOICE_CALL_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_VOICE_CALL_STATE enumeration lists the different voice call states that are supported by the MB device.
WwanVoiceCallStateNoneThe device does not support voice calls, or there is no voice call currently in progress.
WwanVoiceCallStateInProgressA voice call is currently in progress. This value applies only to devices whose voice class is WwanVoiceClassSeparateVoiceData.
WwanVoiceCallStateHangUpA voice call is completed. This value applies only to devices whose voice class is WwanVoiceClassSeparateVoiceData.
WwanVoiceCallStateMaximumThe total number of supported voice call states.