The FillMemory function fills a block of memory with a specified value.
VOID FillMemory (
PVOID Destination, |
// pointer to block to fill |
DWORD Length, |
// size, in bytes, of block to fill |
BYTE Fill |
// the byte value with which to fill |
); |
This function has no return value.