1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-09 06:20:45 +00:00
irssi/src/perl/perl-sources.h
2019-05-01 22:22:22 +02:00

15 lines
411 B
C

#ifndef IRSSI_PERL_PERL_SOURCES_H
#define IRSSI_PERL_PERL_SOURCES_H
int perl_timeout_add(int msecs, SV *func, SV *data, int once);
int perl_input_add(int source, int condition, SV *func, SV *data, int once);
void perl_source_remove(int tag);
/* remove all sources used by script */
void perl_source_remove_script(PERL_SCRIPT_REC *script);
void perl_sources_start(void);
void perl_sources_stop(void);
#endif