Skip Navigation Links.

H5FreeCallback Delegate

Delegate for user-specified memory deallocation.

Namespace:  HDF5DotNet
Assembly:  HDF5DotNet (in HDF5DotNet.dll)

Syntax

Visual Basic
Public Delegate Sub H5FreeCallback ( _
	mem As IntPtr, _
	free_info As IntPtr _
)
C#
public delegate void H5FreeCallback(
	IntPtr mem,
	IntPtr free_info
)
Visual C++
public delegate void H5FreeCallback(
	IntPtr mem, 
	IntPtr free_info
)
JavaScript
function(mem, free_info);

Parameters

mem
Type: IntPtr
Pointer to memory to reclaim.
free_info
Type: IntPtr
Void pointer to memory containing addional user-specified information. Note that all void* must point to memory that is pinned or otherwise immune from relocation by the garbage collector.

See Also