]> wimlib.net Git - wimlib/blob - include/wimlib/xpress_constants.h
Improve random number generation
[wimlib] / include / wimlib / xpress_constants.h
1 /*
2  * xpress_constants.h
3  *
4  * Constants for the XPRESS compression format.
5  */
6
7 #ifndef _XPRESS_CONSTANTS_H
8 #define _XPRESS_CONSTANTS_H
9
10 #define XPRESS_NUM_CHARS        256
11 #define XPRESS_NUM_SYMBOLS      512
12 #define XPRESS_MAX_CODEWORD_LEN 15
13
14 #define XPRESS_END_OF_DATA      256
15
16 #define XPRESS_MIN_OFFSET       1
17 #define XPRESS_MAX_OFFSET       65535
18
19 #define XPRESS_MIN_MATCH_LEN    3
20 #define XPRESS_MAX_MATCH_LEN    65538
21
22 #endif /* _XPRESS_CONSTANTS_H */