mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02:00
15 lines
408 B
C
15 lines
408 B
C
|
|
#ifndef __PERL_SOURCES_H
|
||
|
|
#define __PERL_SOURCES_H
|
||
|
|
|
||
|
|
int perl_timeout_add(int msecs, const char *func, const char *data);
|
||
|
|
int perl_input_add(int source, int condition,
|
||
|
|
const char *func, const char *data);
|
||
|
|
|
||
|
|
void perl_source_remove(int tag);
|
||
|
|
/* remove all sources used by package */
|
||
|
|
void perl_source_remove_package(const char *package);
|
||
|
|
|
||
|
|
void perl_sources_start(void);
|
||
|
|
void perl_sources_stop(void);
|
||
|
|
|
||
|
|
#endif
|