1 #pragma once 2 3 /* Assume if an offset > ABS_TRESHOLD, then it must be absolute */ 4 #define ABS_TRESHOLD 0x00400000L 5 #define INVALID_BASE 0xFFFFFFFFL 6 7 #define LOGBOTTOM "--------" 8 #define SVNDB "svndb.log" 9 #define SVNDB_INX "svndb.inx" 10 #define DEF_RANGE 500 11 #define MAGIC_INX 0x494E585F //'INX_' 12 #define DEF_OPT_DIR "output-i386" 13 #define SOURCES_ENV "_ROSBE_ROSSOURCEDIR" 14 #define CACHEFILE "log2lines.cache" 15 #define TRKBUILDPREFIX "bootcd-" 16 #define SVN_PREFIX "/trunk/reactos/" 17 #define PIPEREAD_CMD "piperead -c" 18 19 20 #define CP_FMT CP_CMD "%s %s > " DEV_NULL 21 22 #define CMD_7Z "7z" 23 #define UNZIP_FMT_7Z "%s e -y %s -o%s > " DEV_NULL 24 #define UNZIP_FMT "%s x -tIso -y -r %s -o%s > " DEV_NULL 25 #define UNZIP_FMT_CAB \ 26 "%s x -y -r %s" PATH_STR "reactos" PATH_STR "reactos.cab -o%s" \ 27 PATH_STR "reactos" PATH_STR "reactos > " DEV_NULL 28 29 /* When we can't use a normal path, because it gets cleaned, 30 * fallback to name mangling: 31 */ 32 #define ALT_PATH_STR "#" 33 34 #define LINESIZE 1024 35 #define NAMESIZE 80 36 37 /* EOF */ 38