1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 14:33:30 +01:00
Ryujinx/Ryujinx.HLE/Loaders/Executables/IExecutable.cs

15 lines
331 B
C#
Raw Normal View History

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