MoveMemory()
Syntax
MoveMemory(*SourceMemoryID, *DestinationMemoryID, Length)Description
Copy a memory area starting from the *SourceMemoryID (the start memory address) to the *DestinationMemoryID (address of the destination memory) with the specified length (in bytes).
Unlike CopyMemory(), the source and destinations memory area can overlap. MoveMemory() is slower than CopyMemory(), so it's better to use it only when necessary.
Supported OS
All