diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-06 16:00:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-06 16:00:56 (GMT) |
commit | dd0fbd5b0060ebc7703da8eaab747f7a3025be2a (patch) | |
tree | 2adb270f853a320980403b02a5100d6c84b81290 /src/H5Tproto.h | |
parent | e251f45b8741c7e7bf2dbd4d76a76d67dbfc6da1 (diff) | |
download | hdf5-dd0fbd5b0060ebc7703da8eaab747f7a3025be2a.zip hdf5-dd0fbd5b0060ebc7703da8eaab747f7a3025be2a.tar.gz hdf5-dd0fbd5b0060ebc7703da8eaab747f7a3025be2a.tar.bz2 |
[svn-r14] Preliminary checkin of dataset code, to allow the interface & code to be shared.
Everything except the H5Dwrite should be working (or have sections of code
commented about features to implement).
Diffstat (limited to 'src/H5Tproto.h')
-rw-r--r-- | src/H5Tproto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tproto.h b/src/H5Tproto.h index 908445e..b40ac10 100644 --- a/src/H5Tproto.h +++ b/src/H5Tproto.h @@ -42,12 +42,12 @@ extern "C" /* Functions in H5T.c */ hatom_t H5T_create(hatom_t owner_id, hobjtype_t type, const char *name); +herr_t H5T_release(hatom_t oid); 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); uintn H5Tsize(hatom_t tid, uint8 len, uint8 arch, hbool_t mem_flag); -herr_t H5T_release(hatom_t oid); 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); |