This page was last modified 07:15, 6 January 2008.
Retrieving Phone's Manufacturer ,Model & IMEI number in Symbian
From Forum Nokia Wiki
/* pointer to the telephony*/ CTelephony* iTel; /* For holding information */ CTelephony:: TPhoneIdV1Pckg iInfoPkg; CTelephony:: TPhoneIdV1 iInfo; //Async request for retrieving phone information iTel=CTelephony::NewL(); iTel->GetPhoneId(iStatus,iInfoPkg); SetActive(); void CPhoneInfo :: RunL() { switch(iStatus.Int()) { case KErrNone: { //All information recieved TBuf<CTelephony::KPhoneManufacturerIdSize + CTelephony::KPhoneModelIdSize + CTelephony::KPhoneSerialNumberSize> phoneInfo; phoneInfo.Copy(iInfo.iManufacturer); phoneInfo.Append(iInfo.iModel); phoneInfo.Append(iInfo.iSerialNumber); } break; default: { //Return error } break; } }
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to know capabilities and IMEIs supported by a developer certificate ! | navjotsingh1979 | General Symbian C++ | 2 | 2006-09-21 05:23 |
| c++ and J2ME-RecordStores | katoo74 | Mobile Java General | 1 | 2005-02-28 18:16 |
| application opens by flag status! | symbee | Porting Symbian C++ to S60 | 2 | 2006-11-06 09:59 |
| IMEI no and read incoming sms from inbox ?? | Neelakantan | Mobile Java Networking & Messaging & Security | 4 | 2007-07-20 08:59 |
| Hi, How I could I get the Serial No. | adem77 | Mobile Java Media (Graphics & Sounds) | 3 | 2005-09-04 16:03 |
