diff -r 89d6a7a84779 -r 25a17d01db0c Symbian3/PDK/Source/GUID-CC6A9EE8-C8C0-54C4-A885-FC88EA14F18A.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/PDK/Source/GUID-CC6A9EE8-C8C0-54C4-A885-FC88EA14F18A.dita Fri Jan 22 18:26:19 2010 +0000 @@ -0,0 +1,21 @@ + + + + + +Phone Modes TutorialThis section describes how to retrieve the phone modes supported by multimode phone sub-session. The modes are the different air-interfaces in the mobile networks.

The function should return the modes supported by the device.

Phone mode example

The following code checks if the phone supports both GSM and CDMA (IS-95).The code assumes iMobilePhone is an RMobilePhone object.

TUint32 modes; +User::LeaveIfError(iMobilePhone.GetMultimodeCaps(modes)); +if ( (modes & RMobilePhone::KCapsGsmSupported) && + (modes & RMobilePhone::KCapsCdma95Supported) ) + { + + ... + + } +
\ No newline at end of file