using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Sojaner.MemoryScanner.MemoryProviers { public interface IFileWriter { bool WriteProcessMemoryToFile(string filename, uint MemoryAddress, int bytesToRead, out int bytesRead); } }