// wwan.h
typedef struct _WWAN_MODEM_CONFIG_INFO {
WWAN_MODEM_CONFIG_MODE ConfigMode;
WWAN_MODEM_CONFIG_STATE ConfigState;
WWAN_MODEM_CONFIG_REASON ConfigReason;
WWAN_MODEM_CONFIG_ID PreviousConfigID;
WWAN_MODEM_CONFIG_ID CurrentConfigID;
DWORD IsCurrentConfigDefault;
WCHAR ConfigName[WWAN_CONFIGNAME_LEN];
WWAN_LIST_HEADER NSSAIListHeader;
} WWAN_MODEM_CONFIG_INFO, *PWWAN_MODEM_CONFIG_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_MODEM_CONFIG_INFO structure represents the modem's configuration information.
ConfigModeThe modem's configuration mode. For a list of defined values, see WWAN_MODEM_CONFIG_MODE.
ConfigStateThe modem's configuration state. For a list of defined values, see WWAN_MODEM_CONFIG_STATE.
ConfigReasonThe reason for the modem's configuration state change. For a list of defined values, see WWAN_MODEM_CONFIG_REASON.
PreviousConfigIDA formatted WWAN_MODEM_CONFIG_ID structure that represents the modem's previous configuration ID.
CurrentConfigIDA formatted WWAN_MODEM_CONFIG_ID structure that represents the modem's current configuration ID.
IsCurrentConfigDefaultA DWORD value that indicates if the current configuration is the default configuration.
ConfigNameNSSAIListHeaderA WWAN_LIST_HEADER object that represents a pre-configured Single Network Slice Selection Assistance Information (S-NSSAI).
NDIS_STATUS_WWAN_MODEM_CONFIG_INFO