プロセスの仮想アドレス空間内ページ領域を解放します。
#Include <Memory.au3>
_MemVirtualFreeEx($hProcess, $pAddress, $iSize, $iFreeType)
パラメータ
$hProcess | プロセスのハンドル |
$pAddress | 解放されるメモリ領域の開始アドレスのポインタ |
$iSize | 解放するメモリ領域のバイト単位のサイズ |
$iFreeType | Specifies the type of free operation: $MEM_DECOMMIT - 指定したコミット済みページ領域をコミット解除します。 $MEM_RELEASE - 指定した予約済みページ領域を解放します。 |
返し値
成功: | True |
失敗: | False |
注意
なし。
関連
_MemVirtualAllocEx
こちらも参照
MSDNライブラリでVirtualFreeExを検索して下さい。