~ubuntu-branches/ubuntu/intrepid/irssi/intrepid-updates

« back to all changes in this revision

Viewing changes to src/perl/perl-sources.h

  • Committer: Bazaar Package Importer
  • Author(s): David Pashley
  • Date: 2005-12-10 21:25:51 UTC
  • Revision ID: james.westby@ubuntu.com-20051210212551-5qwm108g7inyu2f2
Tags: upstream-0.8.10
ImportĀ upstreamĀ versionĀ 0.8.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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