summaryrefslogtreecommitdiffstats
path: root/src/procedures.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/procedures.h (renamed from src/eulogium_procedures.h)9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/eulogium_procedures.h b/src/procedures.h
index 40a87a6..76e4adc 100644
--- a/src/eulogium_procedures.h
+++ b/src/procedures.h
@@ -10,14 +10,21 @@
#ifndef _EULOGIUM_PROCEDURES_H
#define _EULOGIUM_PROCEDURES_H
+#include <Eina.h>
+#include <Eldbus.h>
+#include <stdint.h>
+
+#include "print_data.h"
+
struct procedure_data {
char *key;
uint_fast16_t keylen;
Eina_Bool available;
Eina_Bool executable;
- char *step;
+ char steps[];
};
struct procedure_data *procedures_init(void);
+void procedure_start_print(Eldbus_Proxy *proxy, struct print_data *print);
#endif /* _EULOGIUM_PRIVATE_H */