// ntddrilapitypes.h
enum RILUICCKEYREF {
RIL_UICCKEYREF_ALW = 0x00,
RIL_UICCKEYREF_PIN1 = 0x01,
RIL_UICCKEYREF_UPIN = 0x10,
RIL_UICCKEYREF_PIN2 = 0x81,
RIL_UICCKEYREF_NEV = 0xff
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef enum _RILUICCKEYREF {
RIL_UICCKEYREF_PIN1,
RIL_UICCKEYREF_UPIN,
RIL_UICCKEYREF_PIN2,
RIL_UICCKEYREF_NEV
} RILUICCKEYREF;
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 RILUICCAPPTYPE.
RIL_UICCKEYREF_ALWRIL_UICCKEYREF_PIN1RIL_UICCKEYREF_UPINRIL_UICCKEYREF_PIN2RIL_UICCKEYREF_NEVenum RILUICCKEYREF {
RIL_UICCKEYREF_ALW = 0x00,
RIL_UICCKEYREF_PIN1 = 0x01,
RIL_UICCKEYREF_UPIN = 0x10,
RIL_UICCKEYREF_PIN2 = 0x81,
RIL_UICCKEYREF_NEV = 0xff
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
RIL_UICCKEYREF_ALWRIL_UICCKEYREF_PIN1RIL_UICCKEYREF_UPINRIL_UICCKEYREF_PIN2RIL_UICCKEYREF_NEVtypedef enum _RILUICCKEYREF {
RIL_UICCKEYREF_PIN1,
RIL_UICCKEYREF_UPIN,
RIL_UICCKEYREF_PIN2,
RIL_UICCKEYREF_NEV
} RILUICCKEYREF;