mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 15:49:34 -05:00
added lber_types.h.nt, lber_types.h.in removal of NULLxxx internal macros (in favor of NULL). ch_free added to slapd,slurpd/ch_malloc.c #define free ch_free (should be removed after s/free/ch_free/g) in proto-slap.h ch_malloc and friends use ber_memalloc and friends
30 lines
714 B
C
30 lines
714 B
C
/*
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* LBER types
|
|
*/
|
|
|
|
#ifndef _LBER_TYPES_H
|
|
#define _LBER_TYPES_H
|
|
|
|
/* LBER boolean, enum, integers - 32 bits or larger*/
|
|
#undef LBER_INT_T
|
|
|
|
/* LBER tags - 32 bits or larger */
|
|
#undef LBER_TAG_T
|
|
|
|
/* LBER socket descriptor */
|
|
#undef LBER_SOCKET_T
|
|
|
|
/* LBER lengths - 32 bits or larger*/
|
|
#undef LBER_LEN_T
|
|
|
|
#endif /* _LBER_TYPES_H */
|