summaryrefslogtreecommitdiffstats
path: root/src/H5Fpublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-02-13 22:19:14 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-02-13 22:19:14 (GMT)
commit1603adeaee43e22b61055633c1dc2250aaa3a922 (patch)
tree7da1d2a1290cff4ff87bfb9d27b3f57ec6529704 /src/H5Fpublic.h
parent4b23b1752802ba34db8f48d25b2d1dff0eca41a7 (diff)
downloadhdf5-1603adeaee43e22b61055633c1dc2250aaa3a922.zip
hdf5-1603adeaee43e22b61055633c1dc2250aaa3a922.tar.gz
hdf5-1603adeaee43e22b61055633c1dc2250aaa3a922.tar.bz2
[svn-r13291] Description:
Clean up comments Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r--src/H5Fpublic.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h
index c45e71f..94f2bd7 100644
--- a/src/H5Fpublic.h
+++ b/src/H5Fpublic.h
@@ -25,6 +25,14 @@
#include "H5ACpublic.h"
#include "H5Ipublic.h"
+/* When this header is included from a private header, don't make calls to H5check() */
+#undef H5CHECK
+#ifndef _H5private_H
+#define H5CHECK H5check(),
+#else /* _H5private_H */
+#define H5CHECK
+#endif /* _H5private_H */
+
/*
* These are the bits that can be passed to the `flags' argument of
* H5Fcreate() and H5Fopen(). Use the bit-wise OR operator (|) to combine
@@ -35,15 +43,6 @@
* session.
*
*/
-
-/* When this header is included from a private header, don't make calls to H5check() */
-#undef H5CHECK
-#ifndef _H5private_H
-#define H5CHECK H5check(),
-#else /* _H5private_H */
-#define H5CHECK
-#endif /* _H5private_H */
-
#define H5F_ACC_RDONLY (H5CHECK 0x0000u) /*absence of rdwr => rd-only */
#define H5F_ACC_RDWR (H5CHECK 0x0001u) /*open for read and write */
#define H5F_ACC_TRUNC (H5CHECK 0x0002u) /*overwrite existing files */