H5Pinsert2
fn
herr_t H5Pinsert2(hid_t plist_id, const char * name, size_t size, void * value,
H5P_prp_set_func_t set, H5P_prp_get_func_t get,
H5P_prp_delete_func_t prp_del, H5P_prp_copy_func_t copy,
H5P_prp_compare_func_t compare, H5P_prp_close_func_t close)Inserts a temporary property into a property list.
Parameters
plist_id | Property list identifier |
name | Name of property to insert |
size | Size of property value |
value | Initial value for property |
set | Set callback (can be null) |
get | Get callback (can be null) |
prp_del | Delete callback (can be null) |
copy | Copy callback (can be null) |
compare | Compare callback (can be null) |
close | Close callback (can be null) |
Returns
Non-negative on success, negative on failure.