Delegate H5D.scatter_func_t
Delegate for H5Dscatter() See https://www.hdfgroup.org/HDF5/doc/RM/RM_H5D.html#Dataset-Scatter
Namespace: HDF.PInvoke
Assembly: HDF.PInvoke.dll
Syntax
public delegate System.Int32 scatter_func_t(ref IntPtr src_buf, ref System.IntPtr src_buf_bytes_used, IntPtr op_data);
Parameters
Type | Name | Description |
---|---|---|
IntPtr | src_buf | Pointer to the buffer holding the next set of elements to scatter. |
System.IntPtr | src_buf_bytes_used | Pointer to the number of valid
bytes in |
IntPtr | op_data | User-defined pointer to data required by the callback function. |
Returns
Type | Description |
---|---|
System.Int32 | The callback function should return zero (0) to indicate success, and a negative value to indicate failure. |