20
|
1 |
/*
|
|
2 |
* Copyright (c) 2005-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: Phonebook 2 internal central repository keys.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef PHONEBOOK2INTERNALCRKEYS_H
|
|
20 |
#define PHONEBOOK2INTERNALCRKEYS_H
|
|
21 |
|
|
22 |
// --------------------------------------------------------------------------
|
|
23 |
// Phonebook Central Repository UIDs
|
|
24 |
// --------------------------------------------------------------------------
|
|
25 |
//
|
|
26 |
const TUint32 KCRUidPhonebookInternalConfig = 0x101f884a;
|
|
27 |
// value redefined and used also in CVPbkPhoneNumberMatchStrategy.cpp
|
|
28 |
const TUint32 KCRUidPhonebookStoreConfiguration = 0x1020727f;
|
|
29 |
|
|
30 |
// --------------------------------------------------------------------------
|
|
31 |
// Phonebook Internal Configuration API
|
|
32 |
// --------------------------------------------------------------------------
|
|
33 |
//
|
|
34 |
const TUint32 KPhonebookNumberEditorMaxLength = 0x00000001;
|
|
35 |
const TUint32 KPhonebookContactRelocationPolicy = 0x00000002;
|
|
36 |
|
|
37 |
// --------------------------------------------------------------------------
|
|
38 |
// Phonebook 2 Store Configuration API
|
|
39 |
// --------------------------------------------------------------------------
|
|
40 |
//
|
|
41 |
const TUint32 KPhonebookDefaultSavingStoreUri = 0x00000001;
|
|
42 |
|
|
43 |
/// Current configuration key range 0x00000100 to 0x000001ff
|
|
44 |
const TUint32 KPhonebookCurrentConfigurationFirstKey = 0x00000100;
|
|
45 |
const TUint32 KPhonebookCurrentConfigurationLastKey = 0x000001ff;
|
|
46 |
// value redefined and used also in CVPbkPhoneNumberMatchStrategy.cpp
|
|
47 |
const TUint32 KPhonebookCurrentConfigurationPartialKey = 0x00000100;
|
|
48 |
// value redefined and used also in CVPbkPhoneNumberMatchStrategy.cpp
|
|
49 |
const TUint32 KPhonebookCurrentConfigurationMask = 0xffffff00;
|
|
50 |
|
|
51 |
/// Possible configuration key range 0x00000200 to 0x000002ff
|
|
52 |
const TUint32 KPhonebookSupportedConfigurationFirstKey = 0x00000200;
|
|
53 |
const TUint32 KPhonebookSupportedConfigurationLastKey = 0x000002ff;
|
|
54 |
const TUint32 KPhonebookSupportedConfigurationPartialKey = 0x00000200;
|
|
55 |
const TUint32 KPhonebookSupportedConfigurationMask = 0xffffff00;
|
|
56 |
|
|
57 |
#endif // PHONEBOOK2INTERNALCRKEYS_H
|
|
58 |
|
|
59 |
// End of File
|