mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
403f4479bc
Replace old Id as needed (back-tcl). Leave updating of contribWare to contributors (for now).
24 lines
354 B
C
24 lines
354 B
C
/* $OpenLDAP$ */
|
|
#ifndef PERL_BACK_H
|
|
#define PERL_BACK_H 1
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
/*
|
|
*/
|
|
#define EVAL_BUF_SIZE 500
|
|
|
|
extern PerlInterpreter *perl_interpreter;
|
|
extern ldap_pvt_thread_mutex_t perl_interpreter_mutex;
|
|
|
|
typedef struct perl_backend_instance {
|
|
char *pb_module_name;
|
|
SV *pb_obj_ref;
|
|
} PerlBackend;
|
|
|
|
LDAP_END_DECL
|
|
|
|
#include "external.h"
|
|
|
|
#endif
|