stif/TestEngine/inc/TestEngineCommon.h
branchRCL_3
changeset 59 8ad140f3dd41
equal deleted inserted replaced
49:7fdc9a71d314 59:8ad140f3dd41
       
     1 /*
       
     2 * Copyright (c) 2009 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: This file contains common data for Test Engine.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef TEST_ENGINE_COMMON_H
       
    19 #define TEST_ENGINE_COMMON_H
       
    20 
       
    21 //  INCLUDES
       
    22 #include <e32std.h>
       
    23 #include <e32base.h>
       
    24 
       
    25 // CONSTANTS
       
    26 // None
       
    27 
       
    28 // MACROS
       
    29 // None
       
    30 
       
    31 // DATA TYPES
       
    32 // None
       
    33 
       
    34 // FUNCTION PROTOTYPES
       
    35 // None
       
    36 
       
    37 // FORWARD DECLARATIONS
       
    38 // None
       
    39 
       
    40 // CLASS DECLARATION
       
    41 // None
       
    42 
       
    43 // DESCRIPTION
       
    44 
       
    45 // Server name
       
    46 _LIT(KTestEngineName,"TestFrameworkEngine");
       
    47 
       
    48 // The server version.
       
    49 // A version must be specified when creating a session with the server.
       
    50 const TUint KTestEngineMajorVersionNumber = 0;
       
    51 const TUint KTestEngineMinorVersionNumber = 2;
       
    52 const TUint KTestEngineBuildVersionNumber = 1;
       
    53 
       
    54 // Function for starting the TestEngineServer
       
    55 IMPORT_C TInt StartEngine();
       
    56 
       
    57 #endif // TEST_ENGINE_COMMON_H
       
    58 
       
    59 // End of File