nettools/conntest/inc/ConnTest.pan
changeset 0 857a3e953887
child 8 86091f1c2f4d
equal deleted inserted replaced
-1:000000000000 0:857a3e953887
       
     1 /*
       
     2 * Copyright (c) 2006 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: Defines the panics of the ConnTest
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __CONNTEST_PAN__
       
    19 #define __CONNTEST_PAN__
       
    20 
       
    21 #include <e32std.h>
       
    22 
       
    23 _LIT(KPanicConnTest, "ConnTest");
       
    24 _LIT(KPanicSocketsEngine, "SocketsEngine");
       
    25 _LIT(KPanicSocketsWrite, "SocketsWrite");
       
    26 
       
    27 /** ConnTest application panic codes */
       
    28 enum TConnTestPanics 
       
    29     {
       
    30     EConnTestBasicUi = 1,
       
    31     EConnTestBadStatus,
       
    32     EConnTestAppView,
       
    33 	EConnTestContainer,
       
    34 	EConnTestBadRoamingStatus
       
    35     // add further panics here
       
    36     };
       
    37 
       
    38 #endif // __CONNTEST_PAN__