aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/irc.h b/irc.h
index db07109d..646281ff 100644
--- a/irc.h
+++ b/irc.h
@@ -86,6 +86,8 @@ typedef struct irc
typedef struct irc_user
{
+ irc_t *irc;
+
char *nick;
char *user;
char *host;
@@ -158,6 +160,7 @@ void irc_send_join( irc_channel_t *ic, irc_user_t *iu );
void irc_send_part( irc_channel_t *ic, irc_user_t *iu, const char *reason );
void irc_send_names( irc_channel_t *ic );
void irc_send_topic( irc_channel_t *ic );
+void irc_send_whois( irc_user_t *iu );
/* irc_user.c */
irc_user_t *irc_user_new( irc_t *irc, const char *nick );