[NDK][XDK][RTL] Fix definition of RtlFillMemoryUlong on x64

This commit is contained in:
Timo Kreuzer 2019-09-23 13:57:32 +02:00
parent e084a7ae83
commit fb0ebac349
3 changed files with 39 additions and 7 deletions

View file

@ -2376,9 +2376,9 @@ NTSYSAPI
VOID
NTAPI
RtlFillMemoryUlong(
OUT PVOID Destination,
IN SIZE_T Length,
IN ULONG Pattern);
_Out_writes_bytes_all_(Length) PVOID Destination,
_In_ SIZE_T Length,
_In_ ULONG Pattern);
NTSYSAPI
VOID