mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
902280eca7
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2992 dbcabf3a-b0e7-0310-adc4-f8d773084564
15 lines
393 B
C
15 lines
393 B
C
#ifndef __PERL_SOURCES_H
|
|
#define __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
|