Ryujinx/Ryujinx.HLE/Loaders/Executables/IExecutable.cs

15 lines
331 B
C#
Raw Normal View History

namespace Ryujinx.HLE.Loaders.Executables
2018-02-05 00:08:20 +01:00
{
interface IExecutable
2018-02-05 00:08:20 +01:00
{
byte[] Text { get; }
byte[] Ro { get; }
byte[] Data { get; }
2018-02-05 00:08:20 +01:00
int TextOffset { get; }
int RoOffset { get; }
2018-02-05 00:08:20 +01:00
int DataOffset { get; }
int BssOffset { get; }
2018-02-05 00:08:20 +01:00
int BssSize { get; }
}
}