mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 07:30:57 -05:00
24 lines
478 B
C
24 lines
478 B
C
/* ldif2common.h - common definitions for the ldif2* tools */
|
|
|
|
#ifndef LDIF2COMMON_H_
|
|
#define LDIF2COMMON_H_
|
|
|
|
#include "ldap_defaults.h"
|
|
#include "../slap.h"
|
|
|
|
enum ldiftool {
|
|
LDIF2LDBM = 1, LDIF2INDEX, LDIF2ID2ENTRY, LDIF2ID2CHILDREN
|
|
};
|
|
|
|
|
|
extern char *progname;
|
|
extern char *tailorfile;
|
|
extern char *inputfile;
|
|
extern char *sbindir;
|
|
extern int cmdkids;
|
|
extern int dbnum;
|
|
|
|
|
|
void slap_ldif_init LDAP_P(( int, char **, int, const char *, int ));
|
|
|
|
#endif /* LDIF2COMMON_H_ */
|