mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2026-02-22 04:16:51 -05:00
11 lines
210 B
C#
11 lines
210 B
C#
namespace ARMeilleure.Memory
|
|
{
|
|
public interface IJitMemoryAllocator
|
|
{
|
|
IJitMemoryBlock Allocate(ulong size);
|
|
IJitMemoryBlock Reserve(ulong size);
|
|
|
|
ulong GetPageSize();
|
|
}
|
|
}
|