mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[NDK]
- Add RtlCompareMemoryUlong and RtlCopyBytes/RtlFillBytes/RtlZeroBytes svn path=/trunk/; revision=53081
This commit is contained in:
parent
8fd9e23140
commit
9385a7847e
1 changed files with 13 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue