// wwan.h
typedef struct _WWAN_LTE_SERVING_CELL_INFO {
ULONG ProviderIdOffset;
ULONG ProviderIdSize;
ULONG CellId;
ULONG EARFCN;
ULONG PhysicalCellId;
ULONG TAC;
ULONG RSRP;
ULONG RSRQ;
ULONG TimingAdvance;
BYTE Data[ANYSIZE_ARRAY];
} WWAN_LTE_SERVING_CELL_INFO, *PWWAN_LTE_SERVING_CELL_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_LTE_SERVING_CELL_INFO structure represents information about the LTE serving cell.
ProviderIdOffsetThe offset in bytes, calculated from the beginning of this structure, to a numeric (0-9) string called ProviderId that represents the network provider identity. This string is a concatenation of a three-digit Mobile Country Code (MCC) and a two or three-digit Mobile Network Code (MNC). This member can be NULL when no ProviderId information is returned.
ProviderIdSizeThe size, in bytes, used for ProviderId.
CellIdThe Cell ID (0-268435455). Use 0xFFFFFFFF when this information is not available.
EARFCNThe Radio Frequency Channel Number of the serving cell (0-65535). Use 0xFFFFFFFF when this information is not available.
PhysicalCellIdThe Physical Cell ID (0-503). Use 0xFFFFFFFF when this information is not available.
TACThe Tracking Area Code (0-65535). Use 0xFFFFFFFF when this information is not available.
RSRPThe Average Reference Signal Received Power. The range is -140 to -44, in units of 1dBm. Use 0xFFFFFFFF when this information is not available.
RSRQThe Average Reference Signal Received Quality. The range is -20 to -3, in units of 1dBm. Use 0xFFFFFFFF when this information is not available.
TimingAdvanceThe Timing Advance (0-255). Use 0xFFFFFFFF when this information is not available.
DataThe data buffer containing ProviderId.
MB base stations information query support