--- trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IPatchMemory.cs 2012/06/03 12:36:47 231 +++ trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IPatchMemory.cs 2012/06/03 16:09:05 249 @@ -7,13 +7,13 @@ namespace Sojaner.MemoryScanner.MemoryPr { public interface IPatchMemory { - 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); + 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); } } |