|
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #include "msgs.rls" |
|
17 #include "../inc/MSVSTD.HRH" |
|
18 |
|
19 // Flags - defined in TMsvEntry |
|
20 |
|
21 #define KMsvEntryLowPriority 0x0000 |
|
22 #define KMsvEntryMediumPriority 0x0001 |
|
23 #define KMsvEntryHighPriority 0x0002 |
|
24 |
|
25 //#define KMsvEntryStoreFlag 0x0004 // Not used |
|
26 #define KMsvEntryNotCompleteFlag 0x0008 // the netry is marked as incomplete |
|
27 #define KMsvEntryNewFlag 0x0010 |
|
28 #define KMsvEntryUnreadFlag 0x0020 |
|
29 #define KMsvEntryInvisibleFlag 0x0200 // will be invisible to the user |
|
30 #define KMsvEntryMultipleRecipientFlag 0x0400 |
|
31 //#define KMsvEntryFileFlag 0x0800 // Not used |
|
32 #define KMsvEntryReadOnlyFlag 0x1000 // the entry or store cannot be altered |
|
33 #define KMsvEntryStandardFolder 0x4000 // the entry will be place at beginning of a selection |
|
34 |
|
35 |
|
36 |
|
37 STRUCT SERVERENTRY |
|
38 { |
|
39 LONG id; |
|
40 LONG parent; |
|
41 LONG service=KMsvLocalServiceIndexEntryIdValue; |
|
42 LONG type; |
|
43 LONG mtm=KUidMsvLocalServiceMtmValue; |
|
44 LONG flags=KMsvEntryMediumPriority; |
|
45 LTEXT description=""; |
|
46 LTEXT details=""; |
|
47 } |
|
48 |
|
49 STRUCT SERVERSTARTUPINDEX |
|
50 { |
|
51 STRUCT entries[]; // must be SERVERENTRY's |
|
52 } |
|
53 |
|
54 RESOURCE SERVERSTARTUPINDEX r_server_index_startup |
|
55 { |
|
56 entries= |
|
57 { |
|
58 SERVERENTRY { id=KMsvLocalServiceIndexEntryIdValue; |
|
59 parent=KMsvRootIndexEntryIdValue; |
|
60 type=KUidMsvServiceEntryValue; |
|
61 flags=KMsvEntryReadOnlyFlag|KMsvEntryStandardFolder; |
|
62 details=STRING_r_server_index_startup1; }, |
|
63 SERVERENTRY { id=KMsvGlobalInBoxIndexEntryIdValue; |
|
64 parent=KMsvLocalServiceIndexEntryIdValue; |
|
65 type=KUidMsvFolderEntryValue; |
|
66 flags=KMsvEntryReadOnlyFlag|KMsvEntryStandardFolder; |
|
67 details=STRING_r_server_index_startup2; }, |
|
68 SERVERENTRY { id=KMsvGlobalOutBoxIndexEntryIdValue; |
|
69 parent=KMsvLocalServiceIndexEntryIdValue; |
|
70 type=KUidMsvFolderEntryValue; |
|
71 flags=KMsvEntryReadOnlyFlag|KMsvEntryStandardFolder; |
|
72 details=STRING_r_server_index_startup3; }, |
|
73 SERVERENTRY { id=KMsvDraftEntryIdValue; |
|
74 parent=KMsvLocalServiceIndexEntryIdValue; |
|
75 type=KUidMsvFolderEntryValue; |
|
76 flags=KMsvEntryReadOnlyFlag|KMsvEntryStandardFolder; |
|
77 details=STRING_r_server_index_startup4; }, |
|
78 SERVERENTRY { id=KMsvSentEntryIdValue; |
|
79 parent=KMsvLocalServiceIndexEntryIdValue; |
|
80 type=KUidMsvFolderEntryValue; |
|
81 flags=KMsvEntryReadOnlyFlag|KMsvEntryStandardFolder; |
|
82 details=STRING_r_server_index_startup5; }, |
|
83 SERVERENTRY { id=KMsvDeletedEntryFolderEntryIdValue; |
|
84 parent=KMsvLocalServiceIndexEntryIdValue; |
|
85 type=KUidMsvFolderEntryValue; |
|
86 flags=KMsvEntryReadOnlyFlag|KMsvEntryStandardFolder|KMsvEntryInvisibleFlag; |
|
87 details=STRING_r_server_index_startup6; } |
|
88 }; |
|
89 } |
|
90 |