]> git.sur5r.net Git - openldap/blob - servers/slapd/back-sql/external.h
cleanup
[openldap] / servers / slapd / back-sql / 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 Dmitry Kovalev.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by Dmitry Kovalev for inclusion
18  * by OpenLDAP Software.
19  */
20
21 #ifndef _SQL_EXTERNAL_H
22 #define _SQL_EXTERNAL_H
23
24 LDAP_BEGIN_DECL
25
26 extern BI_init          sql_back_initialize;
27 extern BI_destroy       backsql_destroy;
28
29 extern BI_db_init       backsql_db_init;
30 extern BI_db_open       backsql_db_open;
31 extern BI_db_close      backsql_db_close;
32 extern BI_db_destroy    backsql_db_destroy;
33
34 extern BI_db_config     backsql_db_config;
35
36 extern BI_op_bind       backsql_bind;
37 extern BI_op_search     backsql_search;
38 extern BI_op_compare    backsql_compare;
39 extern BI_op_modify     backsql_modify;
40 extern BI_op_modrdn     backsql_modrdn;
41 extern BI_op_add        backsql_add;
42 extern BI_op_delete     backsql_delete;
43
44 extern BI_operational   backsql_operational;
45
46 extern BI_connection_destroy    backsql_connection_destroy;
47
48 LDAP_END_DECL
49
50 #endif /* _SQL_EXTERNAL_H */