xref: /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-perl/proto-perl.h (revision b1c86f5f087524e68db12794ee9c3e3da1ab17a0)
1 /*	$NetBSD: proto-perl.h,v 1.1.1.2 2010/03/08 02:14:20 lukem Exp $	*/
2 
3 /* OpenLDAP: pkg/ldap/servers/slapd/back-perl/proto-perl.h,v 1.5.2.5 2009/01/22 00:01:09 kurt Exp */
4 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5  *
6  * Copyright 1999-2009 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 LDAP_END_DECL
43 
44 #endif /* PROTO_PERL_H */
45