]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/external.h
Happy new year
[openldap] / servers / slapd / back-shell / external.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2004 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms are permitted
19  * provided that this notice is preserved and that due credit is given
20  * to the University of Michigan at Ann Arbor. The name of the University
21  * may not be used to endorse or promote products derived from this
22  * software without specific prior written permission. This software
23  * is provided ``as is'' without express or implied warranty.
24  */
25 /* ACKNOWLEDGEMENTS:
26  * This work was originally developed by the University of Michigan
27  * (as part of U-MICH LDAP).
28  */
29
30 #ifndef _SHELL_EXTERNAL_H
31 #define _SHELL_EXTERNAL_H
32
33 LDAP_BEGIN_DECL
34
35 extern BI_init  shell_back_initialize;
36 extern BI_open  shell_back_open;
37 extern BI_close shell_back_close;
38 extern BI_destroy       shell_back_destroy;
39
40 extern BI_db_init       shell_back_db_init;
41 extern BI_db_destroy    shell_back_db_destroy;
42
43 extern BI_db_config     shell_back_db_config;
44
45 extern BI_op_bind       shell_back_bind;
46
47 extern BI_op_unbind     shell_back_unbind;
48
49 extern BI_op_search     shell_back_search;
50
51 extern BI_op_compare    shell_back_compare;
52
53 extern BI_op_modify     shell_back_modify;
54
55 extern BI_op_modrdn     shell_back_modrdn;
56
57 extern BI_op_add        shell_back_add;
58
59 extern BI_op_delete     shell_back_delete;
60
61 LDAP_END_DECL
62
63 #endif /* _SHELL_EXTERNAL_H */