add typedef for log function that was in lber.h

This commit is contained in:
Gary Williams 2000-10-13 14:10:41 +00:00
parent f6f13d8ecb
commit 1217a452e9
2 changed files with 7 additions and 2 deletions

View File

@ -14,6 +14,9 @@
#include "lber-int.h"
typedef void (*BER_LOG_FN) LDAP_P((FILE *file, char *subsys, int level, const char *fmt, va_list vl));
BER_LOG_FN ber_int_log_proc = NULL;
/*

View File

@ -7,10 +7,12 @@
#include <ac/stdlib.h>
#include <ac/string.h>
#include <ac/stdarg.h>
#include "lber-int.h"
extern void * ber_pvt_err_file; /* bprint.c */
/* bprint.c */
typedef void (*BER_LOG_FN) LDAP_P((FILE *file, char *subsys, int level, const char *fmt, va_list vl));
extern void * ber_pvt_err_file;
extern BER_LOG_FN ber_int_log_proc;
struct lber_options ber_int_options = {