// wwan.h
typedef enum _WWAN_MODEM_CONFIG_STATE {
WwanModemConfigStateUnknown,
WwanModemConfigStatePending,
WwanModemConfigStateCompleted,
WwanModemConfigStateMax
} WWAN_MODEM_CONFIG_STATE, *PWWAN_MODEM_CONFIG_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_MODEM_CONFIG_STATE enumeration lists definitions used by the modem to inform the OS about its modem configuration state.
WwanModemConfigStateUnknownThe modem configuration state is currently not available.
WwanModemConfigStatePendingThe modem is currently selecting the best suitable configuration file that matches the UICC info.
WwanModemConfigStateCompletedThe modem has completed its configuration and modem subcomponents are aware of the new configuration.
WwanModemConfigStateMaxThe maximum value for this enumeration. This value might change in future versions of the NDIS header files and binaries.