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