summaryrefslogtreecommitdiffstats
path: root/src/H5Fpublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-11-06 17:47:02 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-11-06 17:47:02 (GMT)
commit2b635fee4da5b3c9e0340f0630b4e9b61616409b (patch)
tree033892e086c248546133556fc45fce2b8d27356f /src/H5Fpublic.h
parent32cd8f3fcf6ef1804a2818c84ad3ed92b26c887e (diff)
downloadhdf5-2b635fee4da5b3c9e0340f0630b4e9b61616409b.zip
hdf5-2b635fee4da5b3c9e0340f0630b4e9b61616409b.tar.gz
hdf5-2b635fee4da5b3c9e0340f0630b4e9b61616409b.tar.bz2
[svn-r12866] Description:
Clean up initialization of H5F & H5L APIs. Tested on: Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r--src/H5Fpublic.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h
index d3ae119..ea30b28 100644
--- a/src/H5Fpublic.h
+++ b/src/H5Fpublic.h
@@ -33,8 +33,6 @@
* We're assuming that these constants are used rather early in the hdf5
* session.
*
- * NOTE: When adding H5F_ACC_* macros, remember to redefine them in H5Fprivate.h
- *
*/
/* When this header is included from a private header, don't make calls to H5check() */
@@ -104,20 +102,20 @@ extern "C" {
#endif
/* Functions in H5F.c */
-H5_DLL htri_t H5Fis_hdf5 (const char *filename);
-H5_DLL hid_t H5Fcreate (const char *filename, unsigned flags,
+H5_DLL htri_t H5Fis_hdf5(const char *filename);
+H5_DLL hid_t H5Fcreate(const char *filename, unsigned flags,
hid_t create_plist, hid_t access_plist);
-H5_DLL hid_t H5Fopen (const char *filename, unsigned flags,
+H5_DLL hid_t H5Fopen(const char *filename, unsigned flags,
hid_t access_plist);
H5_DLL hid_t H5Freopen(hid_t file_id);
H5_DLL herr_t H5Fflush(hid_t object_id, H5F_scope_t scope);
-H5_DLL herr_t H5Fclose (hid_t file_id);
-H5_DLL hid_t H5Fget_create_plist (hid_t file_id);
-H5_DLL hid_t H5Fget_access_plist (hid_t file_id);
+H5_DLL herr_t H5Fclose(hid_t file_id);
+H5_DLL hid_t H5Fget_create_plist(hid_t file_id);
+H5_DLL hid_t H5Fget_access_plist(hid_t file_id);
H5_DLL herr_t H5Fget_intent(hid_t file_id, unsigned * intent);
H5_DLL int H5Fget_obj_count(hid_t file_id, unsigned types);
H5_DLL int H5Fget_obj_ids(hid_t file_id, unsigned types, int max_objs, hid_t *obj_id_list);
-H5_DLL herr_t H5Fget_vfd_handle(hid_t file_id, hid_t fapl, void** file_handle);
+H5_DLL herr_t H5Fget_vfd_handle(hid_t file_id, hid_t fapl, void **file_handle);
H5_DLL herr_t H5Fmount(hid_t loc, const char *name, hid_t child, hid_t plist);
H5_DLL herr_t H5Funmount(hid_t loc, const char *name);
H5_DLL hssize_t H5Fget_freespace(hid_t file_id);
@@ -138,4 +136,5 @@ H5_DLL ssize_t H5Fget_name(hid_t obj_id, char *name, size_t size);
#ifdef __cplusplus
}
#endif
-#endif
+#endif /* _H5Fpublic_H */
+