mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-02-24 22:16:09 +01:00
11 lines
273 B
C#
11 lines
273 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Cpu.LightningJit
|
|
{
|
|
interface IStackWalker
|
|
{
|
|
IEnumerable<ulong> GetCallStack(nint framePointer, nint codeRegionStart, int codeRegionSize, nint codeRegion2Start, int codeRegion2Size);
|
|
}
|
|
}
|