Mercurial > trustbridge
comparison common/errorcodes.h @ 173:a9e4454dee97
Implemented searching $HOME/.mozilla for profiles.ini on Linux.
author | Sascha Wilde <wilde@intevation.de> |
---|---|
date | Tue, 25 Mar 2014 16:20:04 +0100 |
parents | 37c9653b8755 |
children | 0c4d65a7cd14 |
comparison
equal
deleted
inserted
replaced
172:7b9545ad76f6 | 173:a9e4454dee97 |
---|---|
25 * errors range from 0x0081 to 0x08F | 25 * errors range from 0x0081 to 0x08F |
26 * warnings from 0x0091 to 0x0098 | 26 * warnings from 0x0091 to 0x0098 |
27 * Warnings might be ORed together ... | 27 * Warnings might be ORed together ... |
28 */ | 28 */ |
29 | 29 |
30 /* Error: could not determine current users HOME */ | |
31 #define ERR_MOZ_HOMELESS 0x0081 | |
32 | |
30 /* Warning: Failed to read profile.ini */ | 33 /* Warning: Failed to read profile.ini */ |
31 #define WARN_MOZ_FAILED_TO_OPEN_INI 0x0091 | 34 #define WARN_MOZ_FAILED_TO_OPEN_INI 0x0091 |
32 /* Warning: Some profile paths from profile.ini don't exist */ | 35 /* Warning: Some profile paths from profile.ini don't exist */ |
33 #define WARN_MOZ_PROFILE_DOES_NOT_EXIST 0x0092 | 36 #define WARN_MOZ_PROFILE_DOES_NOT_EXIST 0x0092 |
37 /* Warning: no profiles found */ | |
38 #define WARN_MOZ_NO_PROFILES 0x0094 | |
34 | 39 |
35 #endif | 40 #endif |