summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorSongyu Lu <songyulu@hdfgroup.org>2019-07-26 20:01:40 (GMT)
committerSongyu Lu <songyulu@hdfgroup.org>2019-07-26 20:01:40 (GMT)
commit59d7db40a72142b9027748e762f4b2e8038aefa9 (patch)
treed5fb56fd03d0ac0c607c9b4a9606a41ee8b721c6 /src/H5Fprivate.h
parent308393a020bd7a812c231eee8130c9365d192e18 (diff)
downloadhdf5-59d7db40a72142b9027748e762f4b2e8038aefa9.zip
hdf5-59d7db40a72142b9027748e762f4b2e8038aefa9.tar.gz
hdf5-59d7db40a72142b9027748e762f4b2e8038aefa9.tar.bz2
HDFFV-10658: setting and getting properties in API context. Porting the changes to the develop branch into the 1.10 branch: mainly the external file prefix and VDS prefix.
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r--src/H5Fprivate.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index d60c08f..5e78d9e 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -702,8 +702,9 @@ typedef enum H5F_mem_page_t {
/* Type of prefix for opening prefixed files */
typedef enum H5F_prefix_open_t {
- H5F_PREFIX_VDS, /* Virtual dataset prefix */
- H5F_PREFIX_ELINK /* External link prefix */
+ H5F_PREFIX_VDS = 0, /* Virtual dataset prefix */
+ H5F_PREFIX_ELINK = 1, /* External link prefix */
+ H5F_PREFIX_EFILE = 2 /* External file prefix */
} H5F_prefix_open_t;