|
|
User login
Feeds |
How to get IMEI number in s60 3rd edition
|
|||||
| Wed, 2007-05-16 08:44 | |
|
Hi all
I am using below code for getting the IMEI number in series 60 2nd edition. What is the method to get the same for s60 3rd edition handsets. #include <plpvariant.h> void DeviceUtils::GetImei(TDes& aImei) { #ifndef __WINS__ // This only works on target machine TPlpVariantMachineId imei; PlpVariant::GetMachineIdL(imei); aImei.Copy(imei); #else // Return a fake IMEI when working on emulator _LIT(KEmulatorImei, "000000000000000"); aImei.Copy(KEmulatorImei); #endif } Thanks Ravi |
|
Forum posts: 24
Forum posts: 24
http://wiki.forum.nokia.com/index.php/Reading_IMEI_in_3rd_edition_-Synchronously
I havent tried any of these examples but i feel it should work....
Symbian Develpoer
Forum posts: 10
Thanks
Ravi