diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 22:44:13 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 22:44:13 (GMT) |
commit | 7dcbae97f23f8409ed8d60640b3b2a8aaed70978 (patch) | |
tree | 54ba54ec5cdcda9651d63a4471a9a9ec2204e767 /src/H5Tpublic.h | |
parent | a7b166727dce2c23c2a0c7805c3e3b8d38e4be2d (diff) | |
download | hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.zip hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.gz hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.bz2 |
[svn-r800] Made a "htri_t" as a return value from "boolean" functions returning
TRUE/FALSE/FAIL, hbool_t is now strictly for true boolean values.
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index acf0510..8c7792e 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -377,10 +377,10 @@ hid_t H5Topen (hid_t loc_id, const char *name); hid_t H5Tcreate (H5T_class_t type, size_t size); hid_t H5Tcopy (hid_t type_id); herr_t H5Tclose (hid_t type_id); -hbool_t H5Tequal (hid_t type1_id, hid_t type2_id); +htri_t H5Tequal (hid_t type1_id, hid_t type2_id); herr_t H5Tlock (hid_t type_id); herr_t H5Tcommit (hid_t loc_id, const char *name, hid_t type_id); -hbool_t H5Tcommitted (hid_t type_id); +htri_t H5Tcommitted (hid_t type_id); /* Operations defined on compound data types */ herr_t H5Tinsert (hid_t parent_id, const char *name, size_t offset, |