Parent Directory
|
Revision Log
+ overhaul memory scanner
1 | 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 IMemoryReader |
9 | { |
10 | bool ReadFirstNonZeroByte(uint MemoryAddress, int bytesToRead, out uint address); |
11 | void ReadProcessMemory(uint MemoryAddress, int bytesToRead, out int bytesRead, out byte[] data); |
12 | } |
13 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |