|
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 "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: Telephony internal Central Repository keys |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef TELINTERNALCRKEYS_H |
|
20 #define TELINTERNALCRKEYS_H |
|
21 |
|
22 #include <e32std.h> |
|
23 |
|
24 /****************************************************************************** |
|
25 * Telephony Variation API |
|
26 * Keys under this category are used in defining telephony variation. |
|
27 ******************************************************************************/ |
|
28 const TUid KCRUidTelVariation = {0x102828F8}; |
|
29 |
|
30 /** |
|
31 * Telephony Local Variation Flags. Values are defined in TelephonyVariant.hrh. |
|
32 */ |
|
33 const TUint32 KTelVariationFlags = 0x00000001; |
|
34 |
|
35 /** |
|
36 * Contains a space separated list of product specific contact stores. |
|
37 * Can be empty, contain 1 or more stores. |
|
38 * Varies in different product variants. |
|
39 * Exact match search strategy is applied to the additional stores, if match |
|
40 * is not found from additional stores default stores are checked. |
|
41 */ |
|
42 const TUint32 KTelAdditionalStores = 0x00000002; |
|
43 |
|
44 /** |
|
45 * Timeout of VoIP service enabling |
|
46 * if enabling time is longer than this value, |
|
47 * cancel the enabling |
|
48 */ |
|
49 const TUint32 KTelEnableTimeOut = 0x00000003; |
|
50 |
|
51 |
|
52 #endif // TELEPHONYINTERNALCRKEYS_H |
|
53 |
|
54 // End of file |