Mercurial > trustbridge
comparison common/errorcodes.h @ 145:27ebd96798c4
Fixed mox error ranges -- return codes can only use 8 bit.
author | Sascha Wilde <wilde@intevation.de> |
---|---|
date | Mon, 24 Mar 2014 16:25:32 +0100 |
parents | 65941f3d5db8 |
children | fc9af77b06b9 |
comparison
equal
deleted
inserted
replaced
144:dc9970d7b9bf | 145:27ebd96798c4 |
---|---|
18 /* Generic invalid input */ | 18 /* Generic invalid input */ |
19 #define ERR_INVALID_INPUT 8 | 19 #define ERR_INVALID_INPUT 8 |
20 | 20 |
21 /*********************************************************************** | 21 /*********************************************************************** |
22 * mozilla specific errors and warnings | 22 * mozilla specific errors and warnings |
23 * errors range from 0x4D01 to 0x4DFF | 23 * errors range from 0x0081 to 0x08F |
24 * warnings from 0x4F01 to 0x4F80 | 24 * warnings from 0x0091 to 0x0098 |
25 * Warnings might be ORed together ... | 25 * Warnings might be ORed together ... |
26 */ | 26 */ |
27 | 27 |
28 /* Warning: Failed to read profile.ini */ | 28 /* Warning: Failed to read profile.ini */ |
29 #define WARN_MOZ_FAILED_TO_OPEN_INI 0x4F01 | 29 #define WARN_MOZ_FAILED_TO_OPEN_INI 0x0091 |
30 | 30 |
31 #endif | 31 #endif |