mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-01 14:10:48 -07:00
Explicitly label class visibility
This commit is contained in:
@ -15,7 +15,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
|
||||
namespace Ryujinx.HLE.HOS.Services.Ldr
|
||||
{
|
||||
[StructLayout(LayoutKind.Explicit, Size = 0x350)]
|
||||
unsafe struct NrrHeader
|
||||
internal unsafe struct NrrHeader
|
||||
{
|
||||
[FieldOffset(0)]
|
||||
public uint Magic;
|
||||
@ -48,7 +48,7 @@ namespace Ryujinx.HLE.HOS.Services.Ldr
|
||||
public uint HashCount;
|
||||
}
|
||||
|
||||
class NrrInfo
|
||||
internal class NrrInfo
|
||||
{
|
||||
public NrrHeader Header { get; private set; }
|
||||
public List<byte[]> Hashes { get; private set; }
|
||||
@ -62,7 +62,7 @@ namespace Ryujinx.HLE.HOS.Services.Ldr
|
||||
}
|
||||
}
|
||||
|
||||
class NroInfo
|
||||
internal class NroInfo
|
||||
{
|
||||
public NxRelocatableObject Executable { get; private set; }
|
||||
|
||||
@ -93,7 +93,7 @@ namespace Ryujinx.HLE.HOS.Services.Ldr
|
||||
}
|
||||
}
|
||||
|
||||
class IRoInterface : IpcService
|
||||
internal class IRoInterface : IpcService
|
||||
{
|
||||
private Dictionary<int, ServiceProcessRequest> _commands;
|
||||
|
||||
|
Reference in New Issue
Block a user