Desktop Functions: Smart Device Functions:
|
CopyMemory (urlmon)
C# Signature:
[DllImport("ntdll.dll", EntryPoint = "memcpy")] VB.NET Signature:
<DllImport("ntdll.dll", EntryPoint:="memcpy")> _ VB Signature:
Declare Sub CopyMemory Alias "memcpy" Lib "ntdll.dll" (hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long) User-Defined Types:None. Alternative Managed API:Do you know one? Please contribute it!
[DllImport("ntdll.dll", EntryPoint = "memcpy")] It seems that using the EntryPoint - compiles and runs, yet doesn't always copy the memory. Without the entry point - it does. Notes:None. RtlCopyMemory is (sometimes?) just a C macro expanding to memcpy, not a real exported DLL function. Tips & Tricks:Please add some! Sample Code:Please add some! Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|