summaryrefslogtreecommitdiffstats
path: root/src/print_data.h
diff options
context:
space:
mode:
authorOlliver Schinagl <o.schinagl@ultimaker.com>2015-06-17 06:16:02 (GMT)
committerOlliver Schinagl <o.schinagl@ultimaker.com>2015-06-17 06:16:02 (GMT)
commit3c4628905960bf3217f84f81f3c213bd15be695c (patch)
treee5395c7dc38022fda4422c8e376f43ce65ff113d /src/print_data.h
parent58678161dffd48c7ecfaedf8aa8a49ec118defe4 (diff)
downloadeulogium-3c4628905960bf3217f84f81f3c213bd15be695c.zip
eulogium-3c4628905960bf3217f84f81f3c213bd15be695c.tar.gz
eulogium-3c4628905960bf3217f84f81f3c213bd15be695c.tar.bz2
[griffin.hmi] get procedures to compile
this is a broken commit, procedures are broken and compiling is broken atm. This is a wip commit. Signed-off-by: Olliver Schinagl <o.schinagl@ultimaker.com>
Diffstat (limited to 'src/print_data.h')
-rw-r--r--src/print_data.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/print_data.h b/src/print_data.h
new file mode 100644
index 0000000..b932819
--- /dev/null
+++ b/src/print_data.h
@@ -0,0 +1,28 @@
+/*
+ * function and data types for print information
+ *
+ * Copyright (c) 2015 Ultimaker B.V.
+ * Author: Olliver Schinagl <o.schinagl@ultimaker.com>
+ *
+ * SPDX-License-Identifier: AGPL-3.0+
+ */
+
+#ifndef _PRINT_DATA_H
+#define _PRINT_DATA_H
+
+#include <Eina.h>
+#include <stdint.h>
+
+struct print_data {
+ uint_fast32_t time;
+ double progress;
+ char *file;
+ char *name;
+ Eina_Bool name_changed;
+ char *flags;
+ double material;
+ Eina_Bool block;
+ Eina_Bool block_active;
+};
+
+#endif /* _PRINT_DATA_H */