backsteppingsrv/inc/bsengineglobals.h
changeset 0 79c6a41cd166
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     1 /*
       
     2 * Copyright (c) 2007 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:  Globals for BS engine
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_BSENGINEGLOBALS_H
       
    20 #define C_BSENGINEGLOBALS_H
       
    21 
       
    22 // CONSTANTS
       
    23 const TUint KBSEngineMajorVersionNumber = 0;
       
    24 const TUint KBSEngineMinorVersionNumber = 1;
       
    25 const TUint KBSEngineBuildVersionNumber = 1;
       
    26 
       
    27 _LIT( KBSEngineThreadName, "bsengine" );
       
    28 _LIT( KBSEngineName, "bsengine" );
       
    29 _LIT( KBSEngineFilename, "bsengine" );
       
    30 
       
    31 const TUid KServerUid3 =
       
    32     {
       
    33     0x2000F83E
       
    34     };
       
    35 
       
    36 // ENUMERATIONS
       
    37 // Opcodes used in message passing between client and server
       
    38 enum TBSEngineRqst
       
    39     {
       
    40     EBSEngineInitialize = 100,
       
    41     EBSEngineHandleActivationEvent = 101,
       
    42     EBSEngineHandleBackCommand = 102
       
    43     };
       
    44 
       
    45 enum TBSEngineRsp
       
    46     {
       
    47     EBSEngineCommandWasNotConsumed,
       
    48     EBSEngineCommandWasConsumed
       
    49     };
       
    50 
       
    51 #endif      // C_BSENGINEGLOBALS_H
       
    52 // End of File