1.. highlight:: c 2 3.. _krb5-error-code-struct: 4 5krb5_error_code 6=============== 7 8.. 9.. c:type:: krb5_error_code 10.. 11 12Used to convey an operation status. 13 14The value 0 indicates success; any other values are com_err codes. Use krb5_get_error_message() to obtain a string describing the error. 15 16Declaration 17------------ 18 19typedef krb5_int32 krb5_error_code 20 21 22