10 lines
259 B
C#
10 lines
259 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Cpu.LightningJit
|
|
{
|
|
interface IStackWalker
|
|
{
|
|
IEnumerable<ulong> GetCallStack(nint framePointer, nint codeRegionStart, int codeRegionSize, nint codeRegion2Start, int codeRegion2Size);
|
|
}
|
|
}
|