mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 00:52:30 +02:00
correctly separate ignore flags (no_act, hidden) from level
This commit is contained in:
parent
7f14d4d744
commit
b9a274a81d
7 changed files with 92 additions and 57 deletions
|
|
@ -25,6 +25,19 @@ CODE:
|
|||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
ignore_check_flags(nick, host, channel, text, level, flags)
|
||||
char *nick
|
||||
char *host
|
||||
char *channel
|
||||
char *text
|
||||
int level
|
||||
int flags
|
||||
CODE:
|
||||
RETVAL = ignore_check_flags(NULL, nick, host, channel, text, level, flags);
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
#*******************************
|
||||
MODULE = Irssi::Ignore PACKAGE = Irssi::Server
|
||||
#*******************************
|
||||
|
|
@ -38,6 +51,16 @@ ignore_check(server, nick, host, channel, text, level)
|
|||
char *text
|
||||
int level
|
||||
|
||||
int
|
||||
ignore_check_flags(server, nick, host, channel, text, level, flags)
|
||||
Irssi::Server server
|
||||
char *nick
|
||||
char *host
|
||||
char *channel
|
||||
char *text
|
||||
int level
|
||||
int flags
|
||||
|
||||
#*******************************
|
||||
MODULE = Irssi::Ignore PACKAGE = Irssi::Ignore PREFIX = ignore_
|
||||
#*******************************
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue