// ntddrilapitypes.h
struct RILPOSITIONINFOGSM {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwTimingAdvance;
DWORD dwARFCN;
DWORD dwBaseStationID;
DWORD dwRxLevel;
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILPOSITIONINFOGSM {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwTimingAdvance;
DWORD dwARFCN;
DWORD dwBaseStationID;
DWORD dwRxLevel;
} RILPOSITIONINFOGSM, RILPOSITIONINFOGSM;
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 RILPOSITIONINFOGSM.
dwParamsA bitwise combination of RILPOSITIONINFOGSMPARAMMASK 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)
dwLocationAreaCodeLocation Area Code (0…65535)
dwCellIDCell ID (0...65535)
dwTimingAdvanceTiming Advance (0...255) in bit periods, where a bit period is 48/13µs
dwARFCNAbsolute radio frequency channel number of serving cell (0...1023)
dwBaseStationIDRadio base station ID of serving cell (0..63)
dwRxLevelReceived signal strength of serving cell (0...63) where:
(x=0, RSS < -110dBm
x=63, RSS > -49dBm
0 <x <63, -110+x < RSS < -109+x)
struct RILPOSITIONINFOGSM {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwTimingAdvance;
DWORD dwARFCN;
DWORD dwBaseStationID;
DWORD dwRxLevel;
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
dwParamsdwMobileCountryCodedwMobileNetworkCodedwLocationAreaCodedwCellIDdwTimingAdvancedwARFCNdwBaseStationIDdwRxLeveltypedef struct _RILPOSITIONINFOGSM {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwTimingAdvance;
DWORD dwARFCN;
DWORD dwBaseStationID;
DWORD dwRxLevel;
} RILPOSITIONINFOGSM, RILPOSITIONINFOGSM;