Releases a region of pages within the virtual address space of a process
#include <Memory.au3>
_MemVirtualFree ( $pAddress, $iSize, $iFreeType )
$pAddress | Points to the base address of the region of pages to be freed |
$iSize | Specifies the size, in bytes, of the region to be freed |
$iFreeType | Specifies the type of free operation: $MEM_DECOMMIT - Decommits the specified region of committed pages $MEM_RELEASE - Releases the specified region of reserved pages |
Success: | True. |
Failure: | False. |
Search VirtualFree in MSDN Library.