source: protocols/purple/bpurple.h @ 725f942

Last change on this file since 725f942 was 725f942, checked in by jgeboski <jgeboski@…>, at 2016-09-20T03:39:05Z

purple: added room listing support

  • Property mode set to 100644
File size: 331 bytes
Line 
1#ifndef BPURPLE_H
2# define BPURPLE_H
3
4#include <purple.h>
5#include <glib.h>
6
7#define PURPLE_REQUEST_HANDLE "purple_request"
8
9struct purple_data
10{
11    PurpleAccount *account;
12
13    GHashTable *input_requests;
14    guint next_request_id;
15};
16
17struct purple_roomlist_data
18{
19    GSList *chats;
20    gint topic;
21};
22
23#endif /* !BPURPLE_H */
Note: See TracBrowser for help on using the repository browser.