testexecfw/stf/stffw/eventsystem/server/inc/stfeventsystemerrorcodes.h
changeset 2 8bb370ba6d1d
equal deleted inserted replaced
1:bbd31066657e 2:8bb370ba6d1d
       
     1 /*
       
     2 * Copyright (c) 2010 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 *
       
    16 */
       
    17 #ifndef STFEVENTSYSTEMERRORCODES_H_
       
    18 #define STFEVENTSYSTEMERRORCODES_H_
       
    19 
       
    20     enum TEventSystemErrorCodes
       
    21         {
       
    22         EInvalidSessionCounter               = -1101,
       
    23         EEventSystemVersionNotSupported      = -1102,
       
    24         EEventSystemSessionUnknownMessage    = -1103,
       
    25         EEventSystemSessionAlreadyWaiting    = -1104, //Session is already waiting for event and can't wait for another
       
    26         EEventSystemListAlreadySet           = -1105,
       
    27         EEventSystemNameAlreadySet           = -1106,
       
    28         EEventSystemNotInRequestedState      = -1007, //Want to wait for event which is not in requested state
       
    29         EEventSystemSessionNotDefined        = -1008,
       
    30         EEventSystemNotRequested             = -1009, //Event was not requested
       
    31         };
       
    32 
       
    33 
       
    34 #endif /* STFEVENTSYSTEMERRORCODES_H_ */