mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 17:38:32 +00:00
17 lines
432 B
C#
17 lines
432 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Ryujinx.Core.Loaders.Executables
|
|
{
|
|
public interface IExecutable
|
|
{
|
|
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; }
|
|
}
|
|
} |