diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-28 17:14:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-28 17:14:35 (GMT) |
commit | a39e0ef324c57105c09e84f4aee878595a320a41 (patch) | |
tree | 401eaf34c9864657784d486b79c2cae1da1b0614 /src/H5Mpublic.h | |
parent | e8d5c25431dd926d04f35cc06ab2027db86869cf (diff) | |
download | hdf5-a39e0ef324c57105c09e84f4aee878595a320a41.zip hdf5-a39e0ef324c57105c09e84f4aee878595a320a41.tar.gz hdf5-a39e0ef324c57105c09e84f4aee878595a320a41.tar.bz2 |
[svn-r47] Finished flashing out the H5M* functions calls. Cleaned up non-compiling
source. Finished adding in remainder of H5Osdtyp.c functions.
Diffstat (limited to 'src/H5Mpublic.h')
-rw-r--r-- | src/H5Mpublic.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/H5Mpublic.h b/src/H5Mpublic.h index b542ce5..466236d 100644 --- a/src/H5Mpublic.h +++ b/src/H5Mpublic.h @@ -30,9 +30,18 @@ extern "C" { /* Functions in H5M.c */ hatom_t H5Mcreate(hatom_t owner_id, hobjtype_t type, const char *name); +hatom_t H5Maccess(hatom_t oid); hatom_t H5Mcopy(hatom_t oid); +hatom_t H5Mfind_name(hatom_t oid, hobjtype_t type, const char *name); +uint32 H5Mname_len(hatom_t oid); +herr_t H5Mget_name(hatom_t oid, char *name); +herr_t H5Mset_name(hatom_t oid, const char *name); +hatom_t H5Msearch(hatom_t oid, hobjtype_t type, const char *name); +hatom_t H5Mindex(hatom_t oid, hobjtype_t type, uint32 idx); hatom_t H5Mflush(hatom_t oid); +herr_t H5Mdelete(hatom_t oid); hatom_t H5Mget_file(hatom_t oid); +hatom_t H5Mget_parent(hatom_t oid); herr_t H5Mrelease(hatom_t oid); #ifdef __cplusplus |