2,851
社区成员




{
int nError;
AEETSSInfo sTSSInfo;
MEMSET(&sTSSInfo, 0, sizeof(sTSSInfo));
nError = ITELEPHONE_GetServingSystemInfo(pITelephone, &sTSSInfo, sizeof(sTSSInfo));
if (SUCCESS == nError)
{
// sTSSInfo.sys_id.id.is95.sid and sTSSInfo.sys_id.id.is95.nid respectively
// represents SID and NID of the selected network
…
}
else
{
…
}
}