mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 00:52:30 +02:00
Nicklist updates so that protocol specific xxx_NICK_REC can be used
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1177 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
7240717198
commit
e387516951
8 changed files with 58 additions and 42 deletions
|
|
@ -83,17 +83,12 @@ void
|
|||
channel_destroy(channel)
|
||||
Irssi::Channel channel
|
||||
|
||||
Irssi::Nick
|
||||
nick_insert(channel, nick, op, voice, send_massjoin)
|
||||
void
|
||||
nick_insert(channel, nick)
|
||||
Irssi::Channel channel
|
||||
char *nick
|
||||
int op
|
||||
int voice
|
||||
int send_massjoin
|
||||
Irssi::Nick nick
|
||||
CODE:
|
||||
RETVAL = nicklist_insert(channel, nick, op, voice, send_massjoin);
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
nicklist_insert(channel, nick);
|
||||
|
||||
void
|
||||
nick_remove(channel, nick)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
MODULE = Irssi::Irc PACKAGE = Irssi::Irc::Channel PREFIX = irc_channel_
|
||||
MODULE = Irssi::Irc PACKAGE = Irssi::Irc::Channel PREFIX = irc_
|
||||
|
||||
void
|
||||
bans(channel)
|
||||
|
|
@ -34,6 +34,18 @@ PPCODE:
|
|||
XPUSHs(new_pv(tmp->data));
|
||||
}
|
||||
|
||||
Irssi::Nick
|
||||
irc_nick_insert(channel, nick, op, voice, send_massjoin)
|
||||
Irssi::Channel channel
|
||||
char *nick
|
||||
int op
|
||||
int voice
|
||||
int send_massjoin
|
||||
CODE:
|
||||
RETVAL = irc_nicklist_insert(channel, nick, op, voice, send_massjoin);
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
MODULE = Irssi::Irc PACKAGE = Irssi::Irc::Server PREFIX = irc_
|
||||
|
||||
Irssi::Irc::Channel
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
#include "irc-servers.h"
|
||||
#include "irc-channels.h"
|
||||
#include "irc-queries.h"
|
||||
#include "irc-nicklist.h"
|
||||
|
||||
#include "bans.h"
|
||||
#include "modes.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue