aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/bee_user.c
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/bee_user.c')
-rw-r--r--protocols/bee_user.c6
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 );
+}