openldap/servers/slapd/back-sql/external.h

42 lines
1.1 KiB
C
Raw Normal View History

2000-03-17 03:08:22 +08:00
/* $OpenLDAP$ */
#ifndef _SQL_EXTERNAL_H
#define _SQL_EXTERNAL_H
/*
* Copyright 1999, Dmitry Kovalev <mit@openldap.org>, All rights reserved.
*
* Redistribution and use in source and binary forms are permitted only
* as authorized by the OpenLDAP Public License. A copy of this
* license is available at http://www.OpenLDAP.org/license.html or
* in file LICENSE in the top-level directory of the distribution.
*/
2000-03-17 03:08:22 +08:00
LDAP_BEGIN_DECL
extern BI_init sql_back_initialize;
extern BI_destroy backsql_destroy;
2000-03-17 03:08:22 +08:00
extern BI_db_init backsql_db_init;
extern BI_db_open backsql_db_open;
extern BI_db_close backsql_db_close;
extern BI_db_destroy backsql_db_destroy;
2000-03-17 03:08:22 +08:00
extern BI_db_config backsql_db_config;
2000-03-17 03:08:22 +08:00
extern BI_op_bind backsql_bind;
extern BI_op_unbind backsql_unbind;
extern BI_op_search backsql_search;
extern BI_op_compare backsql_compare;
extern BI_op_modify backsql_modify;
extern BI_op_modrdn backsql_modrdn;
extern BI_op_add backsql_add;
extern BI_op_delete backsql_delete;
extern BI_op_abandon backsql_abandon;
2000-03-17 03:08:22 +08:00
extern BI_connection_destroy backsql_connection_destroy;
2000-03-17 03:08:22 +08:00
LDAP_END_DECL
#endif /* _SQL_EXTERNAL_H */