- Add RtlCompareMemoryUlong and RtlCopyBytes/RtlFillBytes/RtlZeroBytes

svn path=/trunk/; revision=53081
This commit is contained in:
Thomas Faber 2011-08-05 09:36:32 +00:00
parent 8fd9e23140
commit 9385a7847e

View file

@ -1997,6 +1997,19 @@ RtlFillMemoryUlong(
IN ULONG Fill
);
NTSYSAPI
SIZE_T
NTAPI
RtlCompareMemoryUlong(
IN PVOID Source,
IN SIZE_T Length,
IN ULONG Pattern
);
#define RtlCopyBytes RtlCopyMemory
#define RtlFillBytes RtlFillMemory
#define RtlZeroBytes RtlZeroMemory
#endif
NTSYSAPI