mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
31dcd8258f
variants now also allow use of code references. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2199 dbcabf3a-b0e7-0310-adc4-f8d773084564
15 lines
373 B
C
15 lines
373 B
C
#ifndef __PERL_SOURCES_H
|
|
#define __PERL_SOURCES_H
|
|
|
|
int perl_timeout_add(int msecs, SV *func, SV *data);
|
|
int perl_input_add(int source, int condition, SV *func, SV *data);
|
|
|
|
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
|