summaryrefslogtreecommitdiffstats
path: root/src/H5Spkg.h
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2015-02-17 21:11:22 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2015-02-17 21:11:22 (GMT)
commit1199ab1f480fd700c6e8a2d9f939ebb0765c25ab (patch)
tree66b0f85dbebfd6a698dce48bcd95add23a1c2400 /src/H5Spkg.h
parentd273b2a2f88dc571272b7e3bdc8a011fbed969ad (diff)
downloadhdf5-1199ab1f480fd700c6e8a2d9f939ebb0765c25ab.zip
hdf5-1199ab1f480fd700c6e8a2d9f939ebb0765c25ab.tar.gz
hdf5-1199ab1f480fd700c6e8a2d9f939ebb0765c25ab.tar.bz2
[svn-r26198] INCOMPLETE, UNWORKING CODE
Commit progress through 1610 CST 2/17/15
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r--src/H5Spkg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h
index 91f3ed1..5f84717 100644
--- a/src/H5Spkg.h
+++ b/src/H5Spkg.h
@@ -130,9 +130,9 @@ typedef htri_t (*H5S_sel_is_valid_func_t)(const H5S_t *space);
/* Method to determine number of bytes required to store current selection */
typedef hssize_t (*H5S_sel_serial_size_func_t)(const H5S_t *space);
/* 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 *buf);
+typedef herr_t (*H5S_sel_serialize_func_t)(const H5S_t *space, uint8_t **p);
/* Method to store create selection from "serialized" form (a byte sequence suitable for storing on disk) */
-typedef herr_t (*H5S_sel_deserialize_func_t)(H5S_t **space, 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 */