sl@0: /* sl@0: * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef FEATMGRCONFIGURATION_H sl@0: #define FEATMGRCONFIGURATION_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include sl@0: sl@0: // CONSTANTS sl@0: const TInt KServerVersionMajor = 1; // UPDATE VERSION sl@0: const TInt KServerVersionMinor = 0; sl@0: const TInt KServerVersionBuild = 0; sl@0: const TInt KServerCActivePriority = CActive::EPriorityUserInput; sl@0: const TInt KDefaultFeatMgrTimer = (10*1000*1000); sl@0: #ifdef EXTENDED_FEATURE_MANAGER_TEST sl@0: const TInt KShutdownTimeout = 500000; sl@0: const TInt KServerUid2Int = 0x10205054; sl@0: #else sl@0: const TInt KServerUid2Int = 0x10205054; sl@0: #endif // EXTENDED_FEATURE_MANAGER_TEST sl@0: const TUid KServerUid2 = { KServerUid2Int }; sl@0: sl@0: const TInt KDefaultAsyncSlots = 1; // Async message slots to be sl@0: // used in client server comms. sl@0: sl@0: #ifdef EXTENDED_FEATURE_MANAGER_TEST sl@0: _LIT( KServerProcessName, "!test_featmgrserver" ); sl@0: _LIT( KServerExeName, "test_featmgrserver.exe" ); sl@0: #ifdef __WINS__ sl@0: _LIT( KServerExeDrive, "Z:" ); sl@0: #else sl@0: _LIT( KServerExeDrive, "C:" ); sl@0: #endif // _WINS sl@0: #else sl@0: _LIT( KServerProcessName, "!FeatMgrServer" ); sl@0: _LIT( KServerExeName, "FeatMgrServer.exe" ); sl@0: _LIT( KServerExeDrive, "Z:" ); sl@0: #endif // EXTENDED_FEATURE_MANAGER_TEST sl@0: sl@0: // MACROS sl@0: // None sl@0: sl@0: // DATA TYPES sl@0: // None sl@0: sl@0: // FUNCTION PROTOTYPES sl@0: // None sl@0: sl@0: // FORWARD DECLARATIONS sl@0: // None sl@0: sl@0: // CLASS DECLARATION sl@0: // None sl@0: sl@0: #endif // FEATMGRCONFIGURATION_H sl@0: sl@0: // End of File