15 lines
No EOL
331 B
C#
15 lines
No EOL
331 B
C#
namespace Ryujinx.HLE.Loaders.Executables
|
|
{
|
|
interface IExecutable
|
|
{
|
|
byte[] Text { get; }
|
|
byte[] Ro { get; }
|
|
byte[] Data { get; }
|
|
|
|
int TextOffset { get; }
|
|
int RoOffset { get; }
|
|
int DataOffset { get; }
|
|
int BssOffset { get; }
|
|
int BssSize { get; }
|
|
}
|
|
} |