os/persistentdata/featuremgmt/featuremgr/src/inc/featmgrconfiguration.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/src/inc/featmgrconfiguration.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,75 @@
     1.4 +/*
     1.5 +* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +#ifndef FEATMGRCONFIGURATION_H
    1.24 +#define FEATMGRCONFIGURATION_H
    1.25 +
    1.26 +//  INCLUDES
    1.27 +#include <e32base.h>
    1.28 +#include <e32uid.h>
    1.29 +
    1.30 +// CONSTANTS
    1.31 +const TInt KServerVersionMajor          = 1; // UPDATE VERSION 
    1.32 +const TInt KServerVersionMinor          = 0;
    1.33 +const TInt KServerVersionBuild          = 0;
    1.34 +const TInt KServerCActivePriority       = CActive::EPriorityUserInput;
    1.35 +const TInt KDefaultFeatMgrTimer         = (10*1000*1000);
    1.36 +#ifdef EXTENDED_FEATURE_MANAGER_TEST
    1.37 +const TInt KShutdownTimeout				= 500000;
    1.38 +const TInt KServerUid2Int               = 0x10205054;
    1.39 +#else
    1.40 +const TInt KServerUid2Int               = 0x10205054;
    1.41 +#endif // EXTENDED_FEATURE_MANAGER_TEST
    1.42 +const TUid KServerUid2                  = { KServerUid2Int }; 
    1.43 +
    1.44 +const TInt KDefaultAsyncSlots           = 1; // Async message slots to be 
    1.45 +                                             // used in client server comms. 
    1.46 +
    1.47 +#ifdef EXTENDED_FEATURE_MANAGER_TEST
    1.48 +_LIT( KServerProcessName, "!test_featmgrserver" );
    1.49 +_LIT( KServerExeName, "test_featmgrserver.exe" );
    1.50 +#ifdef __WINS__
    1.51 +_LIT( KServerExeDrive, "Z:" );
    1.52 +#else
    1.53 +_LIT( KServerExeDrive, "C:" );
    1.54 +#endif // _WINS
    1.55 +#else
    1.56 +_LIT( KServerProcessName, "!FeatMgrServer" );
    1.57 +_LIT( KServerExeName, "FeatMgrServer.exe" );
    1.58 +_LIT( KServerExeDrive, "Z:" );
    1.59 +#endif // EXTENDED_FEATURE_MANAGER_TEST
    1.60 +
    1.61 +// MACROS
    1.62 +// None
    1.63 +
    1.64 +// DATA TYPES
    1.65 +// None
    1.66 +
    1.67 +// FUNCTION PROTOTYPES
    1.68 +// None
    1.69 +
    1.70 +// FORWARD DECLARATIONS
    1.71 +// None
    1.72 +
    1.73 +// CLASS DECLARATION
    1.74 +// None
    1.75 +
    1.76 +#endif  // FEATMGRCONFIGURATION_H
    1.77 +            
    1.78 +// End of File