// wwan.h
typedef enum _WWAN_MODEM_CONFIG_MODE {
WwanModemConfigModeUnknown,
WwanModemConfigModeModemCentric,
WwanModemConfigModeHostCentric,
WwanModemConfigModeMax
} WWAN_MODEM_CONFIG_MODE, *PWWAN_MODEM_CONFIG_MODE;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_MODEM_CONFIG_MODE enumeration lists modem configuration modes.
WwanModemConfigModeUnknownThe modem configuration mode is currently not available.
WwanModemConfigModeModemCentricThe modem configuration mode is modem centric. The modem is responsible for the selection process of configuration based on UICC info or any other vendor-specified algorithm.
WwanModemConfigModeHostCentricThe modem configuration mode is host centric. The host will inform the modem which configuration file the modem will use.
WwanModemConfigModeMaxThe maximum value for this enumeration. This value might change in future versions of the NDIS header files and binaries.
The modem configuration mode shall not change during runtime. If a change is detected, it will be ignored by the OS.