summaryrefslogtreecommitdiffstats
path: root/src/ufodecode-private.h
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2011-12-02 08:49:09 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2011-12-02 08:49:09 +0100
commit57f2f8976b37ba6f6ec188c77e38cd854d594233 (patch)
tree4fed2b8e73132f4f5d00f1565675c75380af6b97 /src/ufodecode-private.h
parentcb3a933340614866f7b6a3dd0977956450a161dd (diff)
downloadufodecode-57f2f8976b37ba6f6ec188c77e38cd854d594233.tar.gz
ufodecode-57f2f8976b37ba6f6ec188c77e38cd854d594233.tar.bz2
ufodecode-57f2f8976b37ba6f6ec188c77e38cd854d594233.tar.xz
ufodecode-57f2f8976b37ba6f6ec188c77e38cd854d594233.zip
Rename to `ufodecode`
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
+