// wwan.h
typedef enum _WWAN_DEVICE_TYPE {
WwanDeviceTypeUnknown,
WwanDeviceTypeEmbedded,
WwanDeviceTypeRemovable,
WwanDeviceTypeRemote,
WwanDeviceTypeMax
} WWAN_DEVICE_TYPE, *PWWAN_DEVICE_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_DEVICE_TYPE enumeration lists the different device types that describe the MB device.
WwanDeviceTypeUnknownThe device type is unknown.
WwanDeviceTypeEmbeddedThe device type is embedded in the system.
WwanDeviceTypeRemovableThe device type is removable.
WwanDeviceTypeRemoteThe device type is remote. For example, a tethered cellular phone modem.
WwanDeviceTypeMaxThe total number of supported device types.