mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 11:26:24 +02:00
10 lines
207 B
C#
10 lines
207 B
C#
namespace ARMeilleure.Memory
|
|
{
|
|
public interface IJitMemoryAllocator
|
|
{
|
|
IJitMemoryBlock Allocate(ulong size);
|
|
IJitMemoryBlock Reserve(ulong size);
|
|
|
|
ulong GetPageSize();
|
|
}
|
|
}
|