source:
protocols/purple/bpurple.h
@
861de54
Last change on this file since 861de54 was 59ccef5, checked in by , at 2016-12-26T00:20:09Z | |
---|---|
|
|
File size: 371 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 | ||
[59ccef5] | 9 | #define PURPLE_OPT_SHOULD_SET_NICK 1 |
10 | ||
[d93c8beb] | 11 | struct purple_data |
12 | { | |
13 | PurpleAccount *account; | |
[6a48992] | 14 | |
15 | GHashTable *input_requests; | |
16 | guint next_request_id; | |
[fecdd71] | 17 | char *chat_list_server; |
[ea90275] | 18 | GSList *filetransfers; |
[59ccef5] | 19 | |
20 | int flags; | |
[d93c8beb] | 21 | }; |
22 | ||
23 | #endif /* !BPURPLE_H */ |
Note: See TracBrowser
for help on using the repository browser.