aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/purple/bpurple.h
blob: ca7cf70eb5621e3f9397911b1f7259068291f4b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef BPURPLE_H
# define BPURPLE_H

#include <purple.h>
#include <glib.h>

#define PURPLE_REQUEST_HANDLE "purple_request"

struct purple_data
{
    PurpleAccount *account;

    GHashTable *input_requests;
    guint next_request_id;
};

struct purple_roomlist_data
{
    GSList *chats;
    gint topic;
};

#endif /* !BPURPLE_H */