// ntddrilapitypes.h
enum RILUICCLOCKSTATELOCKSTATE {
RIL_PARAM_UICCLOCKSTATE_LOCKSTATE = 0x0000000,
RIL_UICCLOCKSTATE_VERIFIED = 0x0000001,
RIL_UICCLOCKSTATE_ENABLED = 0x0000002,
RIL_UICCLOCKSTATE_BLOCKED = 0x0000003
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef enum _RILUICCLOCKSTATELOCKSTATE {
RIL_UICCLOCKSTATE_VERIFIED,
RIL_UICCLOCKSTATE_ENABLED,
RIL_UICCLOCKSTATE_BLOCKED,
RIL_UICCLOCKSTATE_ALL
} RILUICCLOCKSTATELOCKSTATE;
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 enumeration describes the RILUICCLOCKSTATELOCKSTATE.
RIL_UICCLOCKSTATE_NONERIL_UICCLOCKSTATE_VERIFIEDLock is verified.
RIL_UICCLOCKSTATE_ENABLEDLock is enabled.
RIL_UICCLOCKSTATE_BLOCKEDLock is blocked.
RIL_UICCLOCKSTATE_ALLRIL_PARAM_UICCLOCKSTATE_LOCKSTATENone of the other state bits are set.
enum RILUICCLOCKSTATELOCKSTATE {
RIL_PARAM_UICCLOCKSTATE_LOCKSTATE = 0x0000000,
RIL_UICCLOCKSTATE_VERIFIED = 0x0000001,
RIL_UICCLOCKSTATE_ENABLED = 0x0000002,
RIL_UICCLOCKSTATE_BLOCKED = 0x0000003
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
RIL_UICCLOCKSTATE_NONERIL_UICCLOCKSTATE_VERIFIEDRIL_UICCLOCKSTATE_ENABLEDRIL_UICCLOCKSTATE_BLOCKEDRIL_UICCLOCKSTATE_ALLtypedef enum _RILUICCLOCKSTATELOCKSTATE {
RIL_UICCLOCKSTATE_VERIFIED,
RIL_UICCLOCKSTATE_ENABLED,
RIL_UICCLOCKSTATE_BLOCKED,
RIL_UICCLOCKSTATE_ALL
} RILUICCLOCKSTATELOCKSTATE;