mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 08:02:13 +02:00
Irssi::signal_add(), Irssi::timeout_add(), Irssi::input_add() and their
variants now also allow use of code references. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2199 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
9dd46372ff
commit
31dcd8258f
8 changed files with 112 additions and 82 deletions
|
|
@ -1,12 +1,12 @@
|
|||
#ifndef __PERL_SOURCES_H
|
||||
#define __PERL_SOURCES_H
|
||||
|
||||
int perl_timeout_add(int msecs, const char *func, SV *data);
|
||||
int perl_input_add(int source, int condition, const char *func, SV *data);
|
||||
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 package */
|
||||
void perl_source_remove_package(const char *package);
|
||||
/* 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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue