git-svn-id: http://svn.irssi.org/repos/irssi/trunk@768 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-10-18 20:50:12 +00:00 committed by cras
commit fcb1374e40
10 changed files with 94 additions and 8 deletions

View file

@ -52,7 +52,7 @@ CODE:
signal_emit("send command", 3, cmd, server, item);
void
printtext(server, channel, level, str)
printtext(server, channel, str, level)
Irssi::Server server
char *channel
int level
@ -141,3 +141,15 @@ command(item, cmd)
char *cmd
CODE:
signal_emit("send command", 3, cmd, item->server, item);
#*******************************
MODULE = Irssi PACKAGE = Irssi::Channel
#*******************************
void
print(channel, str, level=MSGLEVEL_CLIENTNOTICE)
Irssi::Channel channel
int level
char *str
CODE:
printtext(channel->server, channel->name, level, str);