RtlCopyMemory v0.1.0

Source
Copies bytes between non-overlapping memory ranges.

Package: Windows

Microsoft documentation: RtlCopyMemory

Signature

func RtlCopyMemory(
    destination: *var opaque,
    source: *opaque,
    length: uint
);

Both ranges must be valid for length bytes and must not overlap. Invalid pointers, undersized buffers, or overlap can corrupt memory.

See also