--- trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IMemoryReader.cs 2012/06/03 12:36:47 231 +++ trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IMemoryReader.cs 2012/06/03 16:09:05 249 @@ -7,7 +7,7 @@ { public interface IMemoryReader { - bool ReadFirstNonZeroByte(uint MemoryAddress, int bytesToRead, out uint address); - void ReadProcessMemory(uint MemoryAddress, int 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); } }