Archived
1
0
Fork 0
forked from Mirror/Ryujinx
This repository has been archived on 2024-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
jinx/Ryujinx.HLE/Loaders/Executables/IExecutable.cs

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