MoveMemory()

Syntax

MoveMemory(*SourceMemoryID, *DestinationMemoryID, Size)
Description
Copy a memory area starting from the *SourceMemoryID to the *DestinationMemoryID. Overlapping of the two memory areas is allowed.

Parameters

*SourceMemoryID The address where the bytes are copied from.
*DestinationMemoryID The address where the bytes are copied to.
Size The amount of bytes to copy.

Return value

None.

Remarks

This command can be slower than CopyMemory(), but it ensures that the bytes are copied correctly, even if the two memory areas overlap.

See Also

CopyMemory(), AllocateMemory(), MemorySize()

Supported OS

All

<- MemoryStringLength() - Memory Index - PeekA() ->