mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
4a8ab5dbf2
ITS#1677 - cast away const warnings ITS#1678 - unsigned char args to ctype funcs ITS#1682 - don't redefine ldap_debug ITS#1683 - uninitialized vars ITS#1703 - ldo_debug initialization ITS#1705 - unsigned testing ITS#1706 - socklen_t args ITS#1719 - back-tcl update (other cleanups/fixes/improvements; yet untested) ITS#1724 - integerNormalize/integerFilter/integerIndexer bugs ITS#1725 - libdes not required Implement back-null (/dev/null style backend) Cleanup some misc warnings ("%lu" format, unused/uninitialized vars, ambiguous operator precedence) Kurt, please regenerate configure
34 lines
661 B
C
34 lines
661 B
C
/*
|
|
* Copyright 2002 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
#ifndef _NULL_EXTERNAL_H
|
|
#define _NULL_EXTERNAL_H
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
extern BI_init null_back_initialize;
|
|
|
|
extern BI_db_init null_back_db_init;
|
|
extern BI_db_destroy null_back_db_destroy;
|
|
|
|
extern BI_db_config null_back_db_config;
|
|
|
|
extern BI_op_bind null_back_bind;
|
|
|
|
extern BI_op_search null_back_search;
|
|
|
|
extern BI_op_compare null_back_compare;
|
|
|
|
extern BI_op_modify null_back_modify;
|
|
|
|
extern BI_op_modrdn null_back_modrdn;
|
|
|
|
extern BI_op_add null_back_add;
|
|
|
|
extern BI_op_delete null_back_delete;
|
|
|
|
LDAP_END_DECL
|
|
|
|
#endif /* _NULL_EXTERNAL_H */
|