ntdll: Export RtlCopyMemoryNonTemporal.
Needed by Blindwrite 7's kernel driver. Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
22dfb0df10
commit
74f820fccc
|
@ -526,6 +526,7 @@
|
|||
@ stdcall RtlCopyLuid(ptr ptr)
|
||||
@ stdcall RtlCopyLuidAndAttributesArray(long ptr ptr)
|
||||
@ stdcall -arch=x86_64 RtlCopyMemory(ptr ptr long)
|
||||
@ stdcall -arch=x86_64 RtlCopyMemoryNonTemporal(ptr ptr long) RtlCopyMemory
|
||||
# @ stub RtlCopyMemoryStreamTo
|
||||
# @ stub RtlCopyOutOfProcessMemoryStreamTo
|
||||
# @ stub RtlCopyRangeList
|
||||
|
|
|
@ -1002,6 +1002,7 @@
|
|||
@ stdcall RtlCopyLuid(ptr ptr)
|
||||
@ stdcall RtlCopyLuidAndAttributesArray(long ptr ptr)
|
||||
@ stdcall -arch=x86_64 RtlCopyMemory(ptr ptr long)
|
||||
@ stdcall -arch=x86_64 RtlCopyMemoryNonTemporal(ptr ptr long) RtlCopyMemory
|
||||
@ stub RtlCopyRangeList
|
||||
@ stdcall RtlCopySid(long ptr ptr)
|
||||
@ stdcall RtlCopyString(ptr ptr)
|
||||
|
|
|
@ -1696,6 +1696,11 @@ HANDLE WINAPI PsGetProcessInheritedFromUniqueProcessId(PEPROCESS);
|
|||
BOOLEAN WINAPI PsGetVersion(ULONG*,ULONG*,ULONG*,UNICODE_STRING*);
|
||||
NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS);
|
||||
|
||||
#ifdef __x86_64__
|
||||
void WINAPI RtlCopyMemoryNonTemporal(void*,const void*,SIZE_T);
|
||||
#else
|
||||
#define RtlCopyMemoryNonTemporal RtlCopyMemory
|
||||
#endif
|
||||
BOOLEAN WINAPI RtlIsNtDdiVersionAvailable(ULONG);
|
||||
|
||||
NTSTATUS WINAPI ZwAddBootEntry(PUNICODE_STRING,PUNICODE_STRING);
|
||||
|
|
Loading…
Reference in New Issue