<Return[C]><Top>

CopyMemory

Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Any, Source As Any, ByVal Length&)

Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (pDest As Any, pSource As Any, ByVal dwLength As Long)

指定されたメモリブロックの内容を、他の場所へコピーする。

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

戻り値
    戻り値はなし。