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()