|
1 /* |
|
2 * Copyright (c) 2004 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 the License "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 * Internal constants / macros for Favourites Engine. |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef FAVOURITES_DEF_H |
|
22 #define FAVOURITES_DEF_H |
|
23 |
|
24 // INCLUDES |
|
25 |
|
26 #include <e32std.h> |
|
27 |
|
28 // MACROS |
|
29 |
|
30 |
|
31 // CONSTANTS |
|
32 |
|
33 /// Favourites Engine UID. |
|
34 LOCAL_D const TUid KFavouritesUid = { 0x10008D38 }; |
|
35 /// Favourites Engine Server name. |
|
36 _LIT( KFavouritesSrvName, "!FAVENGSRV" ); |
|
37 /// Favourites Engine Server executable. |
|
38 _LIT( KFavouritesSrvExe, "FavouritesSrv" ); |
|
39 /// Exit delay in microseconds (10 sec). |
|
40 LOCAL_D const TInt KFavouritesSrvExitDelay = 10000000; |
|
41 |
|
42 #if defined(__MYSERVER_NO_PROCESSES__) |
|
43 /// Favourites Engine Server stack size. 12k. |
|
44 LOCAL_D const TInt KFavouritesSrvStackSize=0x3000; |
|
45 /// Favourites Engine Server minimum heap size. 4k. |
|
46 LOCAL_D const TInt KFavouritesSrvMinHeapSize=0x1000; |
|
47 /// Favourites Engine Server maximum heap size. 4M. |
|
48 LOCAL_D const TInt KFavouritesSrvMaxHeapSize=0x400000; |
|
49 #endif |
|
50 |
|
51 #endif |
|
52 |
|
53 // End of File |