This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can trysigning in orchanging directories.
Access to this page requires authorization. You can trychanging directories.
Fills a block of memory with zeros.
To avoid any undesired effects of optimizing compilers, use theSecureZeroMemory function.
void ZeroMemory( [in] PVOID Destination, [in] SIZE_T Length);Destination [in]
A pointer to the starting address of the block of memory to fill with zeros.
Length [in]
The size of the block of memory to fill with zeros, in bytes.
This macro has no return value.
Many programming languages include syntax for initializing complex variables to zero. There can be differences between the results of these operations and theZeroMemory function. UseZeroMemory to clear a block of memory in any programming language.
This macro is defined as theRtlZeroMemory macro. For more information, see WinBase.h and WinNT.h.
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Header | WinBase.h (include Windows.h) |