--- trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IMemoryReader.cs 2012/06/03 15:28:16 248 +++ trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IMemoryReader.cs 2012/06/03 16:09:05 249 @@ -7,7 +7,7 @@ namespace Sojaner.MemoryScanner.MemoryPr { public interface IMemoryReader { - bool ReadFirstNonZeroByte(uint MemoryAddress, uint bytesToRead, out uint address); - void ReadProcessMemory(uint MemoryAddress, uint bytesToRead, out int bytesRead, out byte[] data); + bool ReadFirstNonZeroByte(int MemoryAddress, uint bytesToRead, out int address); + void ReadProcessMemory(int MemoryAddress, uint bytesToRead, out int bytesRead, out byte[] data); } } |