mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-15 23:46:15 +08:00
10 lines
243 B
C#
10 lines
243 B
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
namespace SharpEmu.HLE;
|
|
|
|
public interface IGuestMemoryAllocator
|
|
{
|
|
bool TryAllocateGuestMemory(ulong size, ulong alignment, out ulong address);
|
|
}
|