2837c405 ^
107fdd35 ^
b9d29e9a ^
1
2 3
4
5 6 7 8 9 10 11 12 13 14
15 16 17
#ifndef XMPP_BOOKMARK_H #define XMPP_BOOKMARK_H #include <glib.h> struct bookmark_t { char *jid; char *nick; gboolean autojoin; }; typedef struct bookmark_t Bookmark; void bookmark_request(void); #endif