Adding windows.winproxy.RtlMoveMemory

This commit is contained in:
clement rouault
2022-10-31 10:24:25 +01:00
parent c1aad71dd3
commit 09fa7c49ec
+4
View File
@@ -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()