error handler added

This commit is contained in:
2009-07-16 08:35:32 +00:00
parent d0daec98fa
commit e38e7d1c8e
2 changed files with 32 additions and 0 deletions
+18
View File
@@ -234,6 +234,24 @@ H5GetErrorHandler (
return h5_get_errorhandler();
}
h5_err_t
H5ReportErrorhandler (
h5_file_t * const f,
const char *fmt,
va_list ap
) {
return h5_report_errorhandler ( f, fmt, ap );
}
h5_err_t
H5AbortErrorhandler (
h5_file_t * const f,
const char *fmt,
va_list ap
) {
return h5_abort_errorhandler ( f, fmt, ap );
}
/*!
\ingroup h5part_c_api_errhandling
+14
View File
@@ -86,6 +86,20 @@ H5GetErrorHandler (
void
);
h5_err_t
H5ReportErrorhandler (
h5_file_t * const f,
const char *fmt,
va_list ap
);
h5_err_t
H5AbortErrorhandler (
h5_file_t * const f,
const char *fmt,
va_list ap
);
h5_err_t
H5GetErrno (
h5_file_t * const f