Revision: | 249 |
Committed: | Sun Jun 3 16:09:05 2012 UTC (11 years ago) by william |
File size: | 310 byte(s) |
Log Message: | change address from uint to int |
# | Content |
---|---|
1 | 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, int MemoryAddress, uint bytesToRead, out int bytesRead); |
11 | } |
12 | } |