# HG changeset patch # User Sascha Wilde # Date 1395652003 -3600 # Node ID 65941f3d5db89c10760746d1f7b2d719d9abab03 # Parent 4bb5f295987bbeeeb3a4495a726b0bc0fdd4d685 Added missing stuff from last commit. diff -r 4bb5f295987b -r 65941f3d5db8 cinst/CMakeLists.txt --- 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}) diff -r 4bb5f295987b -r 65941f3d5db8 common/errorcodes.h --- 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