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 IMemoryReader |
9 |
|
|
{ |
10 |
william |
249 |
bool ReadFirstNonZeroByte(int MemoryAddress, uint bytesToRead, out int address); |
11 |
william |
352 |
//bool ReadFirstNonZeroByte(uint MemoryAddress, uint bytesToRead, out uint address); |
12 |
william |
249 |
void ReadProcessMemory(int MemoryAddress, uint bytesToRead, out int bytesRead, out byte[] data); |
13 |
william |
352 |
//void ReadProcessMemory(uint MemoryAddress, uint bytesToRead, out uint bytesRead, out byte[] data); |
14 |
william |
404 |
void ReadProcessMemoryAtOnce(uint MemoryAddress, uint bytesToRead, out int bytesRead, out byte[] data); |
15 |
william |
231 |
} |
16 |
|
|
} |