From 09fa7c49ec6cb5cb4c50502d7ca2436926926ea3 Mon Sep 17 00:00:00 2001 From: clement rouault Date: Mon, 31 Oct 2022 10:24:25 +0100 Subject: [PATCH] Adding windows.winproxy.RtlMoveMemory --- windows/winproxy/apis/ntdll.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/windows/winproxy/apis/ntdll.py b/windows/winproxy/apis/ntdll.py index 12c8c8e..7140005 100644 --- a/windows/winproxy/apis/ntdll.py +++ b/windows/winproxy/apis/ntdll.py @@ -400,6 +400,10 @@ def NtQueryKey(KeyHandle, KeyInformationClass, KeyInformation, Length, ResultLen def RtlEqualUnicodeString(String1, String2, CaseInSensitive): return RtlEqualUnicodeString.ctypes_function(String1, String2, CaseInSensitive) +@NtdllProxy(error_check=None) +def RtlMoveMemory(Destination, Source, Length): + return RtlMoveMemory.ctypes_function(Destination, Source, Length) + # Firmware @NtdllProxy()