ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IMemoryReader.cs
Revision: 235
Committed: Sun Jun 3 12:44:26 2012 UTC (11 years, 5 months ago) by william
File size: 398 byte(s)
Log Message:
change int in method to uint

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 IMemoryReader
9 {
10 bool ReadFirstNonZeroByte(uint MemoryAddress, uint bytesToRead, out uint address);
11 void ReadProcessMemory(uint MemoryAddress, uint bytesToRead, out int bytesRead, out byte[] data);
12 }
13 }