summaryrefslogtreecommitdiffstats
path: root/src/print_data.h
diff options
context:
space:
mode:
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 */