xref: /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-perl/proto-perl.h (revision 549b59ed3ccf0d36d3097190a0db27b770f3a839)
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 
23 LDAP_BEGIN_DECL
24 
25 extern BI_init		perl_back_initialize;
26 
27 extern BI_close		perl_back_close;
28 
29 extern BI_db_init	perl_back_db_init;
30 extern BI_db_open	perl_back_db_open;
31 extern BI_db_destroy	perl_back_db_destroy;
32 extern BI_db_config	perl_back_db_config;
33 
34 extern BI_op_bind	perl_back_bind;
35 extern BI_op_search	perl_back_search;
36 extern BI_op_compare	perl_back_compare;
37 extern BI_op_modify	perl_back_modify;
38 extern BI_op_modrdn	perl_back_modrdn;
39 extern BI_op_add	perl_back_add;
40 extern BI_op_delete	perl_back_delete;
41 
42 extern int perl_back_init_cf( BackendInfo *bi );
43 LDAP_END_DECL
44 
45 #endif /* PROTO_PERL_H */
46