|
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: Implementation of applicationmanagement components |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __AMC_H__ |
|
20 #define __AMC_H__ |
|
21 |
|
22 |
|
23 // Successful - The Request has Succeeded |
|
24 |
|
25 const TInt KStatusSuccess = 1200; |
|
26 |
|
27 //User chose not to accept the operation when prompted |
|
28 |
|
29 const TInt KStatusUserCancelled = 1401; |
|
30 |
|
31 //The Software Component download failed |
|
32 |
|
33 const TInt KStatusDownloadFailed = 1402; |
|
34 |
|
35 //The download failed due to insufficient memory in the Device |
|
36 //to save the Delivery Package. |
|
37 |
|
38 const TInt KStatusDowloadFailedOOM = 1404; |
|
39 |
|
40 //Software Component installation failed in the Device |
|
41 |
|
42 const TInt KStatusInstallFailed = 1405; |
|
43 |
|
44 //The install failed because there wasn't sufficient memory to install |
|
45 //the Software Component in the Device. |
|
46 |
|
47 const TInt KStatusInstallFailedOOM = 1406; |
|
48 |
|
49 //Failure to positively validate digital signature of the Delivery Package |
|
50 |
|
51 const TInt KStatusPkgValidationFailed = 1407; |
|
52 |
|
53 //The Software Component Remove operation failed |
|
54 |
|
55 const TInt KStatusRemoveFailed = 1408; |
|
56 |
|
57 //The Software Component Activate operation failed |
|
58 |
|
59 const TInt KStatusActivationFailed = 1409; |
|
60 |
|
61 //The Software Component Deactivate operation failed |
|
62 |
|
63 const TInt KStatusDeactivationFailed = 1410; |
|
64 |
|
65 //The Operation has been rejected because the device does not support the target environment type |
|
66 |
|
67 const TInt KStatusUnSupportedEnvironment = 1413; |
|
68 |
|
69 //Alternate Download Server Error Encountered |
|
70 |
|
71 const TInt KStatusAltDowldError = 1500; |
|
72 |
|
73 //The Alternate Download Server is unavailable or does not respond |
|
74 |
|
75 const TInt KStatusAltDowldUnavailable = 1501; |
|
76 |
|
77 //Authentication was Required but Authentication Failure was encountered when downloading Software Component |
|
78 |
|
79 const TInt KStatusAlternateDownldAuthFail = 1403; |
|
80 |
|
81 |
|
82 |
|
83 |
|
84 |
|
85 |
|
86 #endif |
|
87 // End of File |