|
1 /* |
|
2 * Copyright (c) 2007-2007 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 "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 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef VOIPEVENTLOGCONSTANTS_H |
|
20 #define VOIPEVENTLOGCONSTANTS_H |
|
21 |
|
22 const TUid KCRUidVoIPEventLog = { 0x2000B608 }; |
|
23 |
|
24 _LIT( KVoIPEventLogSemaphore, "VoIPEventLogSemaphore" ); |
|
25 _LIT(KVoIPTimeStampFormat,"%F%D/%M/%Y %H:%T:%S"); |
|
26 |
|
27 const TInt KVELErrorCountKey = 0x00000000; |
|
28 const TInt KVELLatestErrorIndexKey = 0x00000001; |
|
29 const TInt KVELMaxErrorCountKey = 0x00000002; |
|
30 |
|
31 const TInt KTimeStampStrLen = 19; |
|
32 const TUint32 KColumnIncrement = 0x00010000; |
|
33 const TUint32 KColumnMask = 0xFFFF0000; |
|
34 |
|
35 /** First key in column of error code. */ |
|
36 const TUint32 KSPColumnErrorCode = 0x00010001; // --> 0x00020000 |
|
37 |
|
38 /** First key in column of error text. */ |
|
39 const TUint32 KSPColumnErrorText = 0x00020001; // --> 0x00030000 |
|
40 |
|
41 /** First key in column of time stamp. */ |
|
42 const TUint32 KSPColumnTimeStamp = 0x00030001; // --> 0x00040000 |
|
43 |
|
44 #endif // VOIPEVENTLOGCONSTANTS_H |