aboutsummaryrefslogtreecommitdiff
path: root/src/trailer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/trailer.h')
-rw-r--r--src/trailer.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/trailer.h b/src/trailer.h
new file mode 100644
index 0000000..4d20022
--- /dev/null
+++ b/src/trailer.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) 2010 IEQualize GmbH <info@iequalize.de>
+ *
+ */
+#ifndef _TRAILER_H
+#define _TRAILER_H
+
+/* max length of version string, e.g. "0.33.1pre1" */
+#define MAX_VERSION 16
+
+struct update_trailer {
+ uint8_t version[MAX_VERSION];
+ uint32_t model_tag;
+ uint32_t loopaes_length;
+ /* keep the trailer version info last */
+ uint32_t trailer_version;
+};
+
+#endif