mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-26 21:37:44 +02:00
17 lines
No EOL
413 B
C#
17 lines
No EOL
413 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Ryujinx.Loaders.Executables
|
|
{
|
|
interface IElf
|
|
{
|
|
ReadOnlyCollection<byte> Text { get; }
|
|
ReadOnlyCollection<byte> RO { get; }
|
|
ReadOnlyCollection<byte> Data { get; }
|
|
|
|
int Mod0Offset { get; }
|
|
int TextOffset { get; }
|
|
int ROOffset { get; }
|
|
int DataOffset { get; }
|
|
int BssSize { get; }
|
|
}
|
|
} |