From 2c4b99c68ba24681270d63b70680f34c9f69b6ca Mon Sep 17 00:00:00 2001 From: sSAR <138690654+zUltimaPG3D@users.noreply.github.com> Date: Mon, 21 Apr 2025 18:02:07 +0200 Subject: [PATCH] chore: implement RtlMoveMemory in the other kawariki-patches as well --- Kawariki-patches/libs/Win32API.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Kawariki-patches/libs/Win32API.rb b/Kawariki-patches/libs/Win32API.rb index cbcf263..2541363 100644 --- a/Kawariki-patches/libs/Win32API.rb +++ b/Kawariki-patches/libs/Win32API.rb @@ -256,6 +256,9 @@ module Win32API #Preload.require "PreloadIni.rb" #Preload::Ini.writeIniString filename, appname, keyname, value end + RtlMoveMemory = ->(dest, src, length) do + dest[0, length] = src[0, length] + end end module User32