diff --git a/doc/html/RM_H5P.html b/doc/html/RM_H5P.html index da6bbb54ed..d8ae024ef1 100644 --- a/doc/html/RM_H5P.html +++ b/doc/html/RM_H5P.html @@ -4184,6 +4184,7 @@ SUBROUTINE H5P_prp_get_func_t get, H5P_prp_delete_func_t delete, H5P_prp_copy_func_t copy, + H5P_prp_compare_func_t compare, H5P_prp_close_func_t close ) @@ -4290,6 +4291,7 @@ SUBROUTINE routine returns an error value.

+

The delete routine is called when a property is being deleted from a property list. The H5P_prp_delete_func_t callback function is defined @@ -4323,6 +4325,7 @@ SUBROUTINE error value but the property is still deleted.

+

The copy routine is called when a new property list with this property is being created through a copy operation. The H5P_prp_copy_func_t collback function is defined @@ -4349,6 +4352,36 @@ SUBROUTINE If the copy routine returns a negative value, the new property value is not copied into the property and the copy routine returns an error value. +

+ +

+ The compare routine is called when a property list with + this property is compared to another property list with the same property. + The H5P_prp_compare_func_t callback function is defined + as follows: +

+ The parameters to the callback function are defined as follows: + + The compare routine may not modify the values. + The compare routine should return a positive value if + value1 is greater than value2, a negative value + if value2 is greater than value1 and zero if + value1 and value2 are equal. +

The close routine is called when a property list with this property is being closed. @@ -4722,6 +4755,7 @@ END SUBROUTINE h5pmodify_filter_f H5P_prp_get_func_t get, H5P_prp_delete_func_t delete, H5P_prp_copy_func_t copy, + H5P_prp_compare_func_t compare, H5P_prp_close_func_t close ) @@ -4749,6 +4783,7 @@ END SUBROUTINE h5pmodify_filter_f get callbacks are never called.

+

The create routine is called when a new property list with this property is being created. The H5P_prp_create_func_t callback function is defined @@ -4778,6 +4813,7 @@ END SUBROUTINE h5pmodify_filter_f create routine returns an error value.

+

The set routine is called before a new value is copied into the property. The H5P_prp_set_func_t callback function is defined @@ -4855,6 +4891,7 @@ END SUBROUTINE h5pmodify_filter_f routine returns an error value.

+

The delete routine is called when a property is being deleted from a property list. The H5P_prp_delete_func_t callback function is defined @@ -4888,6 +4925,7 @@ END SUBROUTINE h5pmodify_filter_f an error value but the property is still deleted.

+

The copy routine is called when a new property list with this property is being created through a copy operation. The H5P_prp_copy_func_t callback function is defined @@ -4916,6 +4954,36 @@ END SUBROUTINE h5pmodify_filter_f the copy routine returns an error value.

+

+ The compare routine is called when a property list with + this property is compared to another property list with the same property. + The H5P_prp_compare_func_t callback function is defined + as follows: +

+ The parameters to the callback function are defined as follows: + + The compare routine may not modify the values. + The compare routine should return a positive value if + value1 is greater than value2, a negative value + if value2 is greater than value1 and zero if + value1 and value2 are equal. +

+ +

The close routine is called when a property list with this property is being closed. The H5P_prp_close_func_t callback function is defined @@ -4948,6 +5016,7 @@ END SUBROUTINE h5pmodify_filter_f If the close routine returns a negative value, the property list close routine returns an error value but the property list is still closed. +

Parameters: