| 1 | // Aseprite FLIC Library |
| 2 | // Copyright (c) 2015 David Capello |
| 3 | // |
| 4 | // This file is released under the terms of the MIT license. |
| 5 | // Read LICENSE.txt for more information. |
| 6 | |
| 7 | #ifndef FLIC_DETAILS_H_INCLUDED |
| 8 | #define FLIC_DETAILS_H_INCLUDED |
| 9 | #pragma once |
| 10 | |
| 11 | #define FLI_MAGIC_NUMBER 0xAF11 |
| 12 | #define FLC_MAGIC_NUMBER 0xAF12 |
| 13 | |
| 14 | #define FLI_FRAME_MAGIC_NUMBER 0xF1FA |
| 15 | |
| 16 | #define FLI_COLOR_256_CHUNK 4 |
| 17 | #define FLI_DELTA_CHUNK 7 |
| 18 | #define FLI_COLOR_64_CHUNK 11 |
| 19 | #define FLI_LC_CHUNK 12 |
| 20 | #define FLI_BLACK_CHUNK 13 |
| 21 | #define FLI_BRUN_CHUNK 15 |
| 22 | #define FLI_COPY_CHUNK 16 |
| 23 | |
| 24 | #endif |
| 25 | |