networkingtestandutils/networkingunittest/tdummyetel/etelmmerr.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 // Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // \file etelmmerr.h
       
    15 // Multimode ETel API v1.0
       
    16 // Header file contains extended error code constants for Multimode network & phone errors
       
    17 // 
       
    18 //
       
    19 
       
    20 #ifndef __ETELMMERR_H__
       
    21 #define __ETELMMERR_H__
       
    22 
       
    23 /**
       
    24 @internalComponent
       
    25 */
       
    26 const TInt KErrEtelMMBase = -3200;
       
    27 
       
    28 /**
       
    29 Multimode specific errors that will be generated by TSY
       
    30 @internalComponent
       
    31 */
       
    32 const TInt KErrMMEtelWrongMode = KErrEtelMMBase-1;
       
    33 const TInt KErrMMEtelFailedDueToModeChange = KErrEtelMMBase-2;
       
    34 const TInt KErrMMEtelRemoteEndTermination = KErrEtelMMBase-3;
       
    35 const TInt KErrMMEtelSmsFormatNotSupported = KErrEtelMMBase-4;
       
    36 const TInt KErrMMEtelFeatureCodeNotSet = KErrEtelMMBase-5;
       
    37 const TInt KErrMMEtelNetworkNotResponding = KErrEtelMMBase-6;
       
    38 const TInt KErrMMEtelCallForbidden = KErrEtelMMBase-7;
       
    39 
       
    40 #endif
       
    41