13 lines
434 B
C#
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);
|
|
}
|
|
}
|