1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-29 05:08:20 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 1998-2004 The OpenLDAP Foundation.
|
2003-11-29 05:08:20 +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>.
|
1999-08-05 07:59:13 +08:00
|
|
|
*/
|
1999-08-07 07:07:46 +08:00
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
#ifndef _LDBM_EXTERNAL_H
|
|
|
|
#define _LDBM_EXTERNAL_H
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
2001-12-26 16:17:44 +08:00
|
|
|
extern BI_init ldbm_back_initialize;
|
|
|
|
extern BI_open ldbm_back_open;
|
|
|
|
extern BI_close ldbm_back_close;
|
|
|
|
extern BI_destroy ldbm_back_destroy;
|
|
|
|
|
|
|
|
extern BI_db_init ldbm_back_db_init;
|
|
|
|
extern BI_db_open ldbm_back_db_open;
|
|
|
|
extern BI_db_close ldbm_back_db_close;
|
|
|
|
extern BI_db_destroy ldbm_back_db_destroy;
|
|
|
|
|
|
|
|
extern BI_db_config ldbm_back_db_config;
|
|
|
|
|
|
|
|
extern BI_op_extended ldbm_back_extended;
|
|
|
|
|
|
|
|
extern BI_op_bind ldbm_back_bind;
|
|
|
|
|
|
|
|
extern BI_op_search ldbm_back_search;
|
|
|
|
|
|
|
|
extern BI_op_compare ldbm_back_compare;
|
|
|
|
|
|
|
|
extern BI_op_modify ldbm_back_modify;
|
|
|
|
|
|
|
|
extern BI_op_modrdn ldbm_back_modrdn;
|
|
|
|
|
|
|
|
extern BI_op_add ldbm_back_add;
|
|
|
|
|
|
|
|
extern BI_op_delete ldbm_back_delete;
|
|
|
|
|
|
|
|
extern BI_operational ldbm_back_operational;
|
1999-08-18 03:00:59 +08:00
|
|
|
|
2002-10-27 00:18:31 +08:00
|
|
|
extern BI_has_subordinates ldbm_back_hasSubordinates;
|
|
|
|
|
1999-08-18 03:00:59 +08:00
|
|
|
/* hooks for slap tools */
|
2001-12-26 16:17:44 +08:00
|
|
|
extern BI_tool_entry_open ldbm_tool_entry_open;
|
|
|
|
extern BI_tool_entry_close ldbm_tool_entry_close;
|
|
|
|
extern BI_tool_entry_first ldbm_tool_entry_first;
|
|
|
|
extern BI_tool_entry_next ldbm_tool_entry_next;
|
|
|
|
extern BI_tool_entry_get ldbm_tool_entry_get;
|
|
|
|
extern BI_tool_entry_put ldbm_tool_entry_put;
|
2000-02-29 05:16:05 +08:00
|
|
|
|
2001-12-26 16:17:44 +08:00
|
|
|
extern BI_tool_entry_reindex ldbm_tool_entry_reindex;
|
|
|
|
extern BI_tool_sync ldbm_tool_sync;
|
1999-08-18 03:00:59 +08:00
|
|
|
|
2001-12-26 16:17:44 +08:00
|
|
|
extern BI_chk_referrals ldbm_back_referrals;
|
2000-06-17 15:45:40 +08:00
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
|
|
#endif /* _LDBM_EXTERNAL_H */
|