2000-09-19 02:51:07 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 2000-2002 The OpenLDAP Foundation, All Rights Reserved.
|
2000-09-19 02:51:07 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BDB_EXTERNAL_H
|
|
|
|
#define _BDB_EXTERNAL_H
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
2001-12-26 16:17:44 +08:00
|
|
|
extern BI_init bdb_initialize;
|
|
|
|
|
|
|
|
extern BI_db_config bdb_db_config;
|
|
|
|
|
|
|
|
extern BI_op_add bdb_add;
|
|
|
|
|
|
|
|
extern BI_op_bind bdb_bind;
|
|
|
|
|
|
|
|
extern BI_op_compare bdb_compare;
|
|
|
|
|
|
|
|
extern BI_op_delete bdb_delete;
|
|
|
|
|
|
|
|
extern BI_op_modify bdb_modify;
|
|
|
|
|
|
|
|
extern BI_op_modrdn bdb_modrdn;
|
|
|
|
|
|
|
|
extern BI_op_search bdb_search;
|
|
|
|
|
2002-01-01 19:38:30 +08:00
|
|
|
extern BI_op_extended bdb_extended;
|
2001-12-26 16:17:44 +08:00
|
|
|
|
|
|
|
extern BI_chk_referrals bdb_referrals;
|
2000-09-26 11:47:56 +08:00
|
|
|
|
2001-12-27 08:31:55 +08:00
|
|
|
/* tools.c */
|
|
|
|
extern BI_tool_entry_open bdb_tool_entry_open;
|
|
|
|
extern BI_tool_entry_close bdb_tool_entry_close;
|
|
|
|
extern BI_tool_entry_next bdb_tool_entry_next;
|
|
|
|
extern BI_tool_entry_get bdb_tool_entry_get;
|
|
|
|
extern BI_tool_entry_put bdb_tool_entry_put;
|
|
|
|
extern BI_tool_entry_reindex bdb_tool_entry_reindex;
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-09-19 02:51:07 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
|
|
#endif /* _BDB_EXTERNAL_H */
|
|
|
|
|