Name: H5Iregister
Signature:
hid_t H5Iregister( H5I_type_t type, void *object )
Purpose:
Creates and returns a new ID.
Description:
H5Iregister allocates space for a new ID and returns an identifier for it.

The type parameter is the identifier for the ID type to which this new ID will belong. This identifier must have been created by a call to H5Iregister_type.

The object parameter is a pointer to the memory which the new ID will be a reference to. This pointer will be stored by the library and returned to you via a call to H5Iobject_verify.

Parameters:
Returns:
Returns the new ID on success, negative on failure.
Fortran90 Interface:
This function is not supported in FORTRAN 90.