ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/IReadMemory.cs
Revision: 378
Committed: Tue Jun 19 07:56:36 2012 UTC (10 years, 11 months ago) by william
File size: 649 byte(s)
Log Message:
use uint instead of int for memory addresses

File Contents

# User Rev Content
1 william 229 using System;
2     using System.Collections.Generic;
3     using System.Linq;
4     using System.Text;
5    
6 william 231 namespace Sojaner.MemoryScanner.MemoryProviers
7 william 229 {
8     public interface IReadMemory
9     {
10 william 378 bool ReadMemory(uint address, out byte value);
11     bool ReadMemory(uint address, out sbyte value);
12     bool ReadMemory(uint address, out ushort value);
13     bool ReadMemory(uint address, out short value);
14     bool ReadMemory(uint address, out uint value);
15     bool ReadMemory(uint address, out int value);
16     bool ReadMemory(uint address, out ulong value);
17     bool ReadMemory(uint address, out long value);
18 william 229 }
19     }