Last modified: 8 December 2015

Name: H5LDget_dset_dims

Signature:
herr_t H5LDget_dset_dims( hid_t dset_id, hsize_t *cur_dims )

Purpose:
Retrieves the current dimension sizes of a dataset.

Description:
This routine retrieves the current dimension sizes for the dataset dset_id through the parameter cur_dims. It will return failure if cur_dims is NULL.

Parameters:
hid_t dset_id IN: The dataset identifier
hsize_t *cur_dims    OUT: The current dimension sizes of the dataset.

Returns:
If successful, returns zero. Otherwise, returns a negative value.

Example Usage:
See the examples in H5LDget_dset_elmts for the usage of this routine.

Fortran Interface:
None

See Also:

History:
Release     Change
1.10.0 C function introduced with this release.