mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
61 lines
1.5 KiB
C
61 lines
1.5 KiB
C
/* $OpenLDAP$ */
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
*
|
|
* Copyright 2003-2004 The OpenLDAP Foundation.
|
|
* 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>.
|
|
*/
|
|
/* ACKNOWLEDGEMENTS:
|
|
* This work was initially developed by the Howard Chu for inclusion
|
|
* in OpenLDAP Software and subsequently enhanced by Pierangelo
|
|
* Masarati.
|
|
*/
|
|
|
|
#ifndef _LDAP_EXTERNAL_H
|
|
#define _LDAP_EXTERNAL_H
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
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;
|
|
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;
|
|
|
|
extern BI_op_extended ldap_back_extended;
|
|
|
|
extern BI_entry_get_rw ldap_back_entry_get;
|
|
|
|
LDAP_END_DECL
|
|
|
|
#endif /* _LDAP_EXTERNAL_H */
|