chore: implement RtlMoveMemory in the other kawariki-patches as well

This commit is contained in:
sSAR 2025-04-21 18:02:07 +02:00
parent 03aac1a3fd
commit 2c4b99c68b

View file

@ -256,6 +256,9 @@ module Win32API
#Preload.require "PreloadIni.rb" #Preload.require "PreloadIni.rb"
#Preload::Ini.writeIniString filename, appname, keyname, value #Preload::Ini.writeIniString filename, appname, keyname, value
end end
RtlMoveMemory = ->(dest, src, length) do
dest[0, length] = src[0, length]
end
end end
module User32 module User32