Fills a block of memory with zeros
#include <WinAPIMem.au3>
_WinAPI_ZeroMemory ( $pMemory, $iLength )
$pMemory | A pointer to the starting address of a memory to be filled. |
$iLength | The number of bytes to be filled. |
Success: | 1. |
Failure: | 0 and sets the @error flag to non-zero. |
Search RtlZeroMemory in MSDN Library.
#include <WinAPIMem.au3>
Local $tStruct = DllStructCreate('byte[8]')
ConsoleWrite(DllStructGetData($tStruct, 1) & @CRLF)
_WinAPI_FillMemory($tStruct, 8, 0xAB)
ConsoleWrite(DllStructGetData($tStruct, 1) & @CRLF)
_WinAPI_ZeroMemory($tStruct, 8)
ConsoleWrite(DllStructGetData($tStruct, 1) & @CRLF)