summaryrefslogtreecommitdiffstats
path: root/src/H5Ppublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-01-30 14:19:34 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-01-30 14:19:34 (GMT)
commit7e7e5513e1a66163b88bc82a8d88563baddc3560 (patch)
tree30f0ad92e227b6bba42fe1170e2a609e3e2e439c /src/H5Ppublic.h
parentfa5fd6a800c9c309add0d4c92bfb13fcfbed0e19 (diff)
downloadhdf5-7e7e5513e1a66163b88bc82a8d88563baddc3560.zip
hdf5-7e7e5513e1a66163b88bc82a8d88563baddc3560.tar.gz
hdf5-7e7e5513e1a66163b88bc82a8d88563baddc3560.tar.bz2
[svn-r201] Changed H5Pget/set_hyperslab to final consensus types: int for offset and
size_t for count & stride.
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r--src/H5Ppublic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h
index f76e0e7..26e70e6 100644
--- a/src/H5Ppublic.h
+++ b/src/H5Ppublic.h
@@ -43,10 +43,10 @@ int H5Pget_ndims (hid_t space_id);
int H5Pget_dims (hid_t space_id, size_t dims[]);
hbool_t H5Pis_simple (hid_t space_id);
herr_t H5Pset_space (hid_t space_id, int rank, const size_t *dims);
-herr_t H5Pset_hyperslab(hid_t sid, const int *start, const int *count,
- const int *stride);
+herr_t H5Pset_hyperslab(hid_t sid, const int *start, const size_t *count,
+ const size_t *stride);
int H5Pget_hyperslab (hid_t sid, int offset[]/*out*/,
- int size[]/*out*/, int stride[]/*out*/);
+ size_t size[]/*out*/, size_t stride[]/*out*/);
#ifdef __cplusplus
}