|
1 /* |
|
2 * Copyright (c) 2009 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: Patchable data definitions |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef DRIVE_INFO_PATCH_DATA_H |
|
21 #define DRIVE_INFO_PATCH_DATA_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32std.h> |
|
25 |
|
26 /** |
|
27 * Patchable default drive identifiers. |
|
28 * Contain values specified by TDriveNumber. |
|
29 */ |
|
30 IMPORT_C extern const TInt KDriveInfoDefaultRomDrive; |
|
31 IMPORT_C extern const TInt KDriveInfoDefaultRamDrive; |
|
32 IMPORT_C extern const TInt KDriveInfoDefaultSystemDrive; |
|
33 IMPORT_C extern const TInt KDriveInfoDefaultPhoneMemory; |
|
34 IMPORT_C extern const TInt KDriveInfoDefaultMassStorage; |
|
35 IMPORT_C extern const TInt KDriveInfoDefaultRemovableMassStorage; |
|
36 |
|
37 /** |
|
38 * Patchable user hidden drive identifiers and place holders. |
|
39 * Contain values specified by TDriveNumber or KErrNotFound. |
|
40 */ |
|
41 IMPORT_C extern const TInt KDriveInfoUserHiddenDrive1; |
|
42 IMPORT_C extern const TInt KDriveInfoUserHiddenDrive2; |
|
43 IMPORT_C extern const TInt KDriveInfoUserHiddenDrive3; |
|
44 IMPORT_C extern const TInt KDriveInfoUserHiddenDrive4; |
|
45 IMPORT_C extern const TInt KDriveInfoUserHiddenDrive5; |
|
46 IMPORT_C extern const TInt KDriveInfoUserHiddenDrive6; |
|
47 IMPORT_C extern const TInt KDriveInfoUserHiddenDrive7; |
|
48 IMPORT_C extern const TInt KDriveInfoUserHiddenDrive8; |
|
49 |
|
50 /** Patchable USB drive definitions. */ |
|
51 /** Contains value specified by TDriveNumber or KErrNotFound. */ |
|
52 IMPORT_C extern const TInt KDriveInfoUsbDrivesStart; |
|
53 /** Contains maximum number of supported USB drives. */ |
|
54 IMPORT_C extern const TInt KDriveInfoUsbDrivesMaxCount; |
|
55 |
|
56 /** |
|
57 * DEPRICATED, DO NOT USE. |
|
58 * Instead, use the estart text file to set drive attribute KDriveAttLogicallyRemovable. |
|
59 * For example, following definition sets the attribute to E drive. |
|
60 * [DriveE] |
|
61 * AddDriveAttributes KDRIVEATTLOGICALLYREMOVABLE |
|
62 * |
|
63 * Patchable logically removable drive identifiers and place holders. |
|
64 * Contain values specified by TDriveNumber or KErrNotFound. |
|
65 */ |
|
66 IMPORT_C extern const TInt KDriveInfoLogicallyRemovableDrive1; |
|
67 IMPORT_C extern const TInt KDriveInfoLogicallyRemovableDrive2; |
|
68 IMPORT_C extern const TInt KDriveInfoLogicallyRemovableDrive3; |
|
69 IMPORT_C extern const TInt KDriveInfoLogicallyRemovableDrive4; |
|
70 |
|
71 #endif // DRIVE_INFO_PATCH_DATA_H |
|
72 |
|
73 // End of File |