aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/bee.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-12-06 00:03:49 +0000
committerWilmer van der Gaast <wilmer@gaast.net>2010-12-06 00:03:49 +0000
commitd88c92a40438e0ac8e897beb3ead44c4404050b3 (patch)
tree8dd4e41d7490e49501386e57cb281463b9bce7b1 /protocols/bee.h
parenta429907207d5b8b05463c72a9b8c880ba03ad921 (diff)
First bits of CTCP support to contacts. (Try /CTCP VERSION on a Jabber
contact.)
Diffstat (limited to 'protocols/bee.h')
-rw-r--r--protocols/bee.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/bee.h b/protocols/bee.h
index 077c3661..49ea6fb5 100644
--- a/protocols/bee.h
+++ b/protocols/bee.h
@@ -110,6 +110,8 @@ typedef struct bee_ui_funcs
gboolean (*user_msg)( bee_t *bee, bee_user_t *bu, const char *msg, time_t sent_at );
/* Flags currently defined (OPT_TYPING/THINKING) in nogaim.h. */
gboolean (*user_typing)( bee_t *bee, bee_user_t *bu, guint32 flags );
+ /* CTCP-like stuff (buddy action) response */
+ gboolean (*user_action_response)( bee_t *bee, bee_user_t *bu, const char *action, char * const args[], void *data );
/* Called at creation time. Don't show to the user until s/he is
added using chat_add_user(). UI state can be stored via c->data. */