free_function Delegate

GMP Native Interface for .NET

free_function Delegate
De-allocate the space pointed to by ptr.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public delegate void free_function(
	void_ptr ptr,
	size_t size
)
Public Delegate Sub free_function ( 
	ptr As void_ptr,
	size As size_t
)
public delegate void free_function(
	void_ptr ptr, 
	size_t size
)
type free_function = 
    delegate of 
        ptr : void_ptr * 
        size : size_t -> unit

Parameters

ptr
Type: Math.Gmp.Nativevoid_ptr
Pointer to previously allocated block.
size
Type: Math.Gmp.Nativesize_t
Number of bytes of previously allocated block.
See Also