aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/bee.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/bee.h')
-rw-r--r--protocols/bee.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/protocols/bee.h b/protocols/bee.h
new file mode 100644
index 00000000..b25f0e08
--- /dev/null
+++ b/protocols/bee.h
@@ -0,0 +1,18 @@
+typedef struct bee_ui
+{
+ void *data;
+} bee_ui_t;
+
+typedef struct bee
+{
+ struct set *set;
+
+ GSList *users;
+ GSList *accounts;
+
+ //const bee_ui_funcs_t *ui;
+ void *ui_data;
+} bee_t;
+
+bee_t *bee_new();
+void bee_free( bee_t *b );