[DllImport("kernel32.dll", EntryPoint="RtlCopyMemory")]
static extern void CopyMemory(IntPtr Destination, IntPtr Source, uint Length);
<DllImport("kernel32.dll", EntryPoint:="RtlCopyMemory")> _
Friend Shared Sub CopyMemory(ByVal Destination As IntPtr, ByVal Source As IntPtr, ByVal Length As UInteger)
End Sub
Declare Sub CopyMemory Alias "RtlCopyMemory" Lib "kernel32.dll" (hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)
None.
Do you know one? Please contribute it!
[DllImport("kernel32.dll")]
static extern unsafe void CopyMemory(byte* Destination, byte* Source, int Length);
It seems that using the EntryPoint - compiles and runs, yet doesn't always copy the memory. Without the entry point - it does.
None.
Please add some!
Please add some!