2001-10-20 19:52:07 +00:00
|
|
|
#include "module.h"
|
|
|
|
|
|
|
|
|
|
MODULE = Irssi::Rawlog PACKAGE = Irssi
|
|
|
|
|
PROTOTYPES: ENABLE
|
2000-04-28 08:07:42 +00:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
rawlog_set_size(lines)
|
|
|
|
|
int lines
|
|
|
|
|
|
|
|
|
|
Irssi::Rawlog
|
|
|
|
|
rawlog_create()
|
|
|
|
|
|
|
|
|
|
#*******************************
|
2001-10-20 19:52:07 +00:00
|
|
|
MODULE = Irssi::Rawlog PACKAGE = Irssi::Rawlog PREFIX = rawlog_
|
2000-04-28 08:07:42 +00:00
|
|
|
#*******************************
|
|
|
|
|
|
2001-07-01 10:53:35 +00:00
|
|
|
void
|
|
|
|
|
rawlog_get_lines(rawlog)
|
2001-06-30 09:49:59 +00:00
|
|
|
Irssi::Rawlog rawlog
|
|
|
|
|
PREINIT:
|
|
|
|
|
GSList *tmp;
|
|
|
|
|
PPCODE:
|
|
|
|
|
for (tmp = rawlog->lines; tmp != NULL; tmp = tmp->next) {
|
|
|
|
|
XPUSHs(sv_2mortal(new_pv(tmp->data)));
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-28 08:07:42 +00:00
|
|
|
void
|
|
|
|
|
rawlog_destroy(rawlog)
|
|
|
|
|
Irssi::Rawlog rawlog
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
rawlog_input(rawlog, str)
|
|
|
|
|
Irssi::Rawlog rawlog
|
|
|
|
|
char *str
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
rawlog_output(rawlog, str)
|
|
|
|
|
Irssi::Rawlog rawlog
|
|
|
|
|
char *str
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
rawlog_redirect(rawlog, str)
|
|
|
|
|
Irssi::Rawlog rawlog
|
|
|
|
|
char *str
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
rawlog_open(rawlog, fname)
|
|
|
|
|
Irssi::Rawlog rawlog
|
|
|
|
|
char *fname
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
rawlog_close(rawlog)
|
|
|
|
|
Irssi::Rawlog rawlog
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
rawlog_save(rawlog, fname)
|
|
|
|
|
Irssi::Rawlog rawlog
|
|
|
|
|
char *fname
|