diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-08-12 03:56:45 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-08-12 03:56:45 (GMT) |
commit | 9cb6f1ae5dae4c6d261e7ed20f70ca02f26da7e6 (patch) | |
tree | 89ff1d9af297b61b2dd6b6c9f698d8bc1d1e26f4 /src/H5Pprivate.h | |
parent | 80c02cc6f1ba4e4c564a862c24029c1230a5835d (diff) | |
download | hdf5-9cb6f1ae5dae4c6d261e7ed20f70ca02f26da7e6.zip hdf5-9cb6f1ae5dae4c6d261e7ed20f70ca02f26da7e6.tar.gz hdf5-9cb6f1ae5dae4c6d261e7ed20f70ca02f26da7e6.tar.bz2 |
[svn-r4329] Purpose:
Bug Fix
Description:
The datatype conversion buffer size was only halfway converted from hsize_t
to size_t and was causing problems. Also, the H5P_peek_<foo> routines have
a bunch of identical code.
Solution:
Finished converting the datatype conversion buffer size to size_t and
cleaned up the implementation of the H5P_peek_<foo> routines to call a
common routine instead of reimplementing a bunch of code.
Platforms tested:
Solaris 2.7 (arabica)
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r-- | src/H5Pprivate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h index 93c8beb..c11b14b 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -120,5 +120,6 @@ __DLL__ uintn H5P_peek_uintn(hid_t plist_id, const char *name); __DLL__ hid_t H5P_peek_hid_t(hid_t plist_id, const char *name); __DLL__ void *H5P_peek_voidp(hid_t plist_id, const char *name); __DLL__ hsize_t H5P_peek_hsize_t(hid_t plist_id, const char *name); +__DLL__ size_t H5P_peek_size_t(hid_t plist_id, const char *name); #endif |