source: protocols/purple/bpurple.h @ 30093fa

Last change on this file since 30093fa was fecdd71, checked in by dequis <dx@…>, at 2016-11-04T23:48:52Z

purple: hack to pass server parameter to jabber's input request

Because our purple module is all about hacks, adding more can't hurt.

There's a string comparison for "Enter a Conference Server". It's
gettexted in the source but in practice it isn't affected by locale
(bitlbee disables localization).

Worst case, if this stops working, it will open an input request like it
did before this commit. It also does that in purple's jabber if you
don't provide a server parameter.

  • Property mode set to 100644
File size: 290 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    char *chat_list_server;
16};
17
18#endif /* !BPURPLE_H */
Note: See TracBrowser for help on using the repository browser.