1999-08-31 01:17:01 +00:00
|
|
|
/* $OpenLDAP$ */
|
1998-12-28 19:51:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
|
|
|
*/
|
1998-10-25 01:41:42 +00:00
|
|
|
/* LDAP C Defines */
|
|
|
|
|
|
|
|
#ifndef _LDAP_CDEFS_H
|
|
|
|
#define _LDAP_CDEFS_H
|
|
|
|
|
1999-07-13 18:41:00 +00:00
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
1998-10-25 01:41:42 +00:00
|
|
|
# define LDAP_BEGIN_DECL extern "C" {
|
|
|
|
# define LDAP_END_DECL }
|
|
|
|
#else
|
1998-12-23 20:01:15 +00:00
|
|
|
# define LDAP_BEGIN_DECL /* begin declarations */
|
|
|
|
# define LDAP_END_DECL /* end declarations */
|
1998-10-25 01:41:42 +00:00
|
|
|
#endif
|
|
|
|
|
1999-07-13 18:41:00 +00:00
|
|
|
#if !defined(__NO_PROTOTYPES) && ( defined(__NEED_PROTOTYPES) || \
|
|
|
|
defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus) )
|
1998-11-12 20:30:42 +00:00
|
|
|
|
1998-10-25 01:41:42 +00:00
|
|
|
/* ANSI C or C++ */
|
|
|
|
# define LDAP_P(protos) protos
|
|
|
|
# define LDAP_CONCAT1(x,y) x ## y
|
|
|
|
# define LDAP_CONCAT(x,y) LDAP_CONCAT1(x,y)
|
|
|
|
# define LDAP_STRING(x) #x /* stringify without expanding x */
|
|
|
|
# define LDAP_XSTRING(x) LDAP_STRING(x) /* expand x, then stringify */
|
1998-11-12 20:30:42 +00:00
|
|
|
|
1999-05-03 21:10:35 +00:00
|
|
|
#ifndef LDAP_CONST
|
|
|
|
# define LDAP_CONST const
|
|
|
|
#endif
|
|
|
|
|
1998-11-12 20:30:42 +00:00
|
|
|
#else /* no prototypes */
|
|
|
|
|
1998-10-25 01:41:42 +00:00
|
|
|
/* traditional C */
|
|
|
|
# define LDAP_P(protos) ()
|
|
|
|
# define LDAP_CONCAT(x,y) x/**/y
|
|
|
|
# define LDAP_STRING(x) "x"
|
1998-11-12 20:30:42 +00:00
|
|
|
|
1999-05-03 21:10:35 +00:00
|
|
|
#ifndef LDAP_CONST
|
|
|
|
# define LDAP_CONST /* no const */
|
|
|
|
#endif
|
|
|
|
|
1998-11-12 20:30:42 +00:00
|
|
|
#endif /* no prototypes */
|
|
|
|
|
1999-09-03 21:06:33 +00:00
|
|
|
#if (__GNUC__) * 1000 + (__GNUC_MINOR__) >= 2006
|
|
|
|
# define LDAP_GCCATTR(attrs) __attribute__(attrs)
|
|
|
|
#else
|
|
|
|
# define LDAP_GCCATTR(attrs)
|
|
|
|
#endif
|
|
|
|
|
1999-12-18 19:49:13 +00:00
|
|
|
|
|
|
|
/* Support for NT dynamic libraries. */
|
1999-09-03 21:06:33 +00:00
|
|
|
|
1999-11-27 23:40:08 +00:00
|
|
|
/*
|
|
|
|
* C library. Mingw32 links with the C run-time library by default,
|
|
|
|
* so the explicit definition of CSTATIC will keep dllimport from
|
|
|
|
* being defined.
|
|
|
|
*/
|
|
|
|
#if (defined(__MINGW32__) && !defined(CSTATIC) || \
|
|
|
|
defined(_WIN32) && defined(_DLL))
|
|
|
|
# define LIBC_F(type) extern __declspec(dllimport) type
|
|
|
|
#else
|
|
|
|
# define LIBC_F(type) extern type
|
|
|
|
#endif
|
1998-10-25 01:41:42 +00:00
|
|
|
|
1999-11-27 23:40:08 +00:00
|
|
|
/* AVL library */
|
|
|
|
#if defined(LIBAVL_DECL) && defined(_WIN32)
|
|
|
|
# define LIBAVL_F(type) extern __declspec(LIBAVL_DECL) type
|
|
|
|
#else
|
|
|
|
# define LIBAVL_F(type) extern type
|
1999-06-03 18:24:22 +00:00
|
|
|
#endif
|
1999-11-27 23:40:08 +00:00
|
|
|
|
|
|
|
/* LBER library */
|
|
|
|
#if defined(LIBLBER_DECL) && defined(_WIN32)
|
|
|
|
# define LIBLBER_F(type) extern __declspec(LIBLBER_DECL) type
|
|
|
|
#else
|
|
|
|
# define LIBLBER_F(type) extern type
|
1999-06-03 18:24:22 +00:00
|
|
|
#endif
|
1999-11-27 23:40:08 +00:00
|
|
|
|
|
|
|
/* LDAP library */
|
|
|
|
#if defined(LIBLDAP_DECL) && defined(_WIN32)
|
|
|
|
# define LIBLDAP_F(type) extern __declspec(LIBLDAP_DECL) type
|
|
|
|
#else
|
|
|
|
# define LIBLDAP_F(type) extern type
|
1999-05-19 01:12:33 +00:00
|
|
|
#endif
|
1998-10-25 01:41:42 +00:00
|
|
|
|
1999-11-27 23:40:08 +00:00
|
|
|
/* LDBM library */
|
|
|
|
#if defined(LIBLDBM_DECL) && defined(_WIN32)
|
|
|
|
# define LIBLDBM_F(type) extern __declspec(LIBLDBM_DECL) type
|
|
|
|
#else
|
|
|
|
# define LIBLDBM_F(type) extern type
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* LDIF library */
|
|
|
|
#if defined(LIBLDIF_DECL) && defined(_WIN32)
|
|
|
|
# define LIBLDIF_F(type) extern __declspec(LIBLDIF_DECL) type
|
|
|
|
#else
|
|
|
|
# define LIBLDIF_F(type) extern type
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* LUTIL library */
|
|
|
|
#if defined(LIBLUTIL_DECL) && defined(_WIN32)
|
|
|
|
# define LIBLUTIL_F(type) extern __declspec(LIBLUTIL_DECL) type
|
|
|
|
#else
|
|
|
|
# define LIBLUTIL_F(type) extern type
|
|
|
|
#endif
|
|
|
|
|
1999-12-17 05:37:33 +00:00
|
|
|
/* SLAPD (as a module exporting symbols) */
|
1999-11-27 23:40:08 +00:00
|
|
|
#if defined(LIBSLAPD_DECL) && defined(_WIN32)
|
|
|
|
# define LIBSLAPD_F(type) extern __declspec(LIBSLAPD_DECL) type
|
|
|
|
#else
|
|
|
|
# define LIBSLAPD_F(type) extern type
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _LDAP_CDEFS_H */
|