// ntddrilapitypes.h
struct RILUICCLOCKSTATE {
DWORD cbSize;
DWORD dwParams;
RILUICCLOCK rilUiccLock;
DWORD dwLockState;
DWORD dwVerifyAttemptsLeft;
DWORD dwUnblockAttemptsLeft;
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILUICCLOCKSTATE {
DWORD cbSize;
DWORD dwParams;
RILUICCLOCK rilUiccLock;
DWORD dwLockState;
DWORD dwVerifyAttemptsLeft;
DWORD dwUnblockAttemptsLeft;
} RILUICCLOCKSTATE, RILUICCLOCKSTATE;
View the official Windows Driver Kit DDI referenceNo description available.
Warning The Cellular COM API is deprecated in Windows 10. This content is provided to support maintenance of OEM and mobile operator created Windows Phone 8.1 applications.
This structure represents a RILUICCLOCKSTATE.
cbSizeThe size of the structure in bytes.
dwParamsA bitwise combination of RILUICCLOCKSTATEPARAMMASK enumeration values that indicates which members of the structure contain valid data. A member of the structure is valid if the corresponding bit flag is set.
rilUiccLockSpecifies the lock of type RILUICCLOCK.
dwLockStateThe current state of the lock, a bitmask of RILUICCLOCKSTATELOCKSTATE.
dwVerifyAttemptsLeftThe number of verification attempts that remain before the lock is blocked.
dwUnblockAttemptsLeftThe number of unblock attempts that remain before the lock is permanently blocked.
struct RILUICCLOCKSTATE {
DWORD cbSize;
DWORD dwParams;
RILUICCLOCK rilUiccLock;
DWORD dwLockState;
DWORD dwVerifyAttemptsLeft;
DWORD dwUnblockAttemptsLeft;
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
cbSizedwParamsrilUiccLockdwLockStatedwVerifyAttemptsLeftdwUnblockAttemptsLefttypedef struct _RILUICCLOCKSTATE {
DWORD cbSize;
DWORD dwParams;
RILUICCLOCK rilUiccLock;
DWORD dwLockState;
DWORD dwVerifyAttemptsLeft;
DWORD dwUnblockAttemptsLeft;
} RILUICCLOCKSTATE, RILUICCLOCKSTATE;