summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-09-11 17:30:24 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-09-11 17:30:24 (GMT)
commit5e7ab927c6c48edf51d5e190d0f8c9ab9c151a56 (patch)
tree1cfbd1759bba28b81ad1f81246bf03a2bbb5e040 /src/H5Fprivate.h
parente5cad0ef24543e55d164a26dd42a0cc1ba5c2cbe (diff)
downloadhdf5-5e7ab927c6c48edf51d5e190d0f8c9ab9c151a56.zip
hdf5-5e7ab927c6c48edf51d5e190d0f8c9ab9c151a56.tar.gz
hdf5-5e7ab927c6c48edf51d5e190d0f8c9ab9c151a56.tar.bz2
[svn-r12656] Description:
Add "use the latest version of the file format" flag to the file access property list and internal file data structures. Fix bug where metadata block size was retrieved instead of the small data block size. Categorize property list routine prototypes in the public header file. Tested on: Mac OS/PPC 10.4 (amazon) Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r--src/H5Fprivate.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index 14f43bd..bfba2e5 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -454,6 +454,11 @@ typedef struct H5F_t H5F_t;
#define H5F_ACS_MULTI_TYPE_SIZE sizeof(H5FD_mem_t)
#define H5F_ACS_MULTI_TYPE_DEF H5FD_MEM_DEFAULT
+/* Definition for 'use latest format version' flag */
+#define H5F_ACS_LATEST_FORMAT_NAME "latest_format"
+#define H5F_ACS_LATEST_FORMAT_SIZE sizeof(hbool_t)
+#define H5F_ACS_LATEST_FORMAT_DEF FALSE
+
/* ======================== File Mount properties ====================*/
/* Definition for whether absolute symlinks local to file. */
#define H5F_MNT_SYM_LOCAL_NAME "local"