ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IPatchMemory.cs
Revision: 229
Committed: Sat Jun 2 18:31:40 2012 UTC (10 years, 11 months ago) by william
Original Path: trunk/Win32/Sojaner.MemoryScanner/IPatchMemory.cs
File size: 611 byte(s)
Log Message:

File Contents

# User Rev Content
1 william 229 using System;
2     using System.Collections.Generic;
3     using System.Linq;
4     using System.Text;
5    
6     namespace Sojaner.MemoryScanner
7     {
8     public interface IPatchMemory
9     {
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     }