summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2009-06-24 16:19:55 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2009-06-24 16:19:55 (GMT)
commit3cc47a027810a0e20fbb0f867a9ebbc113dfd8dd (patch)
treed04cac56edbd4fccfe9552d5e9755512a2c1b55d /hl
parent5c0dbbb8d8564b0ddc3ff838a4240139a6248c2b (diff)
downloadhdf5-3cc47a027810a0e20fbb0f867a9ebbc113dfd8dd.zip
hdf5-3cc47a027810a0e20fbb0f867a9ebbc113dfd8dd.tar.gz
hdf5-3cc47a027810a0e20fbb0f867a9ebbc113dfd8dd.tar.bz2
[svn-r17099] Cleaned up comments.
Diffstat (limited to 'hl')
-rw-r--r--hl/src/H5LR.c29
1 files changed, 14 insertions, 15 deletions
diff --git a/hl/src/H5LR.c b/hl/src/H5LR.c
index ebc2eb9..423a366 100644
--- a/hl/src/H5LR.c
+++ b/hl/src/H5LR.c
@@ -252,7 +252,6 @@ BEGIN_FUNC(PKGINIT, ERR,
herr_t, SUCCEED, FAIL,
H5LR__pkg_init(void))
-CATCH
END_FUNC(PKGINIT)
@@ -279,15 +278,15 @@ END_FUNC(PKGINIT)
*/
BEGIN_FUNC(PUB, ERR,
herr_t, SUCCEED, FAIL,
-H5LRget_region_info(hid_t obj_id, /* -IN- Id. of any object in a file associated with reference */
- const hdset_reg_ref_t *ref, /* -IN- Region reference to query */
- size_t *len, /* -OUT- Size of the buffer path */
- char *path, /* -OUT- Full path that a region reference points to */
- int *rank, /* -OUT- The number of dimensions of the dataset pointed by region reference */
- hid_t *dtype, /* -OUT- Dataset datatype pointed by region reference */
- H5S_sel_type *sel_type, /* -OUT- Type fo the selection (point or hyperslab) */
- size_t *numelem, /* -IN/OUT- Number of coordinate blocks or selected elements */
- hsize_t *buf ) ) /* -OUT- Buffer containing description of the region */
+H5LRget_region_info(hid_t obj_id,
+ const hdset_reg_ref_t *ref,
+ size_t *len,
+ char *path,
+ int *rank,
+ hid_t *dtype,
+ H5S_sel_type *sel_type,
+ size_t *numelem,
+ hsize_t *buf ) )
hid_t dset = -1, sid = -1; /* dataset and space id */
@@ -401,11 +400,11 @@ END_FUNC(PUB)
*/
BEGIN_FUNC(PUB, ERR,
herr_t, SUCCEED, FAIL,
-H5LRread_region(hid_t obj_id, /* -IN- Id. of any object in a file associated with reference */
- const hdset_reg_ref_t *ref, /* -IN- Region reference to query */
- hid_t mem_type, /* -IN- Id. of the memory datatype */
- size_t *numelem, /* -IN/OUT- Number of elements in the referenced region */
- void *buf) ) /* -OUT- Buffer containing data from the referenced region */
+H5LRread_region(hid_t obj_id,
+ const hdset_reg_ref_t *ref,
+ hid_t mem_type,
+ size_t *numelem,
+ void *buf) )
hid_t dset = -1, file_space = -1; /* Identifier of the dataset's dataspace in the file */
hid_t mem_space = -1; /* Identifier of the memory dataspace */