diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-05-12 18:42:43 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-05-12 18:42:43 (GMT) |
commit | 8d4ea82f5a98574a00174f8467aa56e5e31991ce (patch) | |
tree | 887c4a2655502a44bc9a966a81e4867dd6d9e358 /src/H5Fprivate.h | |
parent | b36ef7bac7c64578465734a98a4fc5faa392330e (diff) | |
parent | 67ba6cb57d84dd34c69930d469ae445697b49731 (diff) | |
download | hdf5-8d4ea82f5a98574a00174f8467aa56e5e31991ce.zip hdf5-8d4ea82f5a98574a00174f8467aa56e5e31991ce.tar.gz hdf5-8d4ea82f5a98574a00174f8467aa56e5e31991ce.tar.bz2 |
[svn-r27056] merge from trunk.
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index e29cb0f..cbcf6ba 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -576,6 +576,12 @@ typedef struct H5F_io_info_t { const struct H5P_genplist_t *dxpl; /* DXPL object */ } H5F_io_info_t; +/* Concise info about a block of bytes in a file */ +typedef struct H5F_block_t { + haddr_t offset; /* Offset of the block in the file */ + hsize_t length; /* Length of the block in the file */ +} H5F_block_t; + /*****************************/ /* Library-private Variables */ |