1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
1999-01-14 01:33:09 -05:00
|
|
|
#ifndef PERL_BACK_H
|
|
|
|
|
#define PERL_BACK_H 1
|
|
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
|
|
|
|
|
/*
|
2002-04-15 23:47:39 -04:00
|
|
|
* From Apache mod_perl: test for Perl version.[ja
|
1999-01-14 01:33:09 -05:00
|
|
|
*/
|
2002-04-15 23:47:39 -04:00
|
|
|
#ifdef pTHX_
|
|
|
|
|
#define PERL_IS_5_6
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-01-14 01:33:09 -05:00
|
|
|
#define EVAL_BUF_SIZE 500
|
|
|
|
|
|
2002-04-15 23:47:39 -04:00
|
|
|
#ifdef pTHX_
|
|
|
|
|
#define PERL_IS_5_6
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-01-14 01:33:09 -05:00
|
|
|
extern PerlInterpreter *perl_interpreter;
|
1999-01-27 23:34:55 -05:00
|
|
|
extern ldap_pvt_thread_mutex_t perl_interpreter_mutex;
|
1999-01-14 01:33:09 -05:00
|
|
|
|
|
|
|
|
typedef struct perl_backend_instance {
|
2002-04-15 23:47:39 -04:00
|
|
|
char *pb_module_name;
|
|
|
|
|
SV *pb_obj_ref;
|
|
|
|
|
int pb_filter_search_results;
|
1999-01-14 01:33:09 -05:00
|
|
|
} PerlBackend;
|
|
|
|
|
|
|
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
#include "external.h"
|
|
|
|
|
|
1999-01-14 01:33:09 -05:00
|
|
|
#endif
|