summaryrefslogtreecommitdiffstats
path: root/src/ufodecode-private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ufodecode-private.h')
-rw-r--r--src/ufodecode-private.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ufodecode-private.h b/src/ufodecode-private.h
new file mode 100644
index 0000000..4dce6bc
--- /dev/null
+++ b/src/ufodecode-private.h
@@ -0,0 +1,15 @@
+#ifndef LIB_UFODECODE_PRIVATE_H
+#define LIB_UFODECODE_PRIVATE_H
+
+#include <stdbool.h>
+
+struct ufo_decoder_t {
+ uint32_t height;
+ uint32_t *raw;
+ size_t num_bytes;
+ uint32_t current_pos;
+};
+
+
+#endif
+