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/H5Edefin.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/H5Edefin.h')
-rw-r--r-- | src/H5Edefin.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Edefin.h b/src/H5Edefin.h index fc629bb..0545043 100644 --- a/src/H5Edefin.h +++ b/src/H5Edefin.h @@ -20,6 +20,7 @@ #define _H5Edefin_H /* Major error IDs */ +hid_t H5E_NONE_MAJOR_g = FAIL; /* No error */ hid_t H5E_DATASET_g = FAIL; /* Dataset */ hid_t H5E_FUNC_g = FAIL; /* Function entry/exit */ hid_t H5E_STORAGE_g = FAIL; /* Data storage */ @@ -50,6 +51,8 @@ hid_t H5E_CACHE_g = FAIL; /* Object cache */ /* Minor error IDs */ +hid_t H5E_NONE_MINOR_g = FAIL; /* No error */ + /* Generic low-level file I/O errors */ hid_t H5E_SEEKERROR_g = FAIL; /* Seek failed */ hid_t H5E_READERROR_g = FAIL; /* Read failed */ |