Parent Directory
|
Revision Log
|
Patch
--- trunk/Win32/Sojaner.MemoryScanner/IPatchMemory.cs 2012/06/02 18:31:40 229 +++ trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IPatchMemory.cs 2012/06/03 16:09:05 249 @@ -3,17 +3,17 @@ using System.Linq; using System.Text; -namespace Sojaner.MemoryScanner +namespace Sojaner.MemoryScanner.MemoryProviers { 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); } }
ViewVC Help | |
Powered by ViewVC 1.1.22 |