mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 20:38:38 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
15 lines
331 B
C#
15 lines
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; }
|
|
}
|
|
} |