about summary refs log tree commit diff stats
path: root/src/xmpp/bookmark.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-08-25 23:27:42 +0100
committerJames Booth <boothj5@gmail.com>2013-08-25 23:27:42 +0100
commitd3cfeb9d5cac0520d43dbf35e36d9364c35a95e5 (patch)
treee262e193eadbb95717e6b04612ace879c7be5848 /src/xmpp/bookmark.h
parent3c39befa5e565bbc3cc13a0f060a8d7a18f735f1 (diff)
parente21bf8a18d682ae95699b6ddedf17aa870303a3c (diff)
downloadprofani-tty-d3cfeb9d5cac0520d43dbf35e36d9364c35a95e5.tar.gz
Merge branch 'master' into windows
Diffstat (limited to 'src/xmpp/bookmark.h')
-rw-r--r--src/xmpp/bookmark.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/xmpp/bookmark.h b/src/xmpp/bookmark.h
new file mode 100644
index 00000000..e15b6eab
--- /dev/null
+++ b/src/xmpp/bookmark.h
@@ -0,0 +1,22 @@
+
+#ifndef BOOKMARK_H
+#define BOOKMARK_H
+
+#include <glib.h>
+
+struct bookmark_t {
+    char *jid;
+    char *nick;
+    gboolean autojoin;
+};
+
+typedef struct bookmark_t Bookmark;
+
+void bookmark_request(void);
+void bookmark_add(const char *jid, const char *nick, gboolean autojoin);
+void bookmark_remove(const char *jid, gboolean autojoin);
+const GList *bookmark_get_list(void);
+char *bookmark_find(char *search_str);
+void bookmark_autocomplete_reset(void);
+
+#endif