// ntddrilapitypes.h
enum RILIMSIPARAMMASK {
RIL_PARAM_IMSI_IMSI = 0x00000001,
RIL_PARAM_IMSI_MCC = 0x00000002,
RIL_PARAM_IMSI_MNC = 0x00000004,
RIL_PARAM_IMSI_ALL = 0x00000007
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef enum _RILIMSIPARAMMASK {
RIL_PARAM_IMSI_MCC,
RIL_PARAM_IMSI_MNC,
RIL_PARAM_IMSI_ALL
} RILIMSIPARAMMASK;
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 RILIMSIPARAMMASK.
RIL_PARAM_IMSI_IMSIRIL_PARAM_IMSI_MCCRIL_PARAM_IMSI_MNCRIL_PARAM_IMSI_ALLenum RILIMSIPARAMMASK {
RIL_PARAM_IMSI_IMSI = 0x00000001,
RIL_PARAM_IMSI_MCC = 0x00000002,
RIL_PARAM_IMSI_MNC = 0x00000004,
RIL_PARAM_IMSI_ALL = 0x00000007
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
RIL_PARAM_IMSI_IMSIRIL_PARAM_IMSI_MCCRIL_PARAM_IMSI_MNCRIL_PARAM_IMSI_ALLtypedef enum _RILIMSIPARAMMASK {
RIL_PARAM_IMSI_MCC,
RIL_PARAM_IMSI_MNC,
RIL_PARAM_IMSI_ALL
} RILIMSIPARAMMASK;