Moves a block of memory from one location to another.

Namespace:  FreeImageAPI
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public static void MoveMemory(
	void* dst,
	void* src,
	long size
)
Visual Basic (Declaration)
Public Shared Sub MoveMemory ( _
	dst As Void*, _
	src As Void*, _
	size As Long _
)
Visual C++
public:
static void MoveMemory(
	void* dst, 
	void* src, 
	long long size
)

Parameters

dst
Type: System..::.Void *
A pointer to the starting address of the move destination.
src
Type: System..::.Void *
A pointer to the starting address of the block of memory to be moved.
size
Type: System..::.Int64
The size of the block of memory to move, in bytes.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also