diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-09-04 21:06:48 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-09-04 21:06:48 (GMT) |
commit | 922e8a4a8b84f4a04548ac2928e37d67c23c81cb (patch) | |
tree | 59f636a2755524a0d3e9a827df90d0699d5918ca /src/H5Epubgen.h | |
parent | 45b23cfce11d5267849f0a58216cab581012b8a7 (diff) | |
download | hdf5-922e8a4a8b84f4a04548ac2928e37d67c23c81cb.zip hdf5-922e8a4a8b84f4a04548ac2928e37d67c23c81cb.tar.gz hdf5-922e8a4a8b84f4a04548ac2928e37d67c23c81cb.tar.bz2 |
[svn-r9208] Purpose: Bug fix
Description: A few items were left out when tried to restore the old Error API.
There are also a few minor bug fixes.
Platforms tested: arabica fuss h5committest.
Diffstat (limited to 'src/H5Epubgen.h')
-rw-r--r-- | src/H5Epubgen.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Epubgen.h b/src/H5Epubgen.h index e59e53b..761483b 100644 --- a/src/H5Epubgen.h +++ b/src/H5Epubgen.h @@ -23,6 +23,7 @@ /* Major error codes */ /*********************/ +#define H5E_NONE_MAJOR (H5OPEN H5E_NONE_MAJOR_g) #define H5E_DATASET (H5OPEN H5E_DATASET_g) #define H5E_FUNC (H5OPEN H5E_FUNC_g) #define H5E_STORAGE (H5OPEN H5E_STORAGE_g) @@ -50,6 +51,7 @@ #define H5E_ERROR (H5OPEN H5E_ERROR_g) #define H5E_PLINE (H5OPEN H5E_PLINE_g) #define H5E_CACHE (H5OPEN H5E_CACHE_g) +H5_DLLVAR hid_t H5E_NONE_MAJOR_g; /* No error */ H5_DLLVAR hid_t H5E_DATASET_g; /* Dataset */ H5_DLLVAR hid_t H5E_FUNC_g; /* Function entry/exit */ H5_DLLVAR hid_t H5E_STORAGE_g; /* Data storage */ @@ -81,6 +83,9 @@ H5_DLLVAR hid_t H5E_CACHE_g; /* Object cache */ /*********************/ /* Minor error codes */ /*********************/ +/* No error */ +#define H5E_NONE_MINOR (H5OPEN H5E_NONE_MINOR_g) +H5_DLLVAR hid_t H5E_NONE_MINOR_g; /* No error */ /* Generic low-level file I/O errors */ #define H5E_SEEKERROR (H5OPEN H5E_SEEKERROR_g) |