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/H5Fpublic.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/H5Fpublic.h')
-rw-r--r-- | src/H5Fpublic.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h index b999b2d..c100239 100644 --- a/src/H5Fpublic.h +++ b/src/H5Fpublic.h @@ -33,11 +33,11 @@ extern "C" { /* Functions in H5F.c */ hbool_t H5Fis_hdf5(const char *filename); -hatom_t H5Fcreate(const char *filename, uintn flags, hatom_t create_template, hatom_t access_template); -hatom_t H5Fopen(const char *filename, uintn flags, hatom_t access_template); -herr_t H5Fclose(hatom_t fid); -herr_t H5Fflush (hatom_t fid, hbool_t invalidate); -hatom_t H5Fget_create_template(hatom_t fid); +hid_t H5Fcreate(const char *filename, uintn flags, hid_t create_template, hid_t access_template); +hid_t H5Fopen(const char *filename, uintn flags, hid_t access_template); +herr_t H5Fclose(hid_t fid); +herr_t H5Fflush (hid_t fid, hbool_t invalidate); +hid_t H5Fget_create_template(hid_t fid); void H5F_term_interface (void); #ifdef __cplusplus |