// ntddrilapitypes.h
struct RILUMTSMRL {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwUARFCN;
DWORD dwPrimaryScramblingCode;
LONG dwRSCP;
LONG dwECNO;
DWORD dwPathLoss;
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILUMTSMRL {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwUARFCN;
DWORD dwPrimaryScramblingCode;
LONG dwRSCP;
LONG dwECNO;
DWORD dwPathLoss;
} RILUMTSMRL, RILUMTSMRL;
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 structure represents a RILUMTSMRL.
dwParamsA bitwise combination of RILUMTSMRLPARAMMASK enumeration values that indicates which members of the structure contain valid data. A member of the structure is valid if the corresponding bit flag is set.
dwMobileCountryCodeCountry code (0...999)
dwMobileNetworkCodeMobile network code (0...999)
dwLocationAreaCodeLocation area code (0...65535)
dwCellIDUMTS cell ID (0...268435455)
dwUARFCNUTRA absolute radio frequency channel number (0...16383)
dwPrimaryScramblingCodePrimary Scrambling Code (0...511)
dwRSCPReceived signal code power of serving cell. Range (-1200 ... -250) in units of 0.1dBm, i.e., -250 represents -25dBm.
dwECNOSignal to noise ratio of serving cell; the ratio of the received energy per PN chip for the CPICH to the total received power spectral density at the antenna. Range (-500...0) in units of 0.1dBm.
dwPathLossPath loss.
struct RILUMTSMRL {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwUARFCN;
DWORD dwPrimaryScramblingCode;
LONG dwRSCP;
LONG dwECNO;
DWORD dwPathLoss;
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
dwParamsdwMobileCountryCodedwMobileNetworkCodedwLocationAreaCodedwCellIDdwUARFCNdwPrimaryScramblingCodedwRSCPdwECNOdwPathLosstypedef struct _RILUMTSMRL {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwUARFCN;
DWORD dwPrimaryScramblingCode;
LONG dwRSCP;
LONG dwECNO;
DWORD dwPathLoss;
} RILUMTSMRL, RILUMTSMRL;