Revision: | 231 |
Committed: | Sun Jun 3 12:36:47 2012 UTC (11 years, 6 months ago) by william |
File size: | 310 byte(s) |
Log Message: | + overhaul memory scanner |
# | User | Rev | Content |
---|---|---|---|
1 | william | 231 | using System; |
2 | using System.Collections.Generic; | ||
3 | using System.Linq; | ||
4 | using System.Text; | ||
5 | |||
6 | namespace Sojaner.MemoryScanner.MemoryProviers | ||
7 | { | ||
8 | public interface IFileWriter | ||
9 | { | ||
10 | bool WriteProcessMemoryToFile(string filename, uint MemoryAddress, int bytesToRead, out int bytesRead); | ||
11 | } | ||
12 | } |