NDIS_WWAN_PIN_LIST structure (ndiswwan.h)
The NDIS_WWAN_PIN_LIST structure represents a list of descriptions of Personal Identification Numbers (PINs).
Syntax
typedef struct _NDIS_WWAN_PIN_LIST {
NDIS_OBJECT_HEADER Header;
WWAN_STATUS uStatus;
WWAN_PIN_LIST PinList;
} NDIS_WWAN_PIN_LIST, *PNDIS_WWAN_PIN_LIST;
Members
Header
The header with type, revision, and size information about the NDIS_WWAN_PIN_LIST structure. The MB Service sets the header with the values that are shown in the following table when it sends the data structure to the miniport driver for set operations. Miniport drivers must set the header with the same values when they send the data structure to the MB service.
Header submember | Value |
---|---|
Type | NDIS_OBJECT_TYPE_DEFAULT |
Revision | NDIS_WWAN_PIN_LIST_REVISION_1 |
Size | sizeof(NDIS_WWAN_PIN_LIST) |
For more information about these members, see NDIS_OBJECT_HEADER.
uStatus
The status of the PIN list operation. The following table shows the possible values for this.
Value | Meaning |
---|---|
WWAN_STATUS_SUCCESS | The PIN list operation succeeded. |
WWAN_STATUS_FAILURE | The PIN list operation failed. |
WWAN_STATUS_PIN_REQUIRED | The PIN list operation failed because a PIN must be entered before this operation can proceed. |
WWAN_STATUS_SIM_NOT_INSERTED | The PIN list operation failed because the SIM card is not inserted. |
WWAN_STATUS_NOT_INITIALIZED | The operation failed because the device is in the process of initializing. Retry the operation after the ready-state of the device changes to WwanReadyStateInitialized. |
WWAN_STATUS_BAD_SIM | The operation failed because a bad SIM card was detected. |
PinList
A formatted WWAN_PIN_LIST object that represents a list of descriptions of Personal Identification Numbers (PINs).
Requirements
Requirement | Value |
---|---|
Minimum supported client | Available in Windows 7 and later versions of Windows. |
Header | ndiswwan.h (include Ndiswwan.h) |