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

Comparing trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IPatchMemory.cs (file contents):
Revision 249 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 IPatchMemory
9      {
10 <        bool PatchMemory(int address, byte value);
11 <        bool PatchMemory(int address, sbyte value);
12 <        bool PatchMemory(int address, ushort value);
13 <        bool PatchMemory(int address, short value);
14 <        bool PatchMemory(int address, uint value);
15 <        bool PatchMemory(int address, int value);
16 <        bool PatchMemory(int address, ulong value);
17 <        bool PatchMemory(int address, long value);
10 >        bool PatchMemory(uint address, byte value);
11 >        bool PatchMemory(uint address, sbyte value);
12 >        bool PatchMemory(uint address, ushort value);
13 >        bool PatchMemory(uint address, short value);
14 >        bool PatchMemory(uint address, uint value);
15 >        bool PatchMemory(uint address, int value);
16 >        bool PatchMemory(uint address, ulong value);
17 >        bool PatchMemory(uint address, long value);
18      }
19   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines