diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2005-02-22 22:04:46 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2005-02-22 22:04:46 (GMT) |
commit | 3a3d51843166416c11d8f46aa67f47f8257889ef (patch) | |
tree | 153142b1fa1aa6f067e6f129f15ad65bd9d97d21 /hl/src/H5DS.h | |
parent | 081ac87fedbf20e700299dbe06dfc64fe1e96e7d (diff) | |
download | hdf5-3a3d51843166416c11d8f46aa67f47f8257889ef.zip hdf5-3a3d51843166416c11d8f46aa67f47f8257889ef.tar.gz hdf5-3a3d51843166416c11d8f46aa67f47f8257889ef.tar.bz2 |
[svn-r10065] Purpose:
new definition for H5DSget_label (returns the label size)
more tests
Description:
Solution:
Platforms tested:
linux
solaris
Misc. update:
Diffstat (limited to 'hl/src/H5DS.h')
-rw-r--r-- | hl/src/H5DS.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/hl/src/H5DS.h b/hl/src/H5DS.h index 4ae47ef..327f602 100644 --- a/hl/src/H5DS.h +++ b/hl/src/H5DS.h @@ -48,7 +48,7 @@ herr_t H5DSdetach_scale(hid_t did, hid_t dsid, unsigned int idx); -herr_t H5DSset_scale(hid_t did, +herr_t H5DSset_scale(hid_t dsid, char *dimname); herr_t H5DSget_nscales(hid_t did, @@ -56,12 +56,13 @@ herr_t H5DSget_nscales(hid_t did, int *nscales); herr_t H5DSset_label(hid_t did, - char *label, - unsigned int idx); + unsigned int idx, + char *label); -herr_t H5DSget_label(hid_t did, - char *label, - unsigned int idx); +ssize_t H5DSget_label(hid_t did, + unsigned int idx, + char *label, + size_t size); ssize_t H5DSget_scale_name(hid_t did, char *name, |