diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-12-06 00:03:49 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-12-06 00:03:49 +0000 |
commit | d88c92a40438e0ac8e897beb3ead44c4404050b3 (patch) | |
tree | 8dd4e41d7490e49501386e57cb281463b9bce7b1 /protocols/bee_user.c | |
parent | a429907207d5b8b05463c72a9b8c880ba03ad921 (diff) |
First bits of CTCP support to contacts. (Try /CTCP VERSION on a Jabber
contact.)
Diffstat (limited to 'protocols/bee_user.c')
-rw-r--r-- | protocols/bee_user.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/bee_user.c b/protocols/bee_user.c index 4ea538a9..0b118853 100644 --- a/protocols/bee_user.c +++ b/protocols/bee_user.c @@ -280,3 +280,9 @@ void imcb_buddy_typing( struct im_connection *ic, const char *handle, uint32_t f ic->bee->ui->user_typing( ic->bee, bu, flags ); } } + +void imcb_buddy_action_response( bee_user_t *bu, const char *action, char * const args[], void *data ) +{ + if( bu->bee->ui->user_action_response ) + bu->bee->ui->user_action_response( bu->bee, bu, action, args, data ); +} |