Name: H5Tget_array_dims1
Signature:
int H5Tget_array_dims1( hid_t adtype_id, hsize_t dims[], int perm[] )

Purpose:
Retrieves sizes of array dimensions.

Notice:
This function is renamed from H5Tget_array_dims and deprecated in favor of the function H5Tget_array_dims2 or the new macro H5Tget_array_dims.

Description:
H5Tget_array_dims1 returns the sizes of the dimensions and the dimension permutations of the specified array datatype object.

The sizes of the dimensions are returned in the array dims.

The parameter perm is not used.

Parameters:

Returns:
Returns the non-negative number of dimensions of the array type if successful; otherwise returns a negative value.

Fortran90 Interface: h5tget_array_dims_f
SUBROUTINE h5tget_array_dims_f(type_id, dims, hdferr) 
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: type_id      ! Identifier of the array datatype
  INTEGER(HSIZE_T), DIMENSION(*), INTENT(OUT) ::  dims 
                                             ! Buffer to store array datatype
  INTEGER, INTENT(OUT)  :: hdferr            ! Error code
END SUBROUTINE h5tget_array_dims_f
	

History: