Add support for error strings.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17393 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-05-01 14:04:21 +00:00
parent 1509372fd8
commit 4123507b93
2 changed files with 8 additions and 0 deletions

View File

@@ -47,6 +47,7 @@ typedef struct hx509_revoke_ctx_data *hx509_revoke_ctx;
typedef struct hx509_query_data hx509_query;
typedef void * hx509_cursor;
typedef struct hx509_request_data *hx509_request;
typedef struct hx509_error_data *hx509_error;
typedef void (*hx509_vprint_func)(void *, const char *, va_list);
@@ -91,4 +92,8 @@ typedef enum {
HX509_QUERY_OPTION_END = 0xffff
} hx509_query_option;
enum hx509_error_flag {
HX509_ERROR_APPEND = 1,
};
#include <hx509-protos.h>