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