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