Mercurial > trustbridge
comparison common/errorcodes.h @ 156:f09a0817e3bc
merged.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Tue, 25 Mar 2014 09:23:47 +0100 |
parents | 0df62decff90 |
children | 37c9653b8755 |
comparison
equal
deleted
inserted
replaced
155:c0fdb8d336cf | 156:f09a0817e3bc |
---|---|
1 #ifndef ERRORCODES_H | 1 #ifndef ERRORCODES_H |
2 #define ERRORCODES_H | 2 #define ERRORCODES_H |
3 | 3 |
4 /* No error */ | |
5 #define NO_ERROR 0 | |
4 /* No begin certificate / end certificate could be found */ | 6 /* No begin certificate / end certificate could be found */ |
5 #define ERR_INVALID_INPUT_NO_LIST 2 | 7 #define ERR_INVALID_INPUT_NO_LIST 2 |
6 /* Too much input for the installer process */ | 8 /* Too much input for the installer process */ |
7 #define ERR_TOO_MUCH_INPUT 3 | 9 #define ERR_TOO_MUCH_INPUT 3 |
8 /* Invalid signature */ | 10 /* Invalid signature */ |
18 /* Generic invalid input */ | 20 /* Generic invalid input */ |
19 #define ERR_INVALID_INPUT 8 | 21 #define ERR_INVALID_INPUT 8 |
20 | 22 |
21 /*********************************************************************** | 23 /*********************************************************************** |
22 * mozilla specific errors and warnings | 24 * mozilla specific errors and warnings |
23 * errors range from 0x4D01 to 0x4DFF | 25 * errors range from 0x0081 to 0x08F |
24 * warnings from 0x4F01 to 0x4F80 | 26 * warnings from 0x0091 to 0x0098 |
25 * Warnings might be ORed together ... | 27 * Warnings might be ORed together ... |
26 */ | 28 */ |
27 | 29 |
28 /* Warning: Failed to read profile.ini */ | 30 /* Warning: Failed to read profile.ini */ |
29 #define WARN_MOZ_FAILED_TO_OPEN_INI 0x4F01 | 31 #define WARN_MOZ_FAILED_TO_OPEN_INI 0x0091 |
32 /* Warning: Some profile paths from profile.ini don't exist */ | |
33 #define WARN_MOZ_PROFILE_DOES_NOT_EXIST 0x0092 | |
30 | 34 |
31 #endif | 35 #endif |