]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/external.h
89cd9cbecf1523fff90586f495815d30a85ab643
[openldap] / servers / slapd / back-perl / external.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2004 The OpenLDAP Foundation.
5  * Portions Copyright 1999 John C. Quillan.
6  * Portions Copyright 2002 myinternet Limited.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17
18 #ifndef _PERL_EXTERNAL_H
19 #define _PERL_EXTERNAL_H
20
21 LDAP_BEGIN_DECL
22
23 extern BI_init  perl_back_initialize;
24 extern BI_open  perl_back_open;
25 extern BI_close perl_back_close;
26 extern BI_destroy       perl_back_destroy;
27
28 extern BI_db_init       perl_back_db_init;
29 extern BI_db_open       perl_back_db_open;
30 extern BI_db_destroy    perl_back_db_destroy;
31
32 extern BI_db_config     perl_back_db_config;
33
34 extern BI_op_bind       perl_back_bind;
35
36 extern BI_op_search     perl_back_search;
37
38 extern BI_op_compare    perl_back_compare;
39
40 extern BI_op_modify     perl_back_modify;
41
42 extern BI_op_modrdn     perl_back_modrdn;
43
44 extern BI_op_add        perl_back_add;
45
46 extern BI_op_delete     perl_back_delete;
47
48 LDAP_END_DECL
49
50 #endif /* _PERL_EXTERNAL_H */