ufodecode-private.h 246 B

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