realtimenetprots/sipfw/SIP/Client/inc/sipclient.pan
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 // Copyright (c) 2002-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 //
       
    15 
       
    16 #ifndef __SIPCLIENT_PAN__
       
    17 #define __SIPCLIENT_PAN__
       
    18 
       
    19 #include <e32std.h>
       
    20 
       
    21 /**
       
    22  * SIP Client panics
       
    23  */
       
    24 
       
    25 /**
       
    26  * Constant literal description
       
    27  */
       
    28 
       
    29 _LIT(KSipClient, "SipClient");
       
    30 
       
    31 /** SIP application panic codes */
       
    32 enum TSipClientPanics 
       
    33     {
       
    34 	/** Function preconditions was not met */
       
    35     ESipClientPreCondNotMet,
       
    36 	/** Function postconditions was not met */
       
    37     ESipClientPostCondNotMet,
       
    38 	/** The user has not successfully connected to sip C/S-server */
       
    39     ESipClientNotConnected,
       
    40 	/** The user has not cancelled an outstanding receive before closing */
       
    41     ESipReceiveNotCancelled
       
    42     // add further panics here
       
    43     };
       
    44 
       
    45 #endif // SIPCLIENT_PAN