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

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Acc
{
static class AccErr
internal static class AccErr
{
public const int UserNotFound = 100;
}

View File

@ -8,7 +8,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Services.Acc
{
class IAccountService : IpcService
internal class IAccountService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -5,7 +5,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Acc
{
class IManagerForApplication : IpcService
internal class IManagerForApplication : IpcService
{
private UInt128 _uuid;

View File

@ -10,7 +10,7 @@ using System.Text;
namespace Ryujinx.HLE.HOS.Services.Acc
{
class IProfile : IpcService
internal class IProfile : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Am
{
static class AmErr
internal static class AmErr
{
public const int NoMessages = 3;
}

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Am
{
enum FocusState
internal enum FocusState
{
InFocus = 1,
OutOfFocus = 2

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IAllSystemAppletProxiesService : IpcService
internal class IAllSystemAppletProxiesService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationCreator : IpcService
internal class IApplicationCreator : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationFunctions : IpcService
internal class IApplicationFunctions : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationProxy : IpcService
internal class IApplicationProxy : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationProxyService : IpcService
internal class IApplicationProxyService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IAudioController : IpcService
internal class IAudioController : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -8,7 +8,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Services.Am
{
class ICommonStateGetter : IpcService
internal class ICommonStateGetter : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IDebugFunctions : IpcService
internal class IDebugFunctions : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IDisplayController : IpcService
internal class IDisplayController : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IGlobalStateController : IpcService
internal class IGlobalStateController : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IHomeMenuFunctions : IpcService
internal class IHomeMenuFunctions : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class ILibraryAppletAccessor : IpcService
internal class ILibraryAppletAccessor : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class ILibraryAppletCreator : IpcService
internal class ILibraryAppletCreator : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class ISelfController : IpcService
internal class ISelfController : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IStorage : IpcService
internal class IStorage : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IStorageAccessor : IpcService
internal class IStorageAccessor : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class ISystemAppletProxy : IpcService
internal class ISystemAppletProxy : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
class IWindowController : IpcService
internal class IWindowController : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Am
{
enum MessageInfo
internal enum MessageInfo
{
FocusStateChanged = 0xf,
OperationModeChanged = 0x1e,

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Am
{
enum OperationMode
internal enum OperationMode
{
Handheld = 0,
Docked = 1

View File

@ -2,7 +2,7 @@
namespace Ryujinx.HLE.HOS.Services.Am
{
class StorageHelper
internal class StorageHelper
{
private const uint LaunchParamsMagic = 0xc79497ca;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Apm
{
class IManager : IpcService
internal class IManager : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Apm
{
class ISession : IpcService
internal class ISession : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Apm
{
enum PerformanceConfiguration : uint
internal enum PerformanceConfiguration : uint
{
PerformanceConfiguration1 = 0x00010000,
PerformanceConfiguration2 = 0x00010001,

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Apm
{
enum PerformanceMode
internal enum PerformanceMode
{
Handheld = 0,
Docked = 1

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Aud
{
static class AudErr
internal static class AudErr
{
public const int DeviceNotFound = 1;
public const int UnsupportedRevision = 2;

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioOut
{
[StructLayout(LayoutKind.Sequential)]
struct AudioOutData
internal struct AudioOutData
{
public long NextBufferPtr;
public long SampleBufferPtr;

View File

@ -7,7 +7,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioOut
{
class IAudioOut : IpcService, IDisposable
internal class IAudioOut : IpcService, IDisposable
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
static class AudioConsts
internal static class AudioConsts
{
public const int HostSampleRate = 48000;
public const int HostChannelsCount = 2;

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
struct BehaviorIn
internal struct BehaviorIn
{
public long Unknown0;
public long Unknown8;

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0xc, Pack = 1)]
struct BiquadFilter
internal struct BiquadFilter
{
public byte Enable;
public byte Padding;

View File

@ -13,7 +13,7 @@ using System.Runtime.Intrinsics.X86;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
class IAudioRenderer : IpcService, IDisposable
internal class IAudioRenderer : IpcService, IDisposable
{
//This is the amount of samples that are going to be appended
//each time that RequestUpdateAudioRenderer is called. Ideally,

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
class MemoryPoolContext
internal class MemoryPoolContext
{
public MemoryPoolOut OutStatus;

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x20, Pack = 4)]
struct MemoryPoolIn
internal struct MemoryPoolIn
{
public long Address;
public long Size;

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
struct MemoryPoolOut
internal struct MemoryPoolOut
{
public MemoryPoolState State;
public int Unknown14;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
enum MemoryPoolState
internal enum MemoryPoolState
{
Invalid = 0,
Unknown = 1,

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
enum PlayState : byte
internal enum PlayState : byte
{
Playing = 0,
Stopped = 1,

View File

@ -2,7 +2,7 @@ using System;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
static class Resampler
internal static class Resampler
{
#region "LookUp Tables"
private static short[] _curveLut0 = new short[]

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
struct UpdateDataHeader
internal struct UpdateDataHeader
{
public int Revision;
public int BehaviorSize;

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x70, Pack = 1)]
struct VoiceChannelResourceIn
internal struct VoiceChannelResourceIn
{
//???
}

View File

@ -4,7 +4,7 @@ using System;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
class VoiceContext
internal class VoiceContext
{
private bool _acquired;
private bool _bufferReload;

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x170, Pack = 1)]
struct VoiceIn
internal struct VoiceIn
{
public int VoiceSlot;
public int NodeId;

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
struct VoiceOut
internal struct VoiceOut
{
public long PlayedSamplesCount;
public int PlayedWaveBuffersCount;

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x38, Pack = 1)]
struct WaveBuffer
internal struct WaveBuffer
{
public long Position;
public long Size;

View File

@ -3,7 +3,7 @@
namespace Ryujinx.HLE.HOS.Services.Aud
{
[StructLayout(LayoutKind.Sequential)]
struct AudioRendererParameter
internal struct AudioRendererParameter
{
public int SampleRate;
public int SampleCount;

View File

@ -8,7 +8,7 @@ using System.Text;
namespace Ryujinx.HLE.HOS.Services.Aud
{
class IAudioDevice : IpcService
internal class IAudioDevice : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -11,7 +11,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Services.Aud
{
class IAudioOutManager : IpcService
internal class IAudioOutManager : IpcService
{
private const string DefaultAudioOutput = "DeviceOut";

View File

@ -9,7 +9,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Services.Aud
{
class IAudioRendererManager : IpcService
internal class IAudioRendererManager : IpcService
{
private const int Rev0Magic = ('R' << 0) |
('E' << 8) |

View File

@ -6,7 +6,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Services.Aud
{
class IHardwareOpusDecoder : IpcService
internal class IHardwareOpusDecoder : IpcService
{
private const int FixedSampleRate = 48000;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Aud
{
class IHardwareOpusDecoderManager : IpcService
internal class IHardwareOpusDecoderManager : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Aud
{
enum SampleFormat : byte
internal enum SampleFormat : byte
{
Invalid = 0,
PcmInt8 = 1,

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Bcat
{
class IBcatService : IpcService
internal class IBcatService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Bcat
{
class IDeliveryCacheStorageService : IpcService
internal class IDeliveryCacheStorageService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Bcat
{
class IServiceCreator : IpcService
internal class IServiceCreator : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Bsd
{
enum BsdIoctl
internal enum BsdIoctl
{
AtMark = 0x40047307,
}

View File

@ -2,7 +2,7 @@ using System.Net.Sockets;
namespace Ryujinx.HLE.HOS.Services.Bsd
{
class BsdSocket
internal class BsdSocket
{
public int Family;
public int Type;

View File

@ -8,7 +8,7 @@ using System.Text;
namespace Ryujinx.HLE.HOS.Services.Bsd
{
class IClient : IpcService
internal class IClient : IpcService
{
private static Dictionary<WsaError, LinuxError> _errorMap = new Dictionary<WsaError, LinuxError>

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Bsd
{
class PollEvent
internal class PollEvent
{
public enum EventTypeMask
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Caps
{
class IAlbumAccessorService : IpcService
internal class IAlbumAccessorService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Caps
{
class IScreenshotService : IpcService
internal class IScreenshotService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Es
{
class IeTicketService : IpcService
internal class IeTicketService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Friend
{
class IFriendService : IpcService
internal class IFriendService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Friend
{
enum PresenceStatusFilter
internal enum PresenceStatusFilter
{
None,
Online,
@ -8,7 +8,7 @@ namespace Ryujinx.HLE.HOS.Services.Friend
OnlineOrOnlinePlay
}
struct FriendFilter
internal struct FriendFilter
{
public PresenceStatusFilter PresenceStatus;
public bool IsFavoriteOnly;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Friend
{
class IServiceCreator : IpcService
internal class IServiceCreator : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.FspSrv
{
enum FileSystemType
internal enum FileSystemType
{
Logo = 2,
ContentControl = 3,

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.FspSrv
{
static class FsErr
internal static class FsErr
{
public const int PathDoesNotExist = 1;
public const int PathAlreadyExists = 2;

View File

@ -7,7 +7,7 @@ using System.Text;
namespace Ryujinx.HLE.HOS.Services.FspSrv
{
class IDirectory : IpcService, IDisposable
internal class IDirectory : IpcService, IDisposable
{
private const int DirectoryEntrySize = 0x310;

View File

@ -5,7 +5,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Services.FspSrv
{
class IFile : IpcService, IDisposable
internal class IFile : IpcService, IDisposable
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -9,7 +9,7 @@ using static Ryujinx.HLE.Utilities.StringUtils;
namespace Ryujinx.HLE.HOS.Services.FspSrv
{
class IFileSystem : IpcService
internal class IFileSystem : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -12,7 +12,7 @@ using static Ryujinx.HLE.Utilities.StringUtils;
namespace Ryujinx.HLE.HOS.Services.FspSrv
{
class IFileSystemProxy : IpcService
internal class IFileSystemProxy : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -4,7 +4,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Services.FspSrv
{
class IStorage : IpcService
internal class IStorage : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Hid
{
class IActiveApplicationDeviceList : IpcService
internal class IActiveApplicationDeviceList : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -5,7 +5,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Hid
{
class IAppletResource : IpcService
internal class IAppletResource : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -7,7 +7,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Hid
{
class IHidServer : IpcService
internal class IHidServer : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services
{
interface IIpcService
internal interface IIpcService
{
IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
}

View File

@ -7,7 +7,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Services
{
abstract class IpcService : IIpcService
internal abstract class IpcService : IIpcService
{
public abstract IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Irs
{
class IIrSensorServer : IpcService
internal class IIrSensorServer : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

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;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Ldr
{
static class LoaderErr
internal static class LoaderErr
{
public const int InvalidMemoryState = 51;
public const int InvalidNro = 52;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Lm
{
class ILogService : IpcService
internal class ILogService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -6,7 +6,7 @@ using System.Text;
namespace Ryujinx.HLE.HOS.Services.Lm
{
class ILogger : IpcService
internal class ILogger : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Lm
{
enum LmLogField
internal enum LmLogField
{
Start = 0,
Stop = 1,

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Lm
{
enum LmLogLevel
internal enum LmLogLevel
{
Trace,
Info,

View File

@ -10,7 +10,7 @@ using static Ryujinx.HLE.Utilities.StringUtils;
namespace Ryujinx.HLE.HOS.Services.Lr
{
class ILocationResolver : IpcService
internal class ILocationResolver : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -4,7 +4,7 @@ using Ryujinx.HLE.FileSystem;
namespace Ryujinx.HLE.HOS.Services.Lr
{
class ILocationResolverManager : IpcService
internal class ILocationResolverManager : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Lr
{
class LrErr
internal class LrErr
{
public const int ProgramLocationEntryNotFound = 2;
public const int AccessDenied = 5;

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Mm
{
class IRequest : IpcService
internal class IRequest : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Ncm
{
class IContentManager : IpcService
internal class IContentManager : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Ncm
{
class IContentStorage : IpcService
internal class IContentStorage : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Nfp
{
enum DeviceState
internal enum DeviceState
{
Initialized = 0
}

View File

@ -7,7 +7,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Nfp
{
class IUser : IpcService
internal class IUser : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Nfp
{
class IUserManager : IpcService
internal class IUserManager : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Nfp
{
enum State
internal enum State
{
NonInitialized = 0,
Initialized = 1

View File

@ -11,7 +11,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Services.Nifm
{
class IGeneralService : IpcService
internal class IGeneralService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

Some files were not shown because too many files have changed in this diff Show More