|
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 store information resource |
|
15 * : definition structures. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef PBK2STOREINFO_RH |
|
21 #define PBK2STOREINFO_RH |
|
22 |
|
23 /** |
|
24 * Store information item. |
|
25 */ |
|
26 STRUCT PHONEBOOK2_STORE_INFO_ITEM |
|
27 { |
|
28 /// The type that tells what kind of information is related to this item |
|
29 /// @see Pbk2StoreInfo.hrh |
|
30 LONG itemType; |
|
31 |
|
32 /// The singular heading text for the item |
|
33 LTEXT itemTextSingular = ""; |
|
34 |
|
35 /// The plural heading text for the item |
|
36 LTEXT itemTextPlural = ""; |
|
37 |
|
38 /// Type of the informative text |
|
39 /// @see TPbk2StoreInfoItemTextType |
|
40 BYTE textType; |
|
41 |
|
42 /// Flags |
|
43 /// @see Pbk2StoreInfo.hrh |
|
44 LONG flags = 0; |
|
45 } |
|
46 |
|
47 /** |
|
48 * Store information item array. |
|
49 */ |
|
50 STRUCT PHONEBOOK2_STORE_INFO_ITEM_ARRAY |
|
51 { |
|
52 /// Array of PHONEBOOK2_STORE_INFO_ITEMs |
|
53 /// @see PHONEBOOK2_STORE_INFO_ITEM |
|
54 STRUCT items[]; |
|
55 } |
|
56 |
|
57 #endif // PBK2STOREINFO_RH |
|
58 |
|
59 // End of File |