1 pathconfiguration.hrh |
1 /* |
|
2 * Copyright (c) 2002-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: System paths are defined here. |
|
15 * This file should be edited to change system paths. |
|
16 * These definitions can be used directly in resource files. |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef PATH_CONFIGURATION_HRH |
|
22 #define PATH_CONFIGURATION_HRH |
|
23 |
|
24 /** |
|
25 * The root directory in ROM. |
|
26 */ |
|
27 #define text_rom_root_path "Z:\\Data\\" |
|
28 |
|
29 /** |
|
30 * The root directory in Phone Memory. |
|
31 */ |
|
32 #define text_phone_memory_root_path "C:\\Data\\" |
|
33 |
|
34 /** |
|
35 * The root directory in Memory Card. |
|
36 */ |
|
37 #define text_memory_card_root_path "E:\\" |
|
38 |
|
39 /** |
|
40 * Games directory. |
|
41 * The directory is always under a root directory. |
|
42 */ |
|
43 #define text_games_path "Games\\" |
|
44 |
|
45 /** |
|
46 * Installs directory. |
|
47 * The directory is always under a root directory. |
|
48 */ |
|
49 #define text_installs_path "Installs\\" |
|
50 |
|
51 /** |
|
52 * Others directory. |
|
53 * The directory is always under a root directory. |
|
54 */ |
|
55 #define text_others_path "Others\\" |
|
56 |
|
57 /** |
|
58 * Videos directory. |
|
59 * The directory is always under a root directory. |
|
60 */ |
|
61 #define text_videos_path "Videos\\" |
|
62 |
|
63 /** |
|
64 * Images directory. |
|
65 * The directory is always under a root directory. |
|
66 */ |
|
67 #define text_images_path "Images\\" |
|
68 |
|
69 /** |
|
70 * Pictures directory. |
|
71 * The directory is always under a root directory. |
|
72 * @deprecated Use GSM pictures directory (text_gms_pictures_path) instead. |
|
73 */ |
|
74 #define text_pictures_path "Images\\Pictures\\" |
|
75 |
|
76 /** |
|
77 * GMS pictures directory. |
|
78 * The directory is always under a root directory. |
|
79 */ |
|
80 #define text_gms_pictures_path "Images\\Pictures\\" |
|
81 |
|
82 /** |
|
83 * MMS background images directory. |
|
84 * The directory is always under a root directory. |
|
85 */ |
|
86 #define text_mms_background_images_path "Images\\Backgrounds\\" |
|
87 |
|
88 /** |
|
89 * Presence logos directory. |
|
90 * The directory is always under a root directory. |
|
91 */ |
|
92 #define text_presence_logos_path "Images\\Presence\\" |
|
93 |
|
94 /** |
|
95 * Sounds directory. |
|
96 * The directory is always under a root directory. |
|
97 */ |
|
98 #define text_sounds_path "Sounds\\" |
|
99 |
|
100 /** |
|
101 * Digital sounds directory. |
|
102 * The directory is always under a root directory. |
|
103 */ |
|
104 #define text_digital_sounds_path "Sounds\\Digital\\" |
|
105 |
|
106 /** |
|
107 * Simple sounds directory. |
|
108 * The directory is always under a root directory. |
|
109 */ |
|
110 #define text_simple_sounds_path "Sounds\\Simple\\" |
|
111 |
|
112 /** |
|
113 * Thumbnail images directory. |
|
114 * The directory is not necessarily under a root directory. The directory |
|
115 * exists under the same directory where the corresponding image is. |
|
116 * Do not try to append this to a root directory. |
|
117 */ |
|
118 #define text_images_thumbnail_path "_PAlbTN\\" |
|
119 |
|
120 /** |
|
121 * Full path of the contacts directory in a memory card. |
|
122 * Contains also the drive letter. |
|
123 * Do not try to append this to any root directory. |
|
124 */ |
|
125 #define text_memory_card_contacts_path "E:\\Others\\Contacts\\" |
|
126 |
|
127 /** |
|
128 * Full path of the links directory in a memory card. |
|
129 * Contains also the drive letter. |
|
130 * Do not try to append this to any root directory. |
|
131 */ |
|
132 #define text_memory_card_links_path "E:\\Others\\Links\\" |
|
133 |
|
134 #endif // PATH_CONFIGURATION_HRH |
|
135 |
|
136 // End of File |