|
ZeroMemory The ZeroMemory function fills a block of memory with zeros. VB4-32,5,6 Declare Sub ZeroMemory Lib "kernel32.dll" Alias "RtlZeroMemory" (Destination As Any, ByVal Length As Long) |
Operating Systems Supported |
Requires Windows NT 3.1 or later; Requires Windows 95 or later |
· Destination Points to the starting address of the block of memory to fill with zeros.
· Length Specifies the size, in bytes, of the block of memory to fill with zeros. |
This function doesn't return a value. |
|
|
|