Group: Memory Management - Library: kernel32
VOID FillMemory (
PVOID Destination, // memory block
SIZE_T Length, // size of memory block
BYTE Fill // fill value
);
DECLARE RtlFillMemory IN kernel32 AS FillMemory;
INTEGER Dest,;
INTEGER Length,;
SHORT nFill
Destination [out] Pointer to the starting address of the block of memory to fill.
Length [in] Specifies the size, in bytes, of the block of memory to fill.
Fill [in] Specifies the byte value with which to fill the memory block.
This function has no return value.