Parent Directory
|
Revision Log
change int in method to uint
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 | 235 | bool ReadFirstNonZeroByte(uint MemoryAddress, uint bytesToRead, out uint address); |
11 | void ReadProcessMemory(uint MemoryAddress, uint bytesToRead, out int bytesRead, out byte[] data); | ||
12 | william | 231 | } |
13 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |