Ryujinx/Ryujinx.Core/Loaders/Executables/IExecutable.cs

25 lines
537 B
C#
Raw Normal View History

2018-02-04 23:08:20 +00:00
using System.Collections.ObjectModel;
namespace Ryujinx.Core.Loaders.Executables
2018-02-04 23:08:20 +00:00
{
public enum Extensions
{
NRO,
NSO
}
public interface IExecutable
2018-02-04 23:08:20 +00:00
{
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; }
Extensions Extension { get; }
2018-02-04 23:08:20 +00:00
}
}