diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-14 00:34:38 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-14 00:34:38 +0100 |
commit | 7b71feb6f88b7e14199b8f7e9930f76d5324e356 (patch) | |
tree | 2aadf040f7c2b29d6457fbf2ca265a804c75a193 /irc.h | |
parent | ad404ab26aa3cfdfc3c76f6926e556e333d02753 (diff) |
Just enough code to join named chatrooms again. This UI is *not* final, the "chat"
command will probably mostly stick around for bw compatibility. Still thinking
about how this should work eventually.
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -194,6 +194,12 @@ struct irc_control_channel struct account *account; }; +struct irc_groupchat_stub +{ + struct account *acc; + char *room; +}; + extern const struct bee_ui_funcs irc_ui_funcs; /* irc.c */ |