BizHawk/BizHawk.Client.Common/Api/Interfaces/IMemEvents.cs

13 lines
434 B
C#

using BizHawk.Emulation.Common;
namespace BizHawk.Client.Common
{
public interface IMemEvents : IExternalApi
{
void AddReadCallback(MemoryCallbackDelegate cb, uint? address, string domain);
void AddWriteCallback(MemoryCallbackDelegate cb, uint? address, string domain);
void AddExecCallback(MemoryCallbackDelegate cb, uint? address, string domain);
void RemoveMemoryCallback(MemoryCallbackDelegate cb);
}
}