<Return[R]><Top>

RtlMoveMemory

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

Declare Function RtlMoveMemory Lib "kernel32" (ByVal pDest As Long, ByVal pSrc As Long, ByVal l As Long) As Long

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

戻り値
    戻り値はない。

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

 

参照

    MoveMemory