// wwan.h
typedef struct _WWAN_PIN_DESC {
WWAN_PIN_MODE PinMode;
WWAN_PIN_FORMAT PinFormat;
ULONG PinLengthMin;
ULONG PinLengthMax;
} WWAN_PIN_DESC, *PWWAN_PIN_DESC;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_PIN_DESC structure represents the description or current status for a Personal Identification Number (PIN).
PinModeThe current status of the PIN.
PinFormatThe format of the PIN. This member is ignored if the PinMode is WwanPinModeNotSupported.
PinLengthMinThe minimum number of characters in the PIN. Miniport drivers should not specify a value that is greater than WWAN_PIN_LEN (12). Miniport drivers should specify WWAN_PIN_LENGTH_UNKNOWN, if the PIN length is not available.
PinLengthMaxThe maximum number of characters in the PIN. Miniport drivers should not specify a value that is greater than WWAN_PIN_LEN (12). Miniport drivers should specify WWAN_PIN_LENGTH_UNKNOWN, if the PIN length is not available.