diff -r 000000000000 -r dfb7c4ff071f datacommsserver/networkcontroller/inc/NetConErr.ra --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/datacommsserver/networkcontroller/inc/NetConErr.ra Thu Dec 17 09:22:25 2009 +0200 @@ -0,0 +1,70 @@ +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#include + +/* +const TInt KNetConErrorBase = -3600; +const TInt KErrNetConDatabaseDefaultUndefined = KNetConErrorBase - 6; +const TInt KErrNetConDatabaseTypeUnknown = KNetConErrorBase - 7; +const TInt KErrNetConDatabaseNotFound = KNetConErrorBase - 8; +const TInt KErrNetConNoGPRSNetwork = KNetConErrorBase -9; +const TInt KErrNetConIncorrectMSClass = KNetConErrorBase -10; +const TInt KErrNetConInadequateSignalStrengh = KNetConErrorBase -11; +const TInt KErrNetConStateMachineNotAvailable = KNetConErrorBase -12; +*/ + +RESOURCE ARRAY r_error_net_con_errors + { + items= + { + SINGLE_ERROR + { + text=r_error_netcon_database_default_undefined; // -3606 + }, + SINGLE_ERROR + { + text=r_error_netcon_database_type_unknown; // -3607 + }, + SINGLE_ERROR + { + text=r_error_netcon_database_not_found; // -3608 + }, + SINGLE_ERROR + { + text=r_error_netcon_no_packet_network; // -3609 + }, + SINGLE_ERROR + { + text=r_error_netcon_incorrect_msclass; // -3610 + }, + SINGLE_ERROR + { + text=r_error_netcon_inadequate_signal_strength; // -3611 + }, + SINGLE_ERROR + { + text=r_error_netcon_statemachine_not_available; // -3612 + } + }; + } + +RESOURCE TBUF r_error_netcon_database_default_undefined { buf=STRING_r_error_netcon_database_default_undefined; } +RESOURCE TBUF r_error_netcon_database_type_unknown { buf=STRING_r_error_netcon_database_type_unknown ; } +RESOURCE TBUF r_error_netcon_database_not_found { buf=STRING_r_error_netcon_database_not_found ; } +RESOURCE TBUF r_error_netcon_no_packet_network { buf=STRING_r_error_netcon_no_packet_network ; } +RESOURCE TBUF r_error_netcon_incorrect_msclass { buf=STRING_r_error_netcon_incorrect_msclass ; } +RESOURCE TBUF r_error_netcon_inadequate_signal_strength { buf=STRING_r_error_netcon_inadequate_signal_strength; } +RESOURCE TBUF r_error_netcon_statemachine_not_available { buf=STRING_r_error_netcon_statemachine_not_available; }