diff options
Diffstat (limited to 'src/libipe-private.h')
-rw-r--r-- | src/libipe-private.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libipe-private.h b/src/libipe-private.h new file mode 100644 index 0000000..8d7de1c --- /dev/null +++ b/src/libipe-private.h @@ -0,0 +1,15 @@ +#ifndef LIB_IPE_PRIVATE_H +#define LIB_IPE_PRIVATE_H + +#include <stdbool.h> + +struct ipe_decoder_t { + uint32_t height; + uint32_t *raw; + size_t num_bytes; + uint32_t current_pos; +}; + + +#endif + |