mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
b7beec1663
John's still working on the 'perl-test' (the perl backend test module).
23 lines
331 B
C
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
|