1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 14:35:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 2003-2004 The OpenLDAP Foundation.
|
2003-11-27 14:35:14 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
2001-01-17 15:09:22 +08:00
|
|
|
*/
|
2003-11-27 14:35:14 +08:00
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by the Howard Chu for inclusion
|
|
|
|
* in OpenLDAP Software and subsequently enhanced by Pierangelo
|
|
|
|
* Masarati.
|
|
|
|
*/
|
2001-01-17 15:09:22 +08:00
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
#ifndef _LDAP_EXTERNAL_H
|
|
|
|
#define _LDAP_EXTERNAL_H
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
2001-12-26 16:17:44 +08:00
|
|
|
extern BI_init ldap_back_initialize;
|
|
|
|
extern BI_open ldap_back_open;
|
|
|
|
extern BI_close ldap_back_close;
|
|
|
|
extern BI_destroy ldap_back_destroy;
|
|
|
|
|
|
|
|
extern BI_db_init ldap_back_db_init;
|
2004-06-21 08:57:12 +08:00
|
|
|
extern BI_db_open ldap_back_db_open;
|
2001-12-26 16:17:44 +08:00
|
|
|
extern BI_db_destroy ldap_back_db_destroy;
|
|
|
|
|
|
|
|
extern BI_db_config ldap_back_db_config;
|
|
|
|
|
|
|
|
extern BI_op_bind ldap_back_bind;
|
|
|
|
|
|
|
|
extern BI_connection_destroy ldap_back_conn_destroy;
|
|
|
|
|
|
|
|
extern BI_op_search ldap_back_search;
|
|
|
|
|
|
|
|
extern BI_op_compare ldap_back_compare;
|
|
|
|
|
|
|
|
extern BI_op_modify ldap_back_modify;
|
|
|
|
|
|
|
|
extern BI_op_modrdn ldap_back_modrdn;
|
|
|
|
|
|
|
|
extern BI_op_add ldap_back_add;
|
|
|
|
|
|
|
|
extern BI_op_delete ldap_back_delete;
|
|
|
|
|
|
|
|
extern BI_op_abandon ldap_back_abandon;
|
|
|
|
|
2003-02-16 17:22:44 +08:00
|
|
|
extern BI_op_extended ldap_back_extended;
|
|
|
|
|
2003-03-26 19:50:03 +08:00
|
|
|
extern BI_entry_get_rw ldap_back_entry_get;
|
2000-06-22 02:23:38 +08:00
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
|
|
#endif /* _LDAP_EXTERNAL_H */
|