equal
deleted
inserted
replaced
|
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: IAUpdateFileConsts |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef IA_UPDATE_FILE_CONSTS_H |
|
21 #define IA_UPDATE_FILE_CONSTS_H |
|
22 |
|
23 /** |
|
24 * IAUpdateFileConsts |
|
25 * Gives filename constants that are used |
|
26 * when files are saved and read. |
|
27 */ |
|
28 namespace IAUpdateFileConsts |
|
29 { |
|
30 |
|
31 /** |
|
32 * This defines the drive where the files will be saved. |
|
33 */ |
|
34 const TInt KDrive( EDriveC ); |
|
35 |
|
36 /** |
|
37 * This file contains parameter data that is given |
|
38 * through the API. This file is used when self updater |
|
39 * is started and the parameter values need to be saved |
|
40 * for possible IAD restart. |
|
41 */ |
|
42 _LIT( KParamsFile, "iaupdateparamsfile" ); |
|
43 |
|
44 /** |
|
45 * This file contains data that is used to check if |
|
46 * network access is allowed for refresh operation. |
|
47 */ |
|
48 _LIT( KControllerFile, "iaupdatecontrollerfile" ); |
|
49 |
|
50 } |
|
51 |
|
52 #endif // IA_UPDATE_FILE_CONSTS_H |