chore: implement kernel32::RtlMoveMemory

This commit is contained in:
sSAR 2025-04-21 18:00:37 +02:00
parent f36b1ef78a
commit 03aac1a3fd

View file

@ -285,7 +285,9 @@ module Win32API
end
RtlMoveMemory = ->(dest, src, length) do
dest[0, length] = src[0, length]
end