1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2000-05-16 00:35:48 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1999-02-05 17:03:47 +08:00
|
|
|
#ifndef _SHELL_EXTERNAL_H
|
|
|
|
#define _SHELL_EXTERNAL_H
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_init shell_back_initialize;
|
|
|
|
extern BI_open shell_back_open;
|
|
|
|
extern BI_close shell_back_close;
|
|
|
|
extern BI_destroy shell_back_destroy;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_db_init shell_back_db_init;
|
|
|
|
extern BI_db_destroy shell_back_db_destroy;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_db_config shell_back_db_config;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_op_bind shell_back_bind;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_op_unbind shell_back_unbind;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_op_search shell_back_search;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_op_compare shell_back_compare;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_op_modify shell_back_modify;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-27 01:51:07 +08:00
|
|
|
extern BI_op_modrdn shell_back_modrdn;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_op_add shell_back_add;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_op_delete shell_back_delete;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2001-12-26 16:47:04 +08:00
|
|
|
extern BI_op_abandon shell_back_abandon;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
|
|
#endif /* _SHELL_EXTERNAL_H */
|