2019-05-01 22:22:22 +02:00
|
|
|
#ifndef IRSSI_PERL_PERL_SOURCES_H
|
|
|
|
|
#define IRSSI_PERL_PERL_SOURCES_H
|
2001-07-29 09:17:53 +00:00
|
|
|
|
2002-11-10 10:14:18 +00:00
|
|
|
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);
|
2001-07-29 09:17:53 +00:00
|
|
|
|
|
|
|
|
void perl_source_remove(int tag);
|
2001-12-06 17:17:40 +00:00
|
|
|
/* remove all sources used by script */
|
|
|
|
|
void perl_source_remove_script(PERL_SCRIPT_REC *script);
|
2001-07-29 09:17:53 +00:00
|
|
|
|
|
|
|
|
void perl_sources_start(void);
|
|
|
|
|
void perl_sources_stop(void);
|
|
|
|
|
|
|
|
|
|
#endif
|