Explicitly label class visibility

This commit is contained in:
Alex Barney
2018-12-01 14:38:15 -06:00
parent 3a02739519
commit ad5eb5787c
302 changed files with 308 additions and 308 deletions

View File

@ -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;