<Return[R]><Top>

RtlZeroMemory

Declare Sub Api_ZeroMemory Lib "kernel32" Alias "RtlZeroMemory" (Destination As Any, ByVal Length&)
Declare Sub RtlZeroMemory Lib "kernel32" (dest As Any, ByVal Bytes As Long)

パラメータ
Destination
    [入力]移動先の開始アドレスへのポインタを指定する。
Source
    [入力]移動したいメモリブロックの開始アドレスへのポインタを指定する。
Length
    [入力]移動したいメモリブロックのサイズをバイト数単位で指定する。
 

戻り値
    戻り値はない。

解説
    移動元と移動先のメモリブロックは、重なっていてもかまわない。

 

参照

    ZeroMemory