diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-17 12:34:24 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-17 12:34:24 +0100 |
commit | d0527c1845ed1230bbc3b0f94b8643cd8f9fddc3 (patch) | |
tree | 1fc7cae0b3c49031a524707d34b7d6f599330099 /protocols/nogaim.c | |
parent | 177ffd7da1570485698f6c105374e86c4471c94a (diff) |
libpurple: Handle incoming authorization requests.
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r-- | protocols/nogaim.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c index 7380c575..e628126f 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -382,6 +382,12 @@ void imcb_ask( struct im_connection *ic, char *msg, void *data, query_add( (irc_t *) ic->bee->ui_data, ic, msg, doit, dont, g_free, data ); } +void imcb_ask_with_free( struct im_connection *ic, char *msg, void *data, + query_callback doit, query_callback dont, query_callback myfree ) +{ + query_add( (irc_t *) ic->bee->ui_data, ic, msg, doit, dont, myfree, data ); +} + void imcb_add_buddy( struct im_connection *ic, const char *handle, const char *group ) { bee_user_t *bu; |