diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2012-04-01 22:27:15 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2012-04-01 22:27:15 (GMT) |
commit | 362f22119d9cb25424f7cdf181219bfa6330b6b8 (patch) | |
tree | 4ffa1e4be8fecd337594ef32cc1da95c16bdf615 /src/H5Fprivate.h | |
parent | 7022c013acb0ffac172d0ef99aa7d0205ab842c8 (diff) | |
download | hdf5-362f22119d9cb25424f7cdf181219bfa6330b6b8.zip hdf5-362f22119d9cb25424f7cdf181219bfa6330b6b8.tar.gz hdf5-362f22119d9cb25424f7cdf181219bfa6330b6b8.tar.bz2 |
[svn-r22228] Description:
Bring r22219 from trunk to 1.8 branch: (with release manager's blessing)
Merge "file image" changes from feature branch back to trunk.
Tested on:
h5committested
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index f659491..b0aaeec 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -415,6 +415,7 @@ typedef struct H5F_blk_aggr_t H5F_blk_aggr_t; #define H5F_ACS_LATEST_FORMAT_NAME "latest_format" /* 'Use latest format version' flag */ #define H5F_ACS_WANT_POSIX_FD_NAME "want_posix_fd" /* Internal: query the file descriptor from the core VFD, instead of the memory address */ #define H5F_ACS_EFC_SIZE_NAME "efc_size" /* Size of external file cache */ +#define H5F_ACS_FILE_IMAGE_INFO_NAME "file_image_info" /* struct containing initial file image and callback info */ /* ======================== File Mount properties ====================*/ #define H5F_MNT_SYM_LOCAL_NAME "local" /* Whether absolute symlinks local to file. */ @@ -516,8 +517,8 @@ H5_DLL H5F_t *H5F_get_parent(const H5F_t *f); H5_DLL unsigned H5F_get_nmounts(const H5F_t *f); H5_DLL hid_t H5F_get_access_plist(H5F_t *f, hbool_t app_ref); H5_DLL hid_t H5F_get_id(H5F_t *file, hbool_t app_ref); -H5_DLL size_t H5F_get_obj_count(const H5F_t *f, unsigned types, hbool_t app_ref); -H5_DLL size_t H5F_get_obj_ids(const H5F_t *f, unsigned types, size_t max_objs, hid_t *obj_id_list, hbool_t app_ref); +H5_DLL herr_t H5F_get_obj_count(const H5F_t *f, unsigned types, hbool_t app_ref, size_t *obj_id_count_ptr); +H5_DLL herr_t H5F_get_obj_ids(const H5F_t *f, unsigned types, size_t max_objs, hid_t *oid_list, hbool_t app_ref, size_t *obj_id_count_ptr); /* Functions than retrieve values set/cached from the superblock/FCPL */ H5_DLL haddr_t H5F_get_base_addr(const H5F_t *f); |