Added SILC Thread Queue API
[crypto.git] / apps / irssi / src / perl / perl-sources.h
1 #ifndef __PERL_SOURCES_H
2 #define __PERL_SOURCES_H
3
4 int perl_timeout_add(int msecs, SV *func, SV *data, int once);
5 int perl_input_add(int source, int condition, SV *func, SV *data, int once);
6
7 void perl_source_remove(int tag);
8 /* remove all sources used by script */
9 void perl_source_remove_script(PERL_SCRIPT_REC *script);
10
11 void perl_sources_start(void);
12 void perl_sources_stop(void);
13
14 #endif