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/H5Tprivate.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/H5Tprivate.h')
-rw-r--r-- | src/H5Tprivate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Tprivate.h b/src/H5Tprivate.h index 63d96c4..1578d47 100644 --- a/src/H5Tprivate.h +++ b/src/H5Tprivate.h @@ -32,7 +32,7 @@ typedef struct { uintn name_off; /* Offset of name in global small-data heap */ uintn struct_off; /* Offset of field within structure */ h5_atomic_type_t dt; /* Datatype of the field */ - hatom_t dim_id; /* dimensionality ID of the field */ + hid_t dim_id; /* dimensionality ID of the field */ } h5_field_info_t; /* Structure for storing information about a compound datatype */ @@ -51,9 +51,9 @@ typedef struct { } h5_datatype_t; /* Private functions */ -hatom_t H5T_create(hatom_t owner_id, hobjtype_t type, const char *name); +hid_t H5T_create(hid_t owner_id, hobjtype_t type, const char *name); hbool_t H5T_is_atomic(h5_datatype_t *type); uintn H5T_size(h5_datatype_t *dt, hbool_t mem_flag); -herr_t H5T_release(hatom_t oid); +herr_t H5T_release(hid_t oid); #endif |