1 | // =============================================================== // |
---|
2 | // // |
---|
3 | // File : awti_exp_local.hxx // |
---|
4 | // Purpose : // |
---|
5 | // // |
---|
6 | // Coded by Ralf Westram (coder@reallysoft.de) in October 2017 // |
---|
7 | // http://www.arb-home.de/ // |
---|
8 | // // |
---|
9 | // =============================================================== // |
---|
10 | |
---|
11 | #ifndef AWTI_EXP_LOCAL_HXX |
---|
12 | #define AWTI_EXP_LOCAL_HXX |
---|
13 | |
---|
14 | #define EXPORT_AWAR_PREFIX "export/" |
---|
15 | #define EXPORT_AWAR_TMP_PREFIX "tmp/" EXPORT_AWAR_PREFIX |
---|
16 | |
---|
17 | #define AWAR_EXPORT_FILEBASE EXPORT_AWAR_TMP_PREFIX "file" |
---|
18 | #define AWAR_EXPORT_FILENAME AWAR_EXPORT_FILEBASE "/file_name" |
---|
19 | #define AWAR_EXPORT_FILESUFFIX AWAR_EXPORT_FILEBASE "/filter" |
---|
20 | |
---|
21 | #define AWAR_EXPORT_FORMATBASE EXPORT_AWAR_TMP_PREFIX "form" |
---|
22 | #define AWAR_EXPORT_FORMATNAME AWAR_EXPORT_FORMATBASE "/file_name" |
---|
23 | |
---|
24 | #define AWAR_EXPORT_MULTIPLE_FILES EXPORT_AWAR_TMP_PREFIX "multiple_files" |
---|
25 | #define AWAR_EXPORT_FORMAT_DESC EXPORT_AWAR_TMP_PREFIX "description" |
---|
26 | #define AWAR_EXPORT_FILTER_NAME EXPORT_AWAR_TMP_PREFIX "filter/name" |
---|
27 | #define AWAR_EXPORT_FTS EXPORT_AWAR_TMP_PREFIX "fts" |
---|
28 | |
---|
29 | #define AWAR_EXPORT_MARKED EXPORT_AWAR_PREFIX "marked" |
---|
30 | #define AWAR_EXPORT_COMPRESS EXPORT_AWAR_PREFIX "compress" |
---|
31 | #define AWAR_EXPORT_CUTSTOP EXPORT_AWAR_PREFIX "cutstop" |
---|
32 | |
---|
33 | #define awti_assert(cond) arb_assert(cond) |
---|
34 | |
---|
35 | #else |
---|
36 | #error awti_exp_local.hxx included twice |
---|
37 | #endif // AWTI_EXP_LOCAL_HXX |
---|