From 20e33992944fe530c63a3f8a07321733740251b4 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Sun, 2 May 2010 21:14:53 +0000 Subject: [PATCH] - definition of h5_error_not_implemented() and h5_error_internal() moved from private header --- src/include/h5core/h5_errorhandling.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/include/h5core/h5_errorhandling.h b/src/include/h5core/h5_errorhandling.h index c6f9289..07aeab8 100644 --- a/src/include/h5core/h5_errorhandling.h +++ b/src/include/h5core/h5_errorhandling.h @@ -28,6 +28,21 @@ H5_ERR_INVAL, \ "Internal error: step_gid <= 0."); +#define h5_error_not_implemented( f, file, func, lino ) \ + h5_error( \ + f, \ + H5_ERR_NOT_IMPLEMENTED, \ + "%s: Function \"%s\", line %d not yet implemented!", \ + file, func, lino ); + +#define h5_error_internal( f, file, func, lino ) \ + h5_error( \ + f, \ + H5_ERR_INTERNAL, \ + "%s: Internal error: %s line %d!", \ + file, func, lino ) + + h5_err_t h5_set_debuglevel ( h5_id_t debuglevel