mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-06 14:41:08 +00:00
15 lines
289 B
C#
15 lines
289 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Memory
|
|
{
|
|
public interface IJitMemoryBlock : IDisposable
|
|
{
|
|
IntPtr Pointer { get; }
|
|
|
|
void Commit(ulong offset, ulong size);
|
|
|
|
void MapAsRx(ulong offset, ulong size);
|
|
void MapAsRwx(ulong offset, ulong size);
|
|
}
|
|
}
|