1/*	$NetBSD: proto-perl.h,v 1.3 2021/08/14 16:15:01 christos Exp $	*/
2
3/* $OpenLDAP$ */
4/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 *
6 * Copyright 1999-2021 The OpenLDAP Foundation.
7 * Portions Copyright 1999 John C. Quillan.
8 * Portions Copyright 2002 myinternet Limited.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted only as authorized by the OpenLDAP
13 * Public License.
14 *
15 * A copy of this license is available in file LICENSE in the
16 * top-level directory of the distribution or, alternatively, at
17 * <http://www.OpenLDAP.org/license.html>.
18 */
19
20#ifndef PROTO_PERL_H
21#define PROTO_PERL_H
22
23LDAP_BEGIN_DECL
24
25extern BI_init		perl_back_initialize;
26
27extern BI_close		perl_back_close;
28
29extern BI_db_init	perl_back_db_init;
30extern BI_db_open	perl_back_db_open;
31extern BI_db_destroy	perl_back_db_destroy;
32extern BI_db_config	perl_back_db_config;
33
34extern BI_op_bind	perl_back_bind;
35extern BI_op_search	perl_back_search;
36extern BI_op_compare	perl_back_compare;
37extern BI_op_modify	perl_back_modify;
38extern BI_op_modrdn	perl_back_modrdn;
39extern BI_op_add	perl_back_add;
40extern BI_op_delete	perl_back_delete;
41
42extern int perl_back_init_cf( BackendInfo *bi );
43LDAP_END_DECL
44
45#endif /* PROTO_PERL_H */
46