diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-28 16:38:39 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-28 16:38:39 (GMT) |
commit | c4162e5ce5d79d468a7e628b6dd4be0792e5a470 (patch) | |
tree | e62edcd4fe0c1ec670de9b66ac10e8027be30a77 /src/H5Pprivate.h | |
parent | f8d5c76ee70b6f644eaa67c4449065b4f5b68e47 (diff) | |
download | hdf5-c4162e5ce5d79d468a7e628b6dd4be0792e5a470.zip hdf5-c4162e5ce5d79d468a7e628b6dd4be0792e5a470.tar.gz hdf5-c4162e5ce5d79d468a7e628b6dd4be0792e5a470.tar.bz2 |
[svn-r3010] Purpose:
Bug fix
Description:
When the v1.2 compatibility code was turned on, internal functions in the
library were getting confused.
Solution:
Separated guts of H5Pget_driver call into an API function (the definition
of which depends on the compatibility switch) and an internal function
which always behaves like the v1.3/4 function. Replaced API function calls
in the library code with the internal function.
Platforms tested:
FreeBSD 4.2 (hawkwind)
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 38ae95f..646b5d5 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -104,5 +104,6 @@ __DLL__ hid_t H5P_create(H5P_class_t type, H5P_t *plist); __DLL__ void *H5P_copy(H5P_class_t type, const void *src); __DLL__ herr_t H5P_close(void *plist); __DLL__ H5P_class_t H5P_get_class(hid_t tid); +__DLL__ hid_t H5P_get_driver(hid_t plist_id); #endif |