ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IPatchMemory.cs
Revision: 575
Committed: Thu Jun 6 07:46:38 2013 UTC (10 years, 5 months ago) by william
File size: 634 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 william 231 namespace Sojaner.MemoryScanner.MemoryProviers
7 william 229 {
8     public interface IPatchMemory
9     {
10 william 575 bool PatchMemory(ulong address, byte value);
11     bool PatchMemory(ulong address, sbyte value);
12     bool PatchMemory(ulong address, ushort value);
13     bool PatchMemory(ulong address, short value);
14     bool PatchMemory(ulong address, uint value);
15     bool PatchMemory(ulong address, int value);
16     bool PatchMemory(ulong address, ulong value);
17     bool PatchMemory(ulong address, long value);
18 william 229 }
19     }