// ntddrilapitypes.h
struct RILPOSITIONINFOTDSCDMA {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwUARFCN;
DWORD dwCellParameterID;
DWORD dwTimingAdvance;
LONG dwRSCP;
DWORD dwPathLoss;
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILPOSITIONINFOTDSCDMA {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwUARFCN;
DWORD dwCellParameterID;
DWORD dwTimingAdvance;
DWORD dwRSCP;
DWORD dwPathLoss;
} RILPOSITIONINFOTDSCDMA, RILPOSITIONINFOTDSCDMA;
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 RILPOSITIONINFOTDSCDMA.
dwParamsA bitwise combination of RILPOSITIONINFOTDSCDMAPARAMMASK 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...268435455)).
dwUARFCNChannel number for serving cell (0...16383).
dwCellParameterIDCell parameter ID (0...127).
dwTimingAdvanceTiming Advance (0...1023), same value for all timeslots.
dwRSCPReceived signal code power of serving cell. Range (−128...−25) in units of 1dBm in Q8 L3 filtered.
dwPathLossPath loss of serving cell (46...158).
struct RILPOSITIONINFOTDSCDMA {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwUARFCN;
DWORD dwCellParameterID;
DWORD dwTimingAdvance;
LONG dwRSCP;
DWORD dwPathLoss;
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
dwParamsdwMobileCountryCodedwMobileNetworkCodedwLocationAreaCodedwCellIDdwUARFCNdwCellParameterIDdwTimingAdvancedwRSCPdwPathLosstypedef struct _RILPOSITIONINFOTDSCDMA {
DWORD dwParams;
DWORD dwMobileCountryCode;
DWORD dwMobileNetworkCode;
DWORD dwLocationAreaCode;
DWORD dwCellID;
DWORD dwUARFCN;
DWORD dwCellParameterID;
DWORD dwTimingAdvance;
DWORD dwRSCP;
DWORD dwPathLoss;
} RILPOSITIONINFOTDSCDMA, RILPOSITIONINFOTDSCDMA;