Files
sharpemu/src/SharpEmu.HLE/IGuestMemoryAllocator.cs
T
2026-06-21 23:18:18 +03:00

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);
}