// wwan.h
typedef enum _WWAN_PIN_FORMAT {
WwanPinFormatUnknown,
WwanPinFormatNumeric,
WwanPinFormatAlphaNumeric,
WwanPinFormatMax
} WWAN_PIN_FORMAT, *PWWAN_PIN_FORMAT;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_PIN_FORMAT enumeration lists the different Personal Identification Number (PIN) formats that are supported by the MB device.
WwanPinFormatUnknownThe format of PIN is not specified.
WwanPinFormatNumericThe format of the PIN allows only the numerical characters 0 through 9.
WwanPinFormatAlphaNumericThe format of the PIN allows alphanumeric characters a through z (lowercase), A through Z (uppercase), 0 through 9 (numeric), the asterisk symbol (*), and the pound symbol (#).
WwanPinFormatMaxThe total number of supported PIN formats.