summaryrefslogtreecommitdiffstats
path: root/src/eulogium.h
diff options
context:
space:
mode:
authorOlliver Schinagl <o.schinagl@ultimaker.com>2015-04-06 20:05:46 (GMT)
committerOlliver Schinagl <o.schinagl@ultimaker.com>2015-04-28 05:07:13 (GMT)
commitd1156a5a6d18bd7cc9919b342e1c5dd1456e7273 (patch)
tree9d0a4e8ac488ab17a4255ca84505c8cfb0098469 /src/eulogium.h
parent30305b5407874aa5912faa2855f48789bc0621ce (diff)
downloadeulogium-d1156a5a6d18bd7cc9919b342e1c5dd1456e7273.zip
eulogium-d1156a5a6d18bd7cc9919b342e1c5dd1456e7273.tar.gz
eulogium-d1156a5a6d18bd7cc9919b342e1c5dd1456e7273.tar.bz2
use stdints
Signed-off-by: Olliver Schinagl <o.schinagl@ultimaker.com>
Diffstat (limited to 'src/eulogium.h')
-rw-r--r--src/eulogium.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/eulogium.h b/src/eulogium.h
index 48d04bf..88cecc4 100644
--- a/src/eulogium.h
+++ b/src/eulogium.h
@@ -3,10 +3,13 @@
#ifndef _EULOGIUM_H
#define _EULOGIUM_H
+#include <Evas.h>
+#include <stdint.h>
+
struct print_data {
Evas_Object *progress;
Evas_Object *status;
- unsigned int *time;
+ uint_fast32_t *time;
const char *file;
const char *name;
float material;
@@ -18,7 +21,6 @@ struct eulogium_data {
void *data;
};
-
struct button_cb {
void (*func)(void *data, Evas_Object *object, void *event_info);
void *data;