// ntddrilapitypes.h
enum RILUICCSLOTSTATE {
RIL_UICCSLOT_OFF_EMPTY = 0x01,
RIL_UICCSLOT_OFF = 0x02,
RIL_UICCSLOT_EMPTY = 0x03,
RIL_UICCSLOT_NOT_READY = 0x04,
RIL_UICCSLOT_ACTIVE = 0x05,
RIL_UICCSLOT_ERROR = 0x06
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef enum _RILUICCSLOTSTATE {
RIL_UICCSLOT_OFF,
RIL_UICCSLOT_EMPTY,
RIL_UICCSLOT_NOT_READY,
RIL_UICCSLOT_ACTIVE,
RIL_UICCSLOT_ERROR,
RIL_UICCSLOT_MAX
} RILUICCSLOTSTATE;
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 RILUICCSLOTSTATE.
RIL_UICCSLOT_OFF_EMPTYRIL_UICCSLOT_OFFRIL_UICCSLOT_EMPTYRIL_UICCSLOT_NOT_READYRIL_UICCSLOT_ACTIVERIL_UICCSLOT_ERRORRIL_UICCSLOT_MAXenum RILUICCSLOTSTATE {
RIL_UICCSLOT_OFF_EMPTY = 0x01,
RIL_UICCSLOT_OFF = 0x02,
RIL_UICCSLOT_EMPTY = 0x03,
RIL_UICCSLOT_NOT_READY = 0x04,
RIL_UICCSLOT_ACTIVE = 0x05,
RIL_UICCSLOT_ERROR = 0x06
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
RIL_UICCSLOT_OFF_EMPTYRIL_UICCSLOT_OFFRIL_UICCSLOT_EMPTYRIL_UICCSLOT_NOT_READYRIL_UICCSLOT_ACTIVERIL_UICCSLOT_ERRORRIL_UICCSLOT_MAXtypedef enum _RILUICCSLOTSTATE {
RIL_UICCSLOT_OFF,
RIL_UICCSLOT_EMPTY,
RIL_UICCSLOT_NOT_READY,
RIL_UICCSLOT_ACTIVE,
RIL_UICCSLOT_ERROR,
RIL_UICCSLOT_MAX
} RILUICCSLOTSTATE;