git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24332 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-01-17 21:52:45 +00:00
parent dffe83d3d6
commit 58e7ca0cf4

View File

@@ -36,7 +36,19 @@
#undef __attribute__ #undef __attribute__
#define __attribute__(x) #define __attribute__(x)
RCSID("$Id$"); /**
* @page krb5_init_creds_intro The initial credential handing functions
* @section section_krb5_init_creds Initial credential
*
* Functions to get initial credentials: @ref krb5_credential .
*/
/**
* Allocate a new krb5_get_init_creds_opt structure, free with
* krb5_get_init_creds_opt_free().
*
* @ingroup krb5_credential
*/
krb5_error_code KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_FUNCTION
krb5_get_init_creds_opt_alloc(krb5_context context, krb5_get_init_creds_opt_alloc(krb5_context context,
@@ -64,6 +76,12 @@ krb5_get_init_creds_opt_alloc(krb5_context context,
return 0; return 0;
} }
/**
* Free krb5_get_init_creds_opt structure.
*
* @ingroup krb5_credential
*/
void KRB5_LIB_FUNCTION void KRB5_LIB_FUNCTION
krb5_get_init_creds_opt_free(krb5_context context, krb5_get_init_creds_opt_free(krb5_context context,
krb5_get_init_creds_opt *opt) krb5_get_init_creds_opt *opt)