1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00
profanity/src/xmpp/bookmark.h

18 lines
221 B
C
Raw Normal View History

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