IStackWalker.cs 259 B

123456789
  1. using System.Collections.Generic;
  2. namespace Ryujinx.Cpu.LightningJit
  3. {
  4. interface IStackWalker
  5. {
  6. IEnumerable<ulong> GetCallStack(nint framePointer, nint codeRegionStart, int codeRegionSize, nint codeRegion2Start, int codeRegion2Size);
  7. }
  8. }