mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:48:35 +00:00
c2c765b30f
This commit implements the argv config key in Ryujinx (by creating a temporary copy of the homebrew executable in the sdmc VFS) to make it possible to load libnx's "romfs" files. This commit also call Os.Dispose in Ns.OnFinish to dispose all resources when exiting
17 lines
372 B
C#
17 lines
372 B
C#
namespace Ryujinx.HLE.Loaders.Executables
|
|
{
|
|
public interface IExecutable
|
|
{
|
|
string FilePath { get; }
|
|
|
|
byte[] Text { get; }
|
|
byte[] RO { get; }
|
|
byte[] Data { get; }
|
|
|
|
int Mod0Offset { get; }
|
|
int TextOffset { get; }
|
|
int ROOffset { get; }
|
|
int DataOffset { get; }
|
|
int BssSize { get; }
|
|
}
|
|
} |