1 |
william |
280 |
using System; |
2 |
|
|
using System.Collections.Generic; |
3 |
|
|
using System.Linq; |
4 |
|
|
using System.Text; |
5 |
|
|
using System.IO; |
6 |
|
|
|
7 |
|
|
namespace RomCheater.Docking.MemorySearch |
8 |
|
|
{ |
9 |
|
|
public interface IRangeComparer<T> |
10 |
|
|
{ |
11 |
|
|
//bool Compare(T Start, T End, T Value, SearchDataTypes bitsize); |
12 |
william |
384 |
bool Compare(T Start, T End, SearchDataTypes bitsize, bool unsigned, byte[] buffered_mem); |
13 |
william |
280 |
//bool Compare(T Start, T End, SearchDataTypes bitsize, bool unsigned, BinaryReader reader, T Value); |
14 |
|
|
} |
15 |
|
|
} |