Kernel32MoveMemory(IntPtr, IntPtr, IntPtr) Method

Moves a block of memory from one location to another.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", EntryPoint = "RtlMoveMemory", CallingConvention = CallingConvention.StdCall, 
	CharSet = CharSet.Auto, ExactSpelling = true, SetLastError = true)]
public static void MoveMemory(
	IntPtr destination,
	IntPtr source,
	IntPtr length
)

Parameters

destination  IntPtr
A pointer to the starting address of the move destination.
source  IntPtr
A pointer to the starting address of the block of memory to be moved.
length  IntPtr
The size of the block of memory to move, in bytes.

Remarks

See Also