ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IReadMemory.cs
(Generate patch)

Comparing trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IReadMemory.cs (file contents):
Revision 377 by william, Sun Jun 3 16:09:05 2012 UTC vs.
Revision 378 by william, Tue Jun 19 07:56:36 2012 UTC

# Line 7 | Line 7 | namespace Sojaner.MemoryScanner.MemoryPr
7   {
8      public interface IReadMemory
9      {
10 <        bool ReadMemory(int address, out byte value);
11 <        bool ReadMemory(int address, out sbyte value);
12 <        bool ReadMemory(int address, out ushort value);
13 <        bool ReadMemory(int address, out short value);
14 <        bool ReadMemory(int address, out uint value);
15 <        bool ReadMemory(int address, out int value);
16 <        bool ReadMemory(int address, out ulong value);
17 <        bool ReadMemory(int address, out long value);
10 >        bool ReadMemory(uint address, out byte value);
11 >        bool ReadMemory(uint address, out sbyte value);
12 >        bool ReadMemory(uint address, out ushort value);
13 >        bool ReadMemory(uint address, out short value);
14 >        bool ReadMemory(uint address, out uint value);
15 >        bool ReadMemory(uint address, out int value);
16 >        bool ReadMemory(uint address, out ulong value);
17 >        bool ReadMemory(uint address, out long value);
18      }
19   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines