mirror of
https://github.com/irssi/irssi.git
synced 2025-01-03 14:56:47 -05:00
43df6e424e
This removes the calls to Perl_get_context() that get automatically added to XS code for ancient source code compatibility reasons. The result is about a ~60K size reduction in the binary (based on comparing two 64-bit stripped irssi binaries compiled --with-perl-staticlib).
60 lines
1.2 KiB
Plaintext
60 lines
1.2 KiB
Plaintext
#define PERL_NO_GET_CONTEXT
|
|
#include "module.h"
|
|
|
|
MODULE = Irssi::Irc::Notifylist PACKAGE = Irssi::Irc
|
|
PROTOTYPES: ENABLE
|
|
|
|
void
|
|
notifies()
|
|
PREINIT:
|
|
GSList *tmp;
|
|
PPCODE:
|
|
for (tmp = notifies; tmp != NULL; tmp = tmp->next) {
|
|
XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::Irc::Notifylist")));
|
|
}
|
|
|
|
Irssi::Irc::Notifylist
|
|
notifylist_add(mask, ircnets, away_check, idle_check_time)
|
|
char *mask
|
|
char *ircnets
|
|
int away_check
|
|
int idle_check_time
|
|
CODE:
|
|
if (idle_check_time != 0)
|
|
croak("Notify -idle has been removed");
|
|
RETVAL = notifylist_add(mask, ircnets, away_check);
|
|
OUTPUT:
|
|
RETVAL
|
|
|
|
void
|
|
notifylist_remove(mask)
|
|
char *mask
|
|
|
|
Irssi::Irc::Server
|
|
notifylist_ison(nick, serverlist)
|
|
char *nick
|
|
char *serverlist
|
|
|
|
Irssi::Irc::Notifylist
|
|
notifylist_find(mask, ircnet)
|
|
char *mask
|
|
char *ircnet
|
|
|
|
#*******************************
|
|
MODULE = Irssi::Irc::Notifylist PACKAGE = Irssi::Irc::Server
|
|
#*******************************
|
|
|
|
int
|
|
notifylist_ison_server(server, nick)
|
|
Irssi::Irc::Server server
|
|
char *nick
|
|
|
|
#*******************************
|
|
MODULE = Irssi::Irc::Notifylist PACKAGE = Irssi::Irc::Notifylist PREFIX = notifylist_
|
|
#*******************************
|
|
|
|
int
|
|
notifylist_ircnets_match(rec, ircnet)
|
|
Irssi::Irc::Notifylist rec
|
|
char *ircnet
|