author | Pat Downey <patd@symbian.org> |
Wed, 01 Sep 2010 12:28:47 +0100 | |
branch | RCL_3 |
changeset 45 | a9c0808a1095 |
parent 10 | fc9cf246af83 |
permissions | -rw-r--r-- |
5 | 1 |
/* |
2 |
* Copyright (c) 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 the License "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: Command definitions for contactservice. |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
||
19 |
#ifndef C_CONTACTSERVICE_HRH |
|
20 |
#define C_CONTACTSERVICE_HRH |
|
21 |
||
22 |
// vCard command definitions |
|
23 |
// |
|
24 |
enum TvCardExIds |
|
25 |
{ |
|
26 |
EImportVCard = 0x6000, |
|
27 |
EExportVCard, |
|
28 |
EImportCompactBCard |
|
29 |
}; |
|
30 |
||
31 |
enum Ttype |
|
32 |
{ |
|
33 |
EContacts = 0, |
|
34 |
EGroups, |
|
35 |
EDatabase, |
|
36 |
EOthers |
|
37 |
}; |
|
38 |
||
39 |
enum TOrder |
|
40 |
{ |
|
41 |
ENULL = 0, |
|
42 |
EAsc, |
|
43 |
EDesc |
|
44 |
}; |
|
45 |
||
46 |
enum TOperationEvent |
|
47 |
{ |
|
48 |
// Operation is completed |
|
49 |
EOpComplete, |
|
50 |
||
51 |
// Operation is canceled |
|
52 |
EOpCancel, |
|
53 |
//event for invalid key |
|
54 |
EInvalidKey, |
|
55 |
||
56 |
EOpError |
|
57 |
}; |
|
58 |
||
10
fc9cf246af83
Revision: 200931
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
5
diff
changeset
|
59 |
enum TCmdType |
fc9cf246af83
Revision: 200931
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
5
diff
changeset
|
60 |
{ |
fc9cf246af83
Revision: 200931
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
5
diff
changeset
|
61 |
EGetList, |
fc9cf246af83
Revision: 200931
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
5
diff
changeset
|
62 |
EGetIds |
fc9cf246af83
Revision: 200931
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
5
diff
changeset
|
63 |
}; |
5 | 64 |
#endif // C_CONTACTSERVICE_HRH |