source:
protocols/purple/bpurple.h
@
58d285a
Last change on this file since 58d285a was 725f942, checked in by , at 2016-09-20T03:39:05Z | |
---|---|
|
|
File size: 331 bytes |
Rev | Line | |
---|---|---|
[d93c8beb] | 1 | #ifndef BPURPLE_H |
2 | # define BPURPLE_H | |
3 | ||
4 | #include <purple.h> | |
5 | #include <glib.h> | |
6 | ||
[6a48992] | 7 | #define PURPLE_REQUEST_HANDLE "purple_request" |
8 | ||
[d93c8beb] | 9 | struct purple_data |
10 | { | |
11 | PurpleAccount *account; | |
[6a48992] | 12 | |
13 | GHashTable *input_requests; | |
14 | guint next_request_id; | |
[d93c8beb] | 15 | }; |
16 | ||
[725f942] | 17 | struct purple_roomlist_data |
18 | { | |
19 | GSList *chats; | |
20 | gint topic; | |
21 | }; | |
22 | ||
[d93c8beb] | 23 | #endif /* !BPURPLE_H */ |
Note: See TracBrowser
for help on using the repository browser.