]> git.sur5r.net Git - openldap/blob - include/lber_pvt.h
Delete obsolete symbols acl_access_allowed and acl_get_applicable
[openldap] / include / lber_pvt.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11 /*
12  * lber_pvt.h - Header for ber_pvt_ functions. These are meant to be used
13  *              by the OpenLDAP distribution only.
14  */
15
16 #ifndef _LBER_PVT_H
17 #define _LBER_PVT_H 1
18
19 #include <lber.h>
20
21 LDAP_BEGIN_DECL
22
23 #ifdef __MINGW32__
24 #   undef LDAP_F_PRE
25 #   ifdef LIBLBER_DECL
26 #       define LDAP_F_PRE       extern __declspec(LIBLBER_DECL)
27 #   else
28 #       define LDAP_F_PRE       extern
29 #   endif
30 #endif
31
32 /*
33  * bprint.c
34  */
35 LDAP_F( BER_LOG_PRINT_FN ) ber_pvt_log_print;
36
37 LDAP_F( int )
38 ber_pvt_log_printf LDAP_P((
39         int errlvl,
40         int loglvl,
41         const char *fmt,
42         ... )) LDAP_GCCATTR((format(printf, 3, 4)));
43
44 LDAP_END_DECL
45
46 #endif
47