2023-01-01 03:44:50 +00:00
|
|
|
|
namespace Ryujinx.Horizon.Common
|
2022-12-28 21:20:48 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IThreadContext
|
|
|
|
|
{
|
|
|
|
|
bool Running { get; }
|
|
|
|
|
|
|
|
|
|
ulong TlsAddress { get; }
|
2023-01-01 03:44:50 +00:00
|
|
|
|
|
|
|
|
|
ulong GetX(int index);
|
2022-12-28 21:20:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|