+
+Thu Jun 8 14:41:00 EDT 1995 Paul Park (pjpark@mit.edu)
+ * adm_proto.h - Add prototypes for logging routines. Also, if
+ kdb.h has not been included, add null structure for entry
+ data structure so that we don't strictly require kdb.h.
+
Wed Jun 7 16:23:51 1995 <tytso@rsx-11.mit.edu>
* Makefile.in: Process osconf.h using PREFIX and EXEC_PREFIX
#ifndef KRB5_ADM_PROTO_H__
#define KRB5_ADM_PROTO_H__
+/*
+ * This is ugly, but avoids having to include k5-int or kdb.h for this.
+ */
+#ifndef KRB5_KDB5__
+struct _krb5_db_entry;
+typedef struct _krb5_db_entry krb5_db_entry;
+#endif /* KRB5_KDB5__ */
+
/*
* Function prototypes.
*/
krb5_int32 *,
krb5_int32 *,
krb5_data **));
+
+/* logger.c */
+krb5_error_code krb5_klog_init
+ PROTOTYPE((krb5_context,
+ char *,
+ char *,
+ krb5_boolean));
+void krb5_klog_close PROTOTYPE((krb5_context));
+int krb5_klog_syslog PROTOTYPE((int, const char *, ...));
#endif /* KRB5_ADM_PROTO_H__ */