mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 00:22:17 +02:00
Better support for halfops, patch by yathen@web.de
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2228 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
a8419ed5b9
commit
15e815e8d3
8 changed files with 57 additions and 24 deletions
|
|
@ -50,14 +50,15 @@ PPCODE:
|
|||
}
|
||||
|
||||
Irssi::Irc::Nick
|
||||
irc_nick_insert(channel, nick, op, voice, send_massjoin)
|
||||
irc_nick_insert(channel, nick, op, halfop, voice, send_massjoin)
|
||||
Irssi::Irc::Channel channel
|
||||
char *nick
|
||||
int op
|
||||
int halfop
|
||||
int voice
|
||||
int send_massjoin
|
||||
CODE:
|
||||
RETVAL = irc_nicklist_insert(channel, nick, op, voice, send_massjoin);
|
||||
RETVAL = irc_nicklist_insert(channel, nick, op, halfop, voice, send_massjoin);
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue