1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 02:56:47 -06:00

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; }
}
}