ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IFileWriter.cs
Revision: 575
Committed: Thu Jun 6 07:46:38 2013 UTC (9 years, 11 months ago) by william
File size: 312 byte(s)
Log Message:

File Contents

# 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, ulong MemoryAddress, uint bytesToRead, out int bytesRead);
11 }
12 }