mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-23 06:09:59 -06:00
16 lines
335 B
C#
16 lines
335 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Memory
|
|
{
|
|
public interface IJitMemoryBlock : IDisposable
|
|
{
|
|
nint Pointer { get; }
|
|
|
|
void Commit(ulong offset, ulong size);
|
|
|
|
void MapAsRw(ulong offset, ulong size);
|
|
void MapAsRx(ulong offset, ulong size);
|
|
void MapAsRwx(ulong offset, ulong size);
|
|
}
|
|
}
|