Ryujinx/Ryujinx.HLE/Debugger/IDebuggableProcess.cs

12 lines
345 B
C#

using Ryujinx.Memory;
namespace Ryujinx.HLE.Debugger
{
public interface IDebuggableProcess
{
public void DebugStopAllThreads();
public long[] DebugGetThreadUids();
public ARMeilleure.State.ExecutionContext DebugGetThreadContext(long threadUid);
public IVirtualMemoryManager CpuMemory { get; }
}
}