diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-10-08 20:38:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-10-08 20:38:12 (GMT) |
commit | 8b66e90352aab1c3e7e2013a76c443be296367d8 (patch) | |
tree | 0cf251ddd03130bde57041d7b0115d0d5dbc430e /src/H5Tpublic.h | |
parent | 25b702e2bed191bcba75dd715863e94f926e70ea (diff) | |
download | hdf5-8b66e90352aab1c3e7e2013a76c443be296367d8.zip hdf5-8b66e90352aab1c3e7e2013a76c443be296367d8.tar.gz hdf5-8b66e90352aab1c3e7e2013a76c443be296367d8.tar.bz2 |
[svn-r114] Mostly changes to add new parameter to the H5Ainit_group call. The H5D, H5P
& H5T interfaces now share datatypes & dataspaces properly also.
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index d74404b..10f86b5 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -70,11 +70,15 @@ hbool_t H5Tis_field_atomic(hid_t tid,uintn fidx); hbool_t H5Tis_atomic(hid_t tid); herr_t H5Tset_type(hid_t tid,hid_t base,uint8 len,uint8 arch); herr_t H5Tget_type(hid_t tid,hid_t *base,uint8 *len,uint8 *arch); -uintn H5Tsize(hid_t tid, uint8 len, uint8 arch, hbool_t mem_flag); +uintn H5Tsize(hid_t tid, hbool_t mem_flag); +intn H5Tarch(hid_t tid); herr_t H5Tadd_field (hid_t tid, const char *name, hid_t base, uint8 len, uint8 arch, hid_t space); herr_t H5Tget_fields(hid_t tid, hid_t *field_list); + +/* Private functions which need to be globally visible */ void H5T_term_interface (void); +void H5T_destroy(void *datatype); #ifdef __cplusplus } |