os/persistentdata/featuremgmt/featuremgr/src/inc/featmgrconfiguration.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef FEATMGRCONFIGURATION_H
sl@0
    21
#define FEATMGRCONFIGURATION_H
sl@0
    22
sl@0
    23
//  INCLUDES
sl@0
    24
#include <e32base.h>
sl@0
    25
#include <e32uid.h>
sl@0
    26
sl@0
    27
// CONSTANTS
sl@0
    28
const TInt KServerVersionMajor          = 1; // UPDATE VERSION 
sl@0
    29
const TInt KServerVersionMinor          = 0;
sl@0
    30
const TInt KServerVersionBuild          = 0;
sl@0
    31
const TInt KServerCActivePriority       = CActive::EPriorityUserInput;
sl@0
    32
const TInt KDefaultFeatMgrTimer         = (10*1000*1000);
sl@0
    33
#ifdef EXTENDED_FEATURE_MANAGER_TEST
sl@0
    34
const TInt KShutdownTimeout				= 500000;
sl@0
    35
const TInt KServerUid2Int               = 0x10205054;
sl@0
    36
#else
sl@0
    37
const TInt KServerUid2Int               = 0x10205054;
sl@0
    38
#endif // EXTENDED_FEATURE_MANAGER_TEST
sl@0
    39
const TUid KServerUid2                  = { KServerUid2Int }; 
sl@0
    40
sl@0
    41
const TInt KDefaultAsyncSlots           = 1; // Async message slots to be 
sl@0
    42
                                             // used in client server comms. 
sl@0
    43
sl@0
    44
#ifdef EXTENDED_FEATURE_MANAGER_TEST
sl@0
    45
_LIT( KServerProcessName, "!test_featmgrserver" );
sl@0
    46
_LIT( KServerExeName, "test_featmgrserver.exe" );
sl@0
    47
#ifdef __WINS__
sl@0
    48
_LIT( KServerExeDrive, "Z:" );
sl@0
    49
#else
sl@0
    50
_LIT( KServerExeDrive, "C:" );
sl@0
    51
#endif // _WINS
sl@0
    52
#else
sl@0
    53
_LIT( KServerProcessName, "!FeatMgrServer" );
sl@0
    54
_LIT( KServerExeName, "FeatMgrServer.exe" );
sl@0
    55
_LIT( KServerExeDrive, "Z:" );
sl@0
    56
#endif // EXTENDED_FEATURE_MANAGER_TEST
sl@0
    57
sl@0
    58
// MACROS
sl@0
    59
// None
sl@0
    60
sl@0
    61
// DATA TYPES
sl@0
    62
// None
sl@0
    63
sl@0
    64
// FUNCTION PROTOTYPES
sl@0
    65
// None
sl@0
    66
sl@0
    67
// FORWARD DECLARATIONS
sl@0
    68
// None
sl@0
    69
sl@0
    70
// CLASS DECLARATION
sl@0
    71
// None
sl@0
    72
sl@0
    73
#endif  // FEATMGRCONFIGURATION_H
sl@0
    74
            
sl@0
    75
// End of File