]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/external.h
Sync with HEAD
[openldap] / servers / slapd / back-ldap / external.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 2003 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* ACKNOWLEDGEMENTS:
16  * This work was initially developed by the Howard Chu for inclusion
17  * in OpenLDAP Software and subsequently enhanced by Pierangelo
18  * Masarati.
19  */
20 /* This is an altered version */
21
22 #ifndef _LDAP_EXTERNAL_H
23 #define _LDAP_EXTERNAL_H
24
25 LDAP_BEGIN_DECL
26
27 extern BI_init  ldap_back_initialize;
28 extern BI_open  ldap_back_open;
29 extern BI_close ldap_back_close;
30 extern BI_destroy       ldap_back_destroy;
31
32 extern BI_db_init       ldap_back_db_init;
33 extern BI_db_destroy    ldap_back_db_destroy;
34
35 extern BI_db_config     ldap_back_db_config;
36
37 extern BI_op_bind       ldap_back_bind;
38
39 extern BI_connection_destroy    ldap_back_conn_destroy;
40
41 extern BI_op_search     ldap_back_search;
42
43 extern BI_op_compare    ldap_back_compare;
44
45 extern BI_op_modify     ldap_back_modify;
46
47 extern BI_op_modrdn     ldap_back_modrdn;
48
49 extern BI_op_add        ldap_back_add;
50
51 extern BI_op_delete     ldap_back_delete;
52
53 extern BI_op_abandon    ldap_back_abandon;
54
55 extern BI_op_extended   ldap_back_extended;
56
57 extern BI_entry_get_rw  ldap_back_entry_get;
58
59 LDAP_END_DECL
60
61 #endif /* _LDAP_EXTERNAL_H */