about summary refs log blame commit diff stats
path: root/src/xmpp/bookmark.h
blob: 8b5418b06b6572d5e63838c3e1584c438b3e9618 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 

                       
 









                                   


                            
#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