summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2001-10-25 19:52:10 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2001-10-25 19:52:10 (GMT)
commit33189bd39be337df900a5dbd65190b111a959f31 (patch)
tree27f6de45d7232c4fabdd6c2285aeb98a29c5e424 /src/H5Fprivate.h
parentb3afaccfe51320c3cb38a2338d17ba8f79c15073 (diff)
downloadhdf5-33189bd39be337df900a5dbd65190b111a959f31.zip
hdf5-33189bd39be337df900a5dbd65190b111a959f31.tar.gz
hdf5-33189bd39be337df900a5dbd65190b111a959f31.tar.bz2
[svn-r4573]
Purpose: Switch mount property list to the new generic property list. Platforms tested: IRIX64 6.5, SunOS 5.7, FreeBSD.
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r--src/H5Fprivate.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index aaa29de..15c1ec9 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -346,13 +346,11 @@ __DLL__ size_t H5F_sizeof_size(const H5F_t *f);
#define H5F_ACS_FILE_DRV_INFO_SIZE sizeof(void*)
#define H5F_ACS_FILE_DRV_INFO_DEF NULL
-/* Mount property list */
-typedef struct H5F_mprop_t {
- hbool_t local; /* Are absolute symlinks local to file? */
-} H5F_mprop_t;
-
-/* library variables */
-__DLLVAR__ const H5F_mprop_t H5F_mount_dflt;
+/* ======================== File Mount properties ====================*/
+/* Definition for whether absolute symlinks local to file. */
+#define H5F_MNT_SYM_LOCAL_NAME "local"
+#define H5F_MNT_SYM_LOCAL_SIZE sizeof(hbool_t)
+#define H5F_MNT_SYM_LOCAL_DEF FALSE
/* Forward declarations for prototypes arguments */
struct H5O_layout_t;