ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs
(Generate patch)

Comparing trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs (file contents):
Revision 323 by william, Thu Jun 7 16:33:41 2012 UTC vs.
Revision 378 by william, Tue Jun 19 07:56:36 2012 UTC

# Line 7 | Line 7 | namespace RomCheater.PluginFramework.Eve
7   {
8      public interface IBrowseMemoryRegion
9      {
10 <        bool BrowseMemoryRegion(int MemoryRegion);
10 >        bool BrowseMemoryRegion(uint MemoryRegion);
11      }
12  
13      public interface IAcceptsBrowseMemoryRegion
# Line 17 | Line 17 | namespace RomCheater.PluginFramework.Eve
17  
18      public interface IBrowseMemoryRegionEvent
19      {
20 <        int MemoryRegion { get; }
20 >       uint MemoryRegion { get; }
21      }
22      public class BrowseMemoryRegionEvent : BaseEventArgs, IBrowseMemoryRegionEvent
23      {
24          public BrowseMemoryRegionEvent() : this(0) { }
25          public BrowseMemoryRegionEvent(object sender) : this(sender, 0) { }
26 <        public BrowseMemoryRegionEvent(int memoryRegion) : base() { this.MemoryRegion = memoryRegion; }
27 <        public BrowseMemoryRegionEvent(object sender, int memoryRegion) : base(sender) { this.MemoryRegion = memoryRegion; }
26 >        public BrowseMemoryRegionEvent(uint memoryRegion) : base() { this.MemoryRegion = memoryRegion; }
27 >        public BrowseMemoryRegionEvent(object sender, uint memoryRegion) : base(sender) { this.MemoryRegion = memoryRegion; }
28          #region IBrowseMemoryRegionEvent members
29 <        public int MemoryRegion { get; private set; }
29 >        public uint MemoryRegion { get; private set; }
30          #endregion
31      }
32   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines