ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IMemoryWriter.cs
Revision: 352
Committed: Sat Jun 9 21:11:02 2012 UTC (11 years, 3 months ago) by william
File size: 390 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 IMemoryWriter
9 {
10 //void WriteProcessMemory(int MemoryAddress, byte byteToWrite, out int bytesWritten);
11 void WriteProcessMemory(int MemoryAddress, byte[] bytesToWrite, out int bytesWritten);
12 }
13 }