summaryrefslogtreecommitdiffstats
path: root/src/H5Spkg.h
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-04-10 19:24:53 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-04-10 19:24:53 (GMT)
commit670c6c1389c1c66598a365a9bfe2b19237d9e93a (patch)
tree948f1de80571ec486fe0f28e0d1315f18b85c1bb /src/H5Spkg.h
parent1fb34f7e8cb960bdf8132cd4cf63b5c7cf11a969 (diff)
downloadhdf5-670c6c1389c1c66598a365a9bfe2b19237d9e93a.zip
hdf5-670c6c1389c1c66598a365a9bfe2b19237d9e93a.tar.gz
hdf5-670c6c1389c1c66598a365a9bfe2b19237d9e93a.tar.bz2
Make corresponding changes for moving dataspace selection-specific coding to the callbacks.
This is based on the PR #1642 merged to the develop branch.
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r--src/H5Spkg.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h
index f6bd3d1..9219998 100644
--- a/src/H5Spkg.h
+++ b/src/H5Spkg.h
@@ -163,8 +163,7 @@ typedef hssize_t (*H5S_sel_serial_size_func_t)(const H5S_t *space, H5F_t *f);
/* Method to store current selection in "serialized" form (a byte sequence suitable for storing on disk) */
typedef herr_t (*H5S_sel_serialize_func_t)(const H5S_t *space, uint8_t **p, H5F_t *f);
/* Method to create selection from "serialized" form (a byte sequence suitable for storing on disk) */
-typedef herr_t (*H5S_sel_deserialize_func_t)(H5S_t *space, uint32_t version, uint8_t flags,
- const uint8_t **p);
+typedef herr_t (*H5S_sel_deserialize_func_t)(H5S_t **space, const uint8_t **p);
/* Method to determine smallest n-D bounding box containing the current selection */
typedef herr_t (*H5S_sel_bounds_func_t)(const H5S_t *space, hsize_t *start, hsize_t *end);
/* Method to determine linear offset of initial element in selection within dataspace */