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,
uint size
) |
Visual Basic (Declaration) |
---|
Public Shared Sub MoveMemory ( _
dst As Void*, _
src As Void*, _
size As UInteger _
) |
Parameters
- dst
- Type:
System..::.Void
*
Pointer to the starting address of the move destination.
- src
- Type:
System..::.Void
*
Pointer to the starting address of the block of memory to be moved.
- size
- Type: System..::.UInt32
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