Revision: | 396 |
Committed: | Wed Jun 20 10:51:25 2012 UTC (10 years, 7 months ago) by william |
File size: | 503 byte(s) |
Log Message: | use binaryready again for range comparision |
# | Content |
---|---|
1 | 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 | bool Compare(T Start, T End, SearchDataTypes bitsize, bool unsigned, BinaryReader reader); |
13 | //bool Compare(T Start, T End, SearchDataTypes bitsize, bool unsigned, BinaryReader reader, T Value); |
14 | } |
15 | } |