// wwan.h
typedef enum _WWAN_CELLULAR_CLASS {
WwanCellularClassUnknown,
WwanCellularClassGsm,
WwanCellularClassCdma,
WwanCellularClassMax
} WWAN_CELLULAR_CLASS, *PWWAN_CELLULAR_CLASS;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_CELLULAR_CLASS enumeration lists the different classes of cellular technology that are supported by the MB device.
WwanCellularClassUnknownThe device uses an unknown cellular technology.
WwanCellularClassGsmThe device uses GSM-based technology.
WwanCellularClassCdmaThe device uses CDMA-based technology.
WwanCellularClassMaxThe total number of supported cellular classes.