linklayercontrol/networkinterfacemgr/inc/AgentErrors.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 /**
       
     2 * Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * Agent external errors and error strings
       
    16 * 
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 /**
       
    23  @file AGENTERRORS.H
       
    24  @internalComponent
       
    25 */
       
    26 
       
    27 
       
    28 
       
    29 #if !defined (__AGENTERRORS_H__)
       
    30 #define __AGENTERRORS_H__
       
    31 
       
    32 /**
       
    33 Agent Errors
       
    34 @internalComponent
       
    35 */
       
    36 const TInt KAgentErrorBase = -3600;
       
    37 const TInt KErrAgentDatabaseDefaultUndefined = KAgentErrorBase - 6;
       
    38 const TInt KErrAgentDatabaseTypeUnknown = KAgentErrorBase - 7;
       
    39 const TInt KErrAgentDatabaseNotFound = KAgentErrorBase - 8;
       
    40 const TInt KErrAgentNoGPRSNetwork = KAgentErrorBase -9;
       
    41 const TInt KErrAgentIncorrectMSClass = KAgentErrorBase -10;
       
    42 const TInt KErrAgentInadequateSignalStrengh = KAgentErrorBase -11;
       
    43 const TInt KErrAgentStateMachineNotAvailable = KAgentErrorBase -12;
       
    44 
       
    45 // Define Error code for when an interface needs to indicate that it's configuration might change
       
    46 const TInt KErrLinkConfigChanged = -3060;
       
    47 
       
    48 #endif // #ifndef __AGENTERRORS_H__
       
    49