diff options
Diffstat (limited to 'src/perl/irc/Channel.xs')
-rw-r--r-- | src/perl/irc/Channel.xs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/perl/irc/Channel.xs b/src/perl/irc/Channel.xs index 833e4f59..53cbb2f6 100644 --- a/src/perl/irc/Channel.xs +++ b/src/perl/irc/Channel.xs @@ -49,26 +49,6 @@ PPCODE: XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::Irc::Ban"))); } -void -ebans(channel) - Irssi::Irc::Channel channel -PREINIT: - GSList *tmp; -PPCODE: - for (tmp = channel->ebanlist; tmp != NULL; tmp = tmp->next) { - XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::Irc::Ban"))); - } - -void -invites(channel) - Irssi::Irc::Channel channel -PREINIT: - GSList *tmp; -PPCODE: - for (tmp = channel->invitelist; tmp != NULL; tmp = tmp->next) { - XPUSHs(new_pv(tmp->data)); - } - Irssi::Irc::Nick irc_nick_insert(channel, nick, op, voice, send_massjoin) Irssi::Irc::Channel channel |