// Copyright (C) 2026 SharpEmu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later namespace SharpEmu.HLE.Host; public interface IHostSymbolResolver { /// Returns the native address of the function, or 0 if unavailable. nint GetAddress(HostRuntimeFunction function); }