--- trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs 2013/06/06 08:18:44 578 +++ trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs 2013/06/06 08:21:11 579 @@ -7,7 +7,7 @@ namespace RomCheater.PluginFramework.Eve { public interface IBrowseMemoryRegion { - bool BrowseMemoryRegion(uint MemoryRegion); + bool BrowseMemoryRegion(ulong MemoryRegion); } public interface IAcceptsBrowseMemoryRegion @@ -23,7 +23,7 @@ namespace RomCheater.PluginFramework.Eve { public BrowseMemoryRegionEvent() : this(0) { } public BrowseMemoryRegionEvent(object sender) : this(sender, 0) { } - public BrowseMemoryRegionEvent(uint memoryRegion) : base() { this.MemoryRegion = memoryRegion; } + public BrowseMemoryRegionEvent(ulong memoryRegion) : base() { this.MemoryRegion = memoryRegion; } public BrowseMemoryRegionEvent(object sender, ulong memoryRegion) : base(sender) { this.MemoryRegion = memoryRegion; } #region IBrowseMemoryRegionEvent members public ulong MemoryRegion { get; private set; } |