mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00
15 lines
337 B
C#
15 lines
337 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Memory
|
|
{
|
|
public interface IJitMemoryBlock : IDisposable
|
|
{
|
|
IntPtr 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);
|
|
}
|
|
}
|