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 |
575 |
void ReadProcessMemory(long 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 |
575 |
void ReadProcessMemoryAtOnce(ulong MemoryAddress, uint bytesToRead, out int bytesRead, out byte[] data); |
15 |
william |
543 |
|
16 |
william |
575 |
void UpdateAddressArray(ulong[] addresses, uint size, out byte[][] values); |
17 |
william |
231 |
} |
18 |
|
|
} |