mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-16 20:21:34 +00:00
14 lines
291 B
C#
14 lines
291 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);
|
|
}
|
|
} |