15 lines
331 B
C#
Raw Normal View History

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