Parent Directory
|
Revision Log
+ overhaul memory scanner
1 | william | 231 | using System; |
2 | using System.Collections.Generic; | ||
3 | using System.Linq; | ||
4 | using System.Text; | ||
5 | |||
6 | namespace Sojaner.MemoryScanner.MemoryProviers | ||
7 | { | ||
8 | public interface IMemoryWriter | ||
9 | { | ||
10 | void WriteProcessMemory(uint MemoryAddress, byte byteToWrite, out int bytesWritten); | ||
11 | void WriteProcessMemory(uint MemoryAddress, byte[] bytesToWrite, out int bytesWritten); | ||
12 | } | ||
13 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |