// wwan.h
typedef enum _WWAN_PIN_OPERATION {
WwanPinOperationEnter,
WwanPinOperationEnable,
WwanPinOperationDisable,
WwanPinOperationChange,
WwanPinOperationMax
} WWAN_PIN_OPERATION, *PWWAN_PIN_OPERATION;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_PIN_OPERATION enumeration lists the different Personal Identification Number (PIN) operations that are supported by the MB device.
WwanPinOperationEnterEnter the specified PIN into the device.
WwanPinOperationEnableEnable the specified PIN.
WwanPinOperationDisableDisable the specified PIN.
WwanPinOperationChangeChange the specified PIN.
WwanPinOperationMaxThe total number of supported PIN operations.
If a PIN disable operation for a given PIN type is tried when that PIN type is locked, miniport drivers can either fail the request with WWAN_STATUS_PIN_REQUIRED or they can successfully complete the request. If miniport drivers complete the request successfully, the disable operation should also unlock the PIN.