// wwan.h
typedef enum _WWAN_USSD_SESSION_STATE {
WwanUssdSessionStateNew,
WwanUssdSessionStateExisting
} WWAN_USSD_SESSION_STATE, *PWWAN_USSD_SESSION_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_USSD_SESSION_STATE enumeration lists the different types of USSD session states.
WwanUssdSessionStateNewThe USSD string is the first message of a USSD session.
WwanUssdSessionStateExistingThe USSD string is not the first message of a USSD session.
Miniport drivers use the WWAN_USSD_SESSION_STATE enumeration to indicate whether a USSD string is the first message of a USSD session. Miniport drivers must use WwanUssdSessionStateNew for the first message of a network-initiated USSD session. Miniport drivers should use WwanUssdSessionStateExisting in all other cases.