chiark / gitweb /
check fd watches; other bugfixes
[inn-innduct.git] / include / innperl.h
1 /*  $Id: innperl.h 5302 2002-03-12 20:10:46Z rra $
2 **
3 **  Declarations for embedded Perl.
4 */
5
6 #ifndef INNPERL_H
7 #define INNPERL_H 1
8
9 /* Skip this entire file if DO_PERL (./configure --with-perl) isn't set. */
10 #if DO_PERL
11
12 #include "config.h"
13
14 BEGIN_DECLS
15
16 extern bool PerlFilterActive;
17
18 extern bool PerlFilter(bool value);
19 extern void PerlClose(void);
20 extern void PERLsetup(char *startupfile, char *filterfile,
21                       const char *function);
22 extern int  PERLreadfilter(char *filterfile, const char *function);
23
24 END_DECLS
25
26 #endif /* DO_PERL */
27 #endif /* !INNPERL_H */