multimediacommsengine/mmcesrv/mmceevent/inc/mcecomeventconstants.h
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2005 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:    Constants needed by SSC Server
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 #ifndef CMCECOMEVENTCONSTANTS_H
       
    23 #define CMCECOMEVENTCONSTANTS_H
       
    24 
       
    25 // CONSTANTS
       
    26 const TInt KMceSrvEventStateArraySize = 5;
       
    27 typedef TInt TMceEventStateIndex;
       
    28 
       
    29 // State indices. The order is like this, because
       
    30 // they are created in this order.
       
    31 const TMceEventStateIndex KMceIdleEventStateIndex = 2;
       
    32 const TMceEventStateIndex KMceEstablishingEventStateIndex = 3;
       
    33 const TMceEventStateIndex KMceEstablishedEventStateIndex = 4;
       
    34 const TMceEventStateIndex KMceTerminatingEventStateIndex = 0;
       
    35 const TMceEventStateIndex KMceTerminatedEventStateIndex = 1;
       
    36 
       
    37 const TInt KMceEventStateError = KErrTotalLossOfPrecision;
       
    38 
       
    39 #endif      // CMCECOMEVENTCONSTANTS_H   
       
    40             
       
    41 // End of File
       
    42 
       
    43 
       
    44 
       
    45