// ntddrilapitypes.h
struct RILPOSITIONINFOLTE {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwCellID;
DWORD dwEARFCN;
DWORD dwPhysCellID;
DWORD dwTAC;
DWORD dwRSRP;
DWORD dwRSRQ;
DWORD dwTimingAdvance;
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILPOSITIONINFOLTE {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwCellID;
DWORD dwEARFCN;
DWORD dwPhysCellID;
DWORD dwTAC;
LONG dwRSRP;
LONG dwRSRQ;
DWORD dwTimingAdvance;
} RILPOSITIONINFOLTE, RILPOSITIONINFOLTE;
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 the RILPOSITIONINFOLTE.
dwParamsA bitwise combination of RILPOSITIONINFOLTEPARAMMASK 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.
dwMobileCountryCodeMobile country code (0...999)
dwMobileNetworkCodeMobile Network Code (0...999)
dwCellIDCell identity (28 bits)
dwEARFCNRadio Frequency Channel Number of serving cell (0...65535)
dwPhysCellIDPhysical CellID (0...503)
dwTACTracking area code (0...65535)
dwRSRPAverage Reference Signal Received Power. Range (-1400 ... -440) in units of 0.1dBm.
dwRSRQAverage Reference Signal Received Quality. Range (-200 ... -30) in units of 0.1dBm.
dwTimingAdvanceTiming Advance (0...255) in bit periods, where a bit period is 48/13µs
struct RILPOSITIONINFOLTE {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwCellID;
DWORD dwEARFCN;
DWORD dwPhysCellID;
DWORD dwTAC;
DWORD dwRSRP;
DWORD dwRSRQ;
DWORD dwTimingAdvance;
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
dwParamsdwMobileCountryCodedwMobileNetworkCodedwCellIDdwEARFCNdwPhysCellIDdwTACdwRSRPdwRSRQdwTimingAdvancetypedef struct _RILPOSITIONINFOLTE {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwCellID;
DWORD dwEARFCN;
DWORD dwPhysCellID;
DWORD dwTAC;
LONG dwRSRP;
LONG dwRSRQ;
DWORD dwTimingAdvance;
} RILPOSITIONINFOLTE, RILPOSITIONINFOLTE;