summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;