Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "MoveMemory" in [All]

urlmon

.

Public Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)

kernel32

.

   Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (ByVal Destination As IDSECTOR, ByVal Source As Byte, ByVal Length As Long)

.
Summary
The MoveMemory function moves a block of memory from one location to another.
.

[DllImport("Kernel32.dll", EntryPoint="RtlMoveMemory", SetLastError=false)]

.

static extern void MoveMemory(IntPtr dest, IntPtr src, int size);

.

Declare Auto Sub MoveMemory Lib "Kernel32.dll" _

.

    Alias "RtlMoveMemory" (ByVal dest As IntPtr, ByVal src As IntPtr, ByVal size As Integer)

.

<DllImport("kernel32.dll", EntryPoint:="RtlMoveMemory", SetLastError:=True, CharSet:=CharSet.Auto, ExactSpelling:=True, CallingConvention:=CallingConvention.StdCall)> _

.
Documentation
[MoveMemory] on MSDN

 
Access PInvoke.net directly from VS: