]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/external.h
handle filter computed in a more granular way (ITS#2977)
[openldap] / servers / slapd / back-meta / 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 2001-2003 Pierangelo Masarati.
6  * Portions Copyright 1999-2003 Howard Chu.
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 the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by the Howard Chu for inclusion
19  * in OpenLDAP Software and subsequently enhanced by Pierangelo
20  * Masarati.
21  */
22
23 #ifndef META_EXTERNAL_H
24 #define META_EXTERNAL_H
25
26 LDAP_BEGIN_DECL
27
28 extern BI_init  meta_back_initialize;
29 extern BI_open  meta_back_open;
30 extern BI_close meta_back_close;
31 extern BI_destroy       meta_back_destroy;
32
33 extern BI_db_init       meta_back_db_init;
34 extern BI_db_destroy    meta_back_db_destroy;
35 extern BI_db_config     meta_back_db_config;
36
37 extern BI_op_bind       meta_back_bind;
38 extern BI_connection_destroy    meta_back_conn_destroy;
39 extern BI_op_search     meta_back_search;
40 extern BI_op_compare    meta_back_compare;
41 extern BI_op_modify     meta_back_modify;
42 extern BI_op_modrdn     meta_back_modrdn;
43 extern BI_op_add        meta_back_add;
44 extern BI_op_delete     meta_back_delete;
45 extern BI_op_abandon    meta_back_abandon;
46
47 LDAP_END_DECL
48
49 #endif /* META_EXTERNAL_H */