equal
deleted
inserted
replaced
1 dclcrkeys.h |
1 /* |
|
2 * Copyright (c) 2004-2006 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 "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Contains Central Repository keys needed in logging GPRS/WLAN |
|
15 * counters. |
|
16 * |
|
17 */ |
|
18 |
|
19 #ifndef DCLCRKEYS_H |
|
20 #define DCLCRKEYS_H |
|
21 |
|
22 const TUid KCRUidDCLLogs = {0x101F4CD5}; |
|
23 |
|
24 // Amount of total sent bytes using GPRS. |
|
25 const TUint32 KLogsGPRSSentCounter = 0x0000000C; |
|
26 |
|
27 // Amount of total received bytes using GPRS. |
|
28 const TUint32 KLogsGPRSReceivedCounter = 0x0000000D; |
|
29 |
|
30 // Amount of total sent bytes using WLAN. |
|
31 const TUint32 KLogsWLANSentCounter = 0x00000014; |
|
32 |
|
33 // Amount of total received bytes using WLAN. |
|
34 const TUint32 KLogsWLANReceivedCounter = 0x00000015; |
|
35 |
|
36 #endif // DCLCRKEYS_H |
|
37 |
|
38 // End of File |