diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-09-24 15:32:46 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-09-24 15:32:46 (GMT) |
commit | de68722fb97bdbd063224bcbb984bed32ba8c27e (patch) | |
tree | f5084fa68977d4a0130bea45bd997d6b46be416d /src/H5Tpublic.h | |
parent | 5fdfe1b206dd25ff0ea3f7a74700a3a9c79f6cc2 (diff) | |
download | hdf5-de68722fb97bdbd063224bcbb984bed32ba8c27e.zip hdf5-de68722fb97bdbd063224bcbb984bed32ba8c27e.tar.gz hdf5-de68722fb97bdbd063224bcbb984bed32ba8c27e.tar.bz2 |
[svn-r108] Changed all hatom_t types to hid_t. (Isn't 'sed' nifty.. :-)
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index 3404115..d74404b 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -55,7 +55,7 @@ WARNING! #endif /* WORDS_BIGENDIAN */ typedef struct { - hatom_t base; /* Basic datatype */ + hid_t base; /* Basic datatype */ uint8 len; /* Length of base-type, in bytes */ uint8 arch; /* Architecture of the base-type */ } h5_atomic_type_t; @@ -65,15 +65,15 @@ extern "C" { #endif /* Functions in H5T.c */ -uint32 H5Tget_num_fields(hatom_t tid); -hbool_t H5Tis_field_atomic(hatom_t tid,uintn fidx); -hbool_t H5Tis_atomic(hatom_t tid); -herr_t H5Tset_type(hatom_t tid,hatom_t base,uint8 len,uint8 arch); -herr_t H5Tget_type(hatom_t tid,hatom_t *base,uint8 *len,uint8 *arch); -uintn H5Tsize(hatom_t tid, uint8 len, uint8 arch, hbool_t mem_flag); -herr_t H5Tadd_field (hatom_t tid, const char *name, hatom_t base, uint8 len, - uint8 arch, hatom_t space); -herr_t H5Tget_fields(hatom_t tid, hatom_t *field_list); +uint32 H5Tget_num_fields(hid_t tid); +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); +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); void H5T_term_interface (void); #ifdef __cplusplus |