This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ryubing/Ryujinx.HLE/Loaders/Executables/IExecutable.cs

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