From: Paul Park Date: Mon, 17 Jul 1995 19:29:49 +0000 (+0000) Subject: Add prototypes for KDC profile handling routines X-Git-Tag: krb5-1.0-beta6~1520 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=951feb707fadb64f8add0efc4f7def971f650d1a;p=krb5.git Add prototypes for KDC profile handling routines git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6298 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/adm_proto.h b/src/include/krb5/adm_proto.h index 66e6eb98e..a5e05f13c 100644 --- a/src/include/krb5/adm_proto.h +++ b/src/include/krb5/adm_proto.h @@ -32,6 +32,12 @@ struct _krb5_db_entry; typedef struct _krb5_db_entry krb5_db_entry; #endif /* KRB5_KDB5__ */ +/* Ditto for adm.h */ +#ifndef KRB5_ADM_H__ +struct ___krb5_realm_params; +typedef struct ___krb5_realm_params krb5_realm_params; +#endif /* KRB5_ADM_H__ */ + /* * Function prototypes. */ @@ -147,4 +153,12 @@ krb5_error_code krb5_aprof_get_int32 krb5_boolean, krb5_int32 *)); krb5_error_code krb5_aprof_finish KRB5_PROTOTYPE((krb5_pointer)); + +krb5_error_code krb5_read_realm_params KRB5_PROTOTYPE((krb5_context, + char *, + char *, + char *, + krb5_realm_params **)); +krb5_error_code krb5_free_realm_params KRB5_PROTOTYPE((krb5_context, + krb5_realm_params *)); #endif /* KRB5_ADM_PROTO_H__ */