openldap/servers/slapd/back-perl/perl_back.h
Kurt Zeilenga b7beec1663 Initial version of the experimental 'back-perl'
John's still working on the 'perl-test' (the perl backend test module).
1999-01-14 06:33:09 +00:00

23 lines
331 B
C

#ifndef PERL_BACK_H
#define PERL_BACK_H 1
#include <ldap_cdefs.h>
LDAP_BEGIN_DECL
/*
*/
#define EVAL_BUF_SIZE 500
extern PerlInterpreter *perl_interpreter;
extern pthread_mutex_t perl_interpreter_mutex;
typedef struct perl_backend_instance {
char *pb_module_name;
SV *pb_obj_ref;
} PerlBackend;
LDAP_END_DECL
#endif