// ntddrilapitypes.h
enum RILUICCAPPTYPE {
RIL_UICCAPPTYPE_UNKNOWN = 0x00000001,
RIL_UICCAPPTYPE_MF = 0x00000002,
RIL_UICCAPPTYPE_MF_SIM = 0x00000003,
RIL_UICCAPPTYPE_MF_RUIM = 0x00000004,
RIL_UICCAPPTYPE_USIM = 0x00000005,
RIL_UICCAPPTYPE_CSIM = 0x00000006,
RIL_UICCAPPTYPE_ISIM = 0x00000007
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef enum _RILUICCAPPTYPE {
RIL_UICCAPPTYPE_MF,
RIL_UICCAPPTYPE_MF_SIM,
RIL_UICCAPPTYPE_MF_RUIM,
RIL_UICCAPPTYPE_USIM,
RIL_UICCAPPTYPE_CSIM,
RIL_UICCAPPTYPE_ISIM,
RIL_UICCAPPTYPE_MAX
} RILUICCAPPTYPE;
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_UICCAPPTYPE_UNKNOWNRIL_UICCAPPTYPE_MFRIL_UICCAPPTYPE_MF_SIMRIL_UICCAPPTYPE_MF_RUIMRIL_UICCAPPTYPE_USIMRIL_UICCAPPTYPE_CSIMRIL_UICCAPPTYPE_ISIMRIL_UICCAPPTYPE_MAXenum RILUICCAPPTYPE {
RIL_UICCAPPTYPE_UNKNOWN = 0x00000001,
RIL_UICCAPPTYPE_MF = 0x00000002,
RIL_UICCAPPTYPE_MF_SIM = 0x00000003,
RIL_UICCAPPTYPE_MF_RUIM = 0x00000004,
RIL_UICCAPPTYPE_USIM = 0x00000005,
RIL_UICCAPPTYPE_CSIM = 0x00000006,
RIL_UICCAPPTYPE_ISIM = 0x00000007
};
Networks will vary, but the following table summarizes which items are returned for typical TD-SCDMA networks.
Serving network
| Entry | Typically returned? | Range | Comment |
|---|---|---|---|
| MobileCountryCode | Yes | 0 through 999 | |
| MobileNetworkCode | Yes | 0 through 999 | |
| LocationAreaCode | Yes | 0 to 65535 | |
| CellID | Yes | 0 through 268,435,455 | May not always be available; 28 bits |
| UARFCN | Yes | 0 through 16,383 | Channel number |
| CellParameterID | Yes | 0 through 127 | |
| TimingAdvance | Yes | 0 through 8,191 | By standards, the maximum range is 96 chips (0 to 96x8) |
| RSCP | Yes | −25 through −128 | Received signal code power of serving cell in dBm |
| PathLoss | No | 46 through 158 | Path loss of serving cell in dBs |
TD-SCDMA neighbors (subject to availability from network)
| Entry | Typically returned? | Range | Comment |
|---|---|---|---|
| MobileCountryCode | No | ||
| MobileNetworkCode | No | ||
| LocationAreaCode | No | ||
| CellID | No | ||
| UARFCN | Yes | 0 through 16,383 | Channel number |
| CellParameterID | Yes | 0 through 127 | |
| TimingAdvance | No | ||
| RSCP | Yes | −25 through −128 | Received signal code power of serving cell in dBm |
| PathLoss | No |
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
RIL_UICCAPPTYPE_UNKNOWNRIL_UICCAPPTYPE_MFRIL_UICCAPPTYPE_MF_SIMRIL_UICCAPPTYPE_MF_RUIMRIL_UICCAPPTYPE_USIMRIL_UICCAPPTYPE_CSIMRIL_UICCAPPTYPE_ISIMRIL_UICCAPPTYPE_MAXtypedef enum _RILUICCAPPTYPE {
RIL_UICCAPPTYPE_MF,
RIL_UICCAPPTYPE_MF_SIM,
RIL_UICCAPPTYPE_MF_RUIM,
RIL_UICCAPPTYPE_USIM,
RIL_UICCAPPTYPE_CSIM,
RIL_UICCAPPTYPE_ISIM,
RIL_UICCAPPTYPE_MAX
} RILUICCAPPTYPE;