@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Writes memory in the current or a remote process !!!!C# Signature: [DllImport("ntdll.dll", SetLastError=true)] static extern NTSTATUS NtWriteVirtualMemory(IntPtr ProcessHandle, IntPtr BaseAddress, byte[] Buffer, UInt32 NumberOfBytesToWrite, ref UInt32 NumberOfBytesWritten); !!!!Boo Signature: [DllImport("ntdll.dll", SetLastError : true)] def NtWriteVirtualMemory(ProcessHandle as IntPtr, BaseAddress as IntPtr, Buffer as (byte), NumberOfBytesToWrite as UInt32, ref NumberOfBytesWritten as UInt32) as UInt32: pass !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: Please add some! Documentation: NtWriteVirtualMemory@msdn on MSDN
Edit ntdll.NtWriteVirt...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.