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

--- trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IPatchMemory.cs	2012/06/03 16:09:05	249
+++ trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IPatchMemory.cs	2012/06/19 07:56:36	378
@@ -7,13 +7,13 @@ namespace Sojaner.MemoryScanner.MemoryPr
 {
     public interface IPatchMemory
     {
-        bool PatchMemory(int address, byte value);
-        bool PatchMemory(int address, sbyte value);
-        bool PatchMemory(int address, ushort value);
-        bool PatchMemory(int address, short value);
-        bool PatchMemory(int address, uint value);
-        bool PatchMemory(int address, int value);
-        bool PatchMemory(int address, ulong value);
-        bool PatchMemory(int address, long value);
+        bool PatchMemory(uint address, byte value);
+        bool PatchMemory(uint address, sbyte value);
+        bool PatchMemory(uint address, ushort value);
+        bool PatchMemory(uint address, short value);
+        bool PatchMemory(uint address, uint value);
+        bool PatchMemory(uint address, int value);
+        bool PatchMemory(uint address, ulong value);
+        bool PatchMemory(uint address, long value);
     }
 }