featuremgmt/featuremgr/src/inc/featmgrconfiguration.h
changeset 0 08ec8eefde2f
child 23 26645d81f48d
equal deleted inserted replaced
-1:000000000000 0:08ec8eefde2f
       
     1 /*
       
     2 * Copyright (c) 2007-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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef FEATMGRCONFIGURATION_H
       
    21 #define FEATMGRCONFIGURATION_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 #include <e32uid.h>
       
    26 
       
    27 // CONSTANTS
       
    28 const TInt KServerVersionMajor          = 1; // UPDATE VERSION 
       
    29 const TInt KServerVersionMinor          = 0;
       
    30 const TInt KServerVersionBuild          = 0;
       
    31 const TInt KServerCActivePriority       = CActive::EPriorityUserInput;
       
    32 const TInt KDefaultFeatMgrTimer         = (10*1000*1000);
       
    33 #ifdef EXTENDED_FEATURE_MANAGER_TEST
       
    34 const TInt KShutdownTimeout				= 500000;
       
    35 const TInt KServerUid2Int               = 0x102836E5;
       
    36 #else
       
    37 const TInt KServerUid2Int               = 0x10205054;
       
    38 #endif // EXTENDED_FEATURE_MANAGER_TEST
       
    39 const TUid KServerUid2                  = { KServerUid2Int }; 
       
    40 
       
    41 const TInt KDefaultAsyncSlots           = 1; // Async message slots to be 
       
    42                                              // used in client server comms. 
       
    43 
       
    44 #ifdef EXTENDED_FEATURE_MANAGER_TEST
       
    45 _LIT( KServerProcessName, "!test_featmgrserver" );
       
    46 _LIT( KServerExeName, "test_featmgrserver.exe" );
       
    47 #ifdef __WINS__
       
    48 _LIT( KServerExeDrive, "Z:" );
       
    49 #else
       
    50 _LIT( KServerExeDrive, "C:" );
       
    51 #endif // _WINS
       
    52 #else
       
    53 _LIT( KServerProcessName, "!FeatMgrServer" );
       
    54 _LIT( KServerExeName, "FeatMgrServer.exe" );
       
    55 _LIT( KServerExeDrive, "Z:" );
       
    56 #endif // EXTENDED_FEATURE_MANAGER_TEST
       
    57 
       
    58 // MACROS
       
    59 // None
       
    60 
       
    61 // DATA TYPES
       
    62 // None
       
    63 
       
    64 // FUNCTION PROTOTYPES
       
    65 // None
       
    66 
       
    67 // FORWARD DECLARATIONS
       
    68 // None
       
    69 
       
    70 // CLASS DECLARATION
       
    71 // None
       
    72 
       
    73 #endif  // FEATMGRCONFIGURATION_H
       
    74             
       
    75 // End of File