This tutorial describes how to get and set the WCDMA multicall service settings.
The Multicall service is a 3G-WCDMA service that allows the user to set up multiple simultaneous circuit-switched calls.
The following code gets the maximum number of simultaneous bearers allowed by the service provider.
TInt CClientApp::ServiceProviderMaxBearersL() { RMobilePhone::TMobilePhoneMulticallSettingsV1 multicallSettings; RMobilePhone::TMobilePhoneMulticallSettingsV1Pckg multicallSettingsPckg(multicallSettings); TRequestStatus status; iMobilePhone.GetMulticallParams(status,multicallSettingsPckg); User::WaitForRequest(status); User::LeaveIfError(status.Int()); return multicallSettings.iServiceProviderMaxBearers; }
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.