Implemented RtlCompareMemory() for better compatibility with NT and made use of it in RtlSameMemory(), implemented RtlFillMemory(), RtlMoveMemory(), RtlSetMemory() and RtlZeroMemory() as well

This commit is contained in:
2022-09-06 17:51:44 +02:00
parent d56b10f252
commit 41f1aee6e3
3 changed files with 212 additions and 27 deletions

View File

@@ -1,6 +1,11 @@
@ stdcall HlIoPortInByte(ptr)
@ stdcall HlIoPortOutByte(ptr long)
@ stdcall RtlCompareMemory(ptr ptr long)
@ stdcall RtlCopyMemory(ptr ptr long)
@ stdcall RtlFillMemory(ptr long long)
@ stdcall RtlMoveMemory(ptr ptr long)
@ stdcall RtlSameMemory(ptr ptr long)
@ stdcall RtlSetMemory(ptr long long)
@ stdcall RtlWideStringCompare(wstr wstr long)
@ stdcall RtlWideStringTokenize(wstr wstr wstr)
@ stdcall RtlWideStringTokenize(wstr wstr wstr)
@ stdcall RtlZeroMemory(ptr long)