aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/bee.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-03-26 21:57:00 -0400
committerWilmer van der Gaast <wilmer@gaast.net>2010-03-26 21:57:00 -0400
commitebaebfe35c82460581fa6db518d8848996c9a0f4 (patch)
tree6b0aab8542a40e7af5999b940f60374d808df887 /protocols/bee.h
parent3ddb7477f51d3cf1632e2a8b6f7da4c0609a52cb (diff)
PING and QUIT work now, and adding some files that weren't checked in so
far.
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 );