]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/external.h
Fix LBER_ERROR vs. -1 confusion.
[openldap] / servers / slapd / back-monitor / external.h
1 /*
2  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5 /*
6  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
7  * 
8  * This work has beed deveolped for the OpenLDAP Foundation 
9  * in the hope that it may be useful to the Open Source community, 
10  * but WITHOUT ANY WARRANTY.
11  * 
12  * Permission is granted to anyone to use this software for any purpose
13  * on any computer system, and to alter it and redistribute it, subject
14  * to the following restrictions:
15  * 
16  * 1. The author and SysNet s.n.c. are not responsible for the consequences
17  *    of use of this software, no matter how awful, even if they arise from
18  *    flaws in it.
19  * 
20  * 2. The origin of this software must not be misrepresented, either by
21  *    explicit claim or by omission.  Since few users ever read sources,
22  *    credits should appear in the documentation.
23  * 
24  * 3. Altered versions must be plainly marked as such, and must not be
25  *    misrepresented as being the original software.  Since few users
26  *    ever read sources, credits should appear in the documentation.
27  *    SysNet s.n.c. cannot be responsible for the consequences of the
28  *    alterations.
29  * 
30  * 4. This notice may not be removed or altered.
31  */
32
33 #ifndef _MONITOR_EXTERNAL_H
34 #define _MONITOR_EXTERNAL_H
35
36 LDAP_BEGIN_DECL
37
38 extern BI_init  monitor_back_initialize;
39 extern BI_db_init       monitor_back_db_init;
40 extern BI_db_open       monitor_back_db_open;
41 extern BI_config        monitor_back_config;
42 extern BI_db_config     monitor_back_db_config;
43
44 extern BI_db_destroy    monitor_back_db_destroy;
45
46 extern BI_op_search     monitor_back_search;
47 extern BI_op_compare    monitor_back_compare;
48 extern BI_op_modify     monitor_back_modify;
49 extern BI_op_bind       monitor_back_bind;
50 extern BI_operational   monitor_back_operational;
51
52 LDAP_END_DECL
53
54 #endif /* _MONITOR_EXTERNAL_H */