1#include <cstdint>
2
3struct DECOMP_SLICE
4{
5 uint16_t offset : 13;
6 uint16_t length : 3;
7};
8
9enum
10{
11 NUM_DECOMP_LENGTHS = 8,
12 NUM_DECOMPS = 9770,
13};
14
15extern const uint8_t decomp_lengths[NUM_DECOMP_LENGTHS];
16extern const int32_t decomp_chars[NUM_DECOMPS];
17extern const struct DECOMP_SLICE decomp_slices[NUM_DECOMPS];
18extern const int32_t decomp_data[];
19