Mercurial > trustbridge
changeset 122:65941f3d5db8
Added missing stuff from last commit.
author | Sascha Wilde <wilde@intevation.de> |
---|---|
date | Mon, 24 Mar 2014 10:06:43 +0100 |
parents | 4bb5f295987b |
children | 571f68c7a38f 9104b1b2e4da |
files | cinst/CMakeLists.txt common/errorcodes.h |
diffstat | 2 files changed, 11 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/cinst/CMakeLists.txt Sat Mar 22 17:59:27 2014 +0100 +++ b/cinst/CMakeLists.txt Mon Mar 24 10:06:43 2014 +0100 @@ -25,4 +25,5 @@ ${WIN_EXTRA_LIBS}) target_link_libraries(mozilla + m13_common ${PROFILING_LIBS})
--- a/common/errorcodes.h Sat Mar 22 17:59:27 2014 +0100 +++ b/common/errorcodes.h Mon Mar 24 10:06:43 2014 +0100 @@ -18,4 +18,14 @@ /* Generic invalid input */ #define ERR_INVALID_INPUT 8 +/*********************************************************************** + * mozilla specific errors and warnings + * errors range from 0x4D01 to 0x4DFF + * warnings from 0x4F01 to 0x4F80 + * Warnings might be ORed together ... + */ + +/* Warning: Failed to read profile.ini */ +#define WARN_MOZ_FAILED_TO_OPEN_INI 0x4F01 + #endif