equal
deleted
inserted
replaced
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
1 // Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies). |
2 // All rights reserved. |
2 // All rights reserved. |
3 // This component and the accompanying materials are made available |
3 // This component and the accompanying materials are made available |
4 // under the terms of "Eclipse Public License v1.0" |
4 // under the terms of "Eclipse Public License v1.0" |
5 // which accompanies this distribution, and is available |
5 // which accompanies this distribution, and is available |
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
16 // |
16 // |
17 |
17 |
18 #ifndef __LOGREPDEFS_H__ |
18 #ifndef __LOGREPDEFS_H__ |
19 #define __LOGREPDEFS_H__ |
19 #define __LOGREPDEFS_H__ |
20 |
20 |
|
21 #include "logcntdef.h" |
|
22 |
21 const TUid KUidLogengRepository = { 0x101f401d }; //The repository for Log engine |
23 const TUid KUidLogengRepository = { 0x101f401d }; //The repository for Log engine |
22 const TInt KMaxLogSizeRepKey = 1; |
24 const TInt KMaxLogSizeRepKey = 1; |
23 const TInt KMaxRecentLogSizeRepKey = 2; |
25 const TInt KMaxRecentLogSizeRepKey = 2; |
24 const TInt KMaxEventAgeRepKey = 3; |
26 const TInt KMaxEventAgeRepKey = 3; |
25 const TInt KContactMatchCountRepKey = 4; |
27 const TInt KContactMatchCountRepKey = 4; |
26 const TInt KContactNameFormatRepKey = 5; |
28 const TInt KContactNameFormatRepKey = 5; |
27 |
29 |
|
30 /** |
|
31 Default contact matching digits count. |
|
32 If the LogEng repository cannot be open, this is the value which will be used by the LogEng server. |
|
33 @internalAll |
|
34 */ |
|
35 const TInt KLogContactMatchCount = 7; |
|
36 |
|
37 /** |
|
38 Default contact name format. |
|
39 If the LogEng repository cannot be open, this is the value which will be used by the LogEng server. |
|
40 @internalAll |
|
41 */ |
|
42 const TLogContactNameFormat KLogContactNameFormat = ELogWesternFormat; |
|
43 |
28 #endif |
44 #endif |