xref: /reactos/sdk/tools/log2lines/config.h (revision 6b0ddf68)
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 DEF_OPT_DIR     "output-i386"
9 #define SOURCES_ENV     "_ROSBE_ROSSOURCEDIR"
10 #define CACHEFILE       "log2lines.cache"
11 #define TRKBUILDPREFIX  "bootcd-"
12 #define SVN_PREFIX      "/trunk/reactos/"
13 #define PIPEREAD_CMD    "piperead -c"
14 
15 
16 #define CP_FMT          CP_CMD "%s %s > " DEV_NULL
17 
18 #define CMD_7Z          "7z"
19 #define UNZIP_FMT_7Z    "%s e -y %s -o%s > " DEV_NULL
20 #define UNZIP_FMT       "%s x -tIso -y -r %s -o%s > " DEV_NULL
21 #define UNZIP_FMT_CAB \
22 "%s x -y -r %s" PATH_STR "reactos" PATH_STR "reactos.cab -o%s" \
23 PATH_STR "reactos" PATH_STR "reactos > " DEV_NULL
24 
25 /* When we can't use a normal path, because it gets cleaned,
26  * fallback to name mangling:
27  */
28 #define ALT_PATH_STR    "#"
29 
30 #define LINESIZE        1024
31 #define NAMESIZE        80
32 
33 /* EOF */
34