H5Iregister
(
H5I_type_t type
,
void *object
)
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
.
H5I_type_t type |
IN: The identifier of the type to which the new ID will belong |
void *object |
IN: Pointer to memory for the library to store |