ufodecode-private.h 212 B

123456789101112131415
  1. #ifndef LIB_UFODECODE_PRIVATE_H
  2. #define LIB_UFODECODE_PRIVATE_H
  3. #include <stdbool.h>
  4. struct ufo_decoder_t {
  5. uint32_t height;
  6. uint32_t *raw;
  7. size_t num_bytes;
  8. uint32_t current_pos;
  9. };
  10. #endif