// wwan.h
typedef enum _WWAN_ACTIVATION_STATE {
WwanActivationStateUnknown,
WwanActivationStateActivated,
WwanActivationStateActivating,
WwanActivationStateDeactivated,
WwanActivationStateDeactivating,
WwanActivationStateMax
} WWAN_ACTIVATION_STATE, *PWWAN_ACTIVATION_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_ACTIVATION_STATE enumeration lists the different Packet Data Protocol (PDP) context activation states that are supported by the MB device.
WwanActivationStateUnknownThe activation state is unknown.
WwanActivationStateActivatedThe packet context is activated.
WwanActivationStateActivatingThe packet context is currently in the process of getting activated.
WwanActivationStateDeactivatedThe packet context is not activated.
WwanActivationStateDeactivatingThe packet context is currently in the process of getting deactivated.
WwanActivationStateMaxThe total number of PDP activation states.
Miniport drivers use the WwanActivationStateActivating and WwanActivationStateDeactivating transient states when responding to query requests. Miniport driver should not return these states when processing set requests. Miniport drivers must only send set indications after they have successfully activated or deactivated a PDP context, and not immediately after receiving the request.