inc/PEngPresenceEngineErrors2.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2004 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:  Presence Engine specific error codes.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __PENGPRESENCEENGINEERRORS2_H
       
    19 #define __PENGPRESENCEENGINEERRORS2_H
       
    20 
       
    21 
       
    22 
       
    23 /**
       
    24  * Presence Engine specific error codes.
       
    25  *
       
    26  * Error codes returned from Presence Engine are either:
       
    27  * 1) System wide Symbian OS error codes (KErrNoMemory etc.)
       
    28  * 2) Presence Engine specific error codes defined here.
       
    29  *    These error codes have range: KPEngErrorBase ... KPEngErrorLow.
       
    30  * 3) Wireless Village CSP protocol error codes.
       
    31  *    Those are defined in PEngWVPresenceErrors.h
       
    32  *
       
    33  * @since 3.0
       
    34  */
       
    35 enum	// CSI: 28 #
       
    36     {
       
    37     KPEngErrorBase = -30131,
       
    38 
       
    39     KPEngNWPresenceSessionTerminated = KPEngErrorBase,
       
    40 
       
    41     KPEngErrorLow = -30150
       
    42     };
       
    43 
       
    44 
       
    45 
       
    46 #endif // __PENGPRESENCEENGINEERRORS2_H
       
    47 
       
    48 //  End of File
       
    49 
       
    50 
       
    51