1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00
profanity/src/xmpp/bookmark.h

18 lines
221 B
C
Raw Normal View History

2013-06-30 11:59:38 -04:00
#ifndef XMPP_BOOKMARK_H
#define XMPP_BOOKMARK_H
2013-06-30 11:59:38 -04:00
#include <glib.h>
struct bookmark_t {
char *jid;
char *nick;
gboolean autojoin;
};
typedef struct bookmark_t Bookmark;
2013-06-30 11:59:38 -04:00
void bookmark_request(void);
#endif