summaryrefslogtreecommitdiffstats
path: root/src/eulogium.h
diff options
context:
space:
mode:
authorOlliver Schinagl <o.schinagl@ultimaker.com>2015-04-23 20:31:31 (GMT)
committerOlliver Schinagl <o.schinagl@ultimaker.com>2015-04-28 05:07:15 (GMT)
commit7cb08d692f5ae2e65fc9f911bcd50fb5c4967c7c (patch)
treec815d6f06f6a4ad99f528a54b7e250823813e10d /src/eulogium.h
parent9c29cc8b84233234ea5728c46f27a05b927c0de4 (diff)
downloadeulogium-7cb08d692f5ae2e65fc9f911bcd50fb5c4967c7c.zip
eulogium-7cb08d692f5ae2e65fc9f911bcd50fb5c4967c7c.tar.gz
eulogium-7cb08d692f5ae2e65fc9f911bcd50fb5c4967c7c.tar.bz2
Prepare for dbus usage
Signed-off-by: Olliver Schinagl <o.schinagl@ultimaker.com>
Diffstat (limited to 'src/eulogium.h')
-rw-r--r--src/eulogium.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/eulogium.h b/src/eulogium.h
index fdfc8b3..3cd5250 100644
--- a/src/eulogium.h
+++ b/src/eulogium.h
@@ -4,6 +4,7 @@
#define _EULOGIUM_H
#include <Evas.h>
+#include <Eldbus.h>
#include <stdint.h>
enum screen_type {
@@ -23,9 +24,16 @@ struct print_data {
float material;
};
+struct dbus_data {
+ Eldbus_Connection *conn;
+ Eldbus_Pending *pending;
+ Eldbus_Proxy *proxy;
+};
+
struct eulogium_data {
Evas_Object *navi;
struct print_data print;
+ struct dbus_data dbus;
void *data;
};