Parent Directory
|
Revision Log
+ import search code from PCSX2 Ram Dump (no need to re-invent the wheel...plus it cuts down on code refactoring time)
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 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |