aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-04-12 02:06:49 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2010-04-12 02:06:49 +0200
commit24b8bbb2616d685006a279e46a4bd2e8e7cf6694 (patch)
treec585d428a08bdd8c7f22b1fdef8e65d758f60d6e /irc.h
parente21c0f8b276cc3ca177bcf6217eba9c634d410f7 (diff)
Start handling CTCPs, in a saner way than before.
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/irc.h b/irc.h
index e981b918..450d3259 100644
--- a/irc.h
+++ b/irc.h
@@ -119,6 +119,7 @@ typedef struct irc_user
struct irc_user_funcs
{
gboolean (*privmsg)( irc_user_t *iu, const char *msg );
+ gboolean (*ctcp)( irc_user_t *iu, char * const* ctcp );
};
extern const struct irc_user_funcs irc_user_root_funcs;