summaryrefslogtreecommitdiffstats
path: root/src/H5Ppublic.h
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-01-29 04:11:58 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-01-29 04:11:58 (GMT)
commitd51c454c82435bf316423e53b6ebc72d6aa079c8 (patch)
treec80982fbccdfea74ae37c61565087e6b92f7586e /src/H5Ppublic.h
parentd4a3224c0fde991cdf65392aeeae326c46406121 (diff)
downloadhdf5-d51c454c82435bf316423e53b6ebc72d6aa079c8.zip
hdf5-d51c454c82435bf316423e53b6ebc72d6aa079c8.tar.gz
hdf5-d51c454c82435bf316423e53b6ebc72d6aa079c8.tar.bz2
[svn-r194] Changes since 19980128
---------------------- ./src/H5P.c Removed H5Pcreate() ./src/H5Psimp.c Copy int[] return value from H5P_get_hyperslab() to size_t[] argument to pass to other hyperslab functions. ./test/dsets.c Added a call to H5Eprint() to help track down Alberts O2k bug.
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r--src/H5Ppublic.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h
index 9d78784..f76e0e7 100644
--- a/src/H5Ppublic.h
+++ b/src/H5Ppublic.h
@@ -36,9 +36,6 @@ extern "C" {
#endif
/* Functions in H5P.c */
-#ifdef OLD_WAY
-hid_t H5Pcreate (H5P_class_t type);
-#endif /* OLD_WAY */
hid_t H5Pcreate_simple (int rank, size_t dims[]);
herr_t H5Pclose (hid_t space_id);
size_t H5Pget_npoints (hid_t space_id);
@@ -49,7 +46,7 @@ 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);
int H5Pget_hyperslab (hid_t sid, int offset[]/*out*/,
- int size[]/*out*/, int stride[]/*out*/);
+ int size[]/*out*/, int stride[]/*out*/);
#ifdef __cplusplus
}