Revert "Explicitly label class visibility"

This reverts commit ad5eb5787c.
This commit is contained in:
Alex Barney 2018-12-01 18:21:29 -06:00
parent d852b899c1
commit f065dcb7bf
302 changed files with 308 additions and 308 deletions

View file

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE
{
internal class DeviceMemory : IDisposable
class DeviceMemory : IDisposable
{
public const long RamSize = 4L * 1024 * 1024 * 1024;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.FileSystem.Content
{
internal static class ContentPath
static class ContentPath
{
public const string SystemContent = "@SystemContent";
public const string UserContent = "@UserContent";

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.FileSystem.Content
{
internal enum TitleType
enum TitleType
{
SystemPrograms = 0x01,
SystemDataArchive = 0x02,

View file

@ -8,7 +8,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.FileSystem
{
internal class FileSystemProvider : IFileSystemProvider
class FileSystemProvider : IFileSystemProvider
{
private readonly string _basePath;
private readonly string _rootPath;

View file

@ -3,7 +3,7 @@ using Ryujinx.HLE.HOS.Services.FspSrv;
namespace Ryujinx.HLE.FileSystem
{
internal interface IFileSystemProvider
interface IFileSystemProvider
{
long CreateFile(string name, long size);

View file

@ -10,7 +10,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.FileSystem
{
internal class PFsProvider : IFileSystemProvider
class PFsProvider : IFileSystemProvider
{
private Pfs _pfs;

View file

@ -10,7 +10,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.FileSystem
{
internal class RomFsProvider : IFileSystemProvider
class RomFsProvider : IFileSystemProvider
{
private Romfs _romFs;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.FileSystem
{
internal enum SaveDataType : byte
enum SaveDataType : byte
{
SystemSaveData,
SaveData,

View file

@ -5,7 +5,7 @@ using static Ryujinx.HLE.FileSystem.VirtualFileSystem;
namespace Ryujinx.HLE.FileSystem
{
internal static class SaveHelper
static class SaveHelper
{
public static string GetSavePath(SaveInfo saveMetaData, ServiceCtx context)
{

View file

@ -2,7 +2,7 @@
namespace Ryujinx.HLE.FileSystem
{
internal struct SaveInfo
struct SaveInfo
{
public long TitleId { get; private set; }
public long SaveId { get; private set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.FileSystem
{
internal enum SaveSpaceId
enum SaveSpaceId
{
NandSystem,
NandUser,

View file

@ -5,7 +5,7 @@ using System.IO;
namespace Ryujinx.HLE.FileSystem
{
internal class VirtualFileSystem : IDisposable
class VirtualFileSystem : IDisposable
{
public const string BasePath = "RyuFs";
public const string NandPath = "nand";

View file

@ -6,7 +6,7 @@ using Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler
{
internal class Demangler
class Demangler
{
private static readonly string Base36 = "0123456789abcdefghijklmnopqrstuvwxyz";
private List<BaseNode> _substitutionList = new List<BaseNode>();
@ -2684,7 +2684,7 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler
}
}
private class NameParserContext
class NameParserContext
{
public CvType Cv;
public SimpleReferenceType Ref;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS
{
internal static class ErrorCode
static class ErrorCode
{
public static uint MakeError(ErrorModule module, int code)
{

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS
{
internal enum ErrorModule
enum ErrorModule
{
Kernel = 1,
Fs = 2,

View file

@ -11,7 +11,7 @@ using static Ryujinx.HLE.Utilities.FontUtils;
namespace Ryujinx.HLE.HOS.Font
{
internal class SharedFontManager
class SharedFontManager
{
private Switch _device;

View file

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS
{
internal class GlobalStateTable
class GlobalStateTable
{
private ConcurrentDictionary<KProcess, IdDictionary> _dictByProcess;

View file

@ -3,7 +3,7 @@ using System.Text;
namespace Ryujinx.HLE.HOS
{
internal static class Homebrew
static class Homebrew
{
public const string TemporaryNroSuffix = ".ryu_tmp.nro";

View file

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS
{
internal class IdDictionary
class IdDictionary
{
private ConcurrentDictionary<int, object> _objs;

View file

@ -2,7 +2,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Ipc
{
internal struct IpcBuffDesc
struct IpcBuffDesc
{
public long Position { get; private set; }
public long Size { get; private set; }

View file

@ -3,7 +3,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Ipc
{
internal class IpcHandleDesc
class IpcHandleDesc
{
public bool HasPId { get; private set; }

View file

@ -5,7 +5,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Ipc
{
internal static class IpcHandler
static class IpcHandler
{
public static long IpcCall(
Switch device,

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Ipc
{
internal abstract class IpcMagic
abstract class IpcMagic
{
public const long Sfci = 'S' << 0 | 'F' << 8 | 'C' << 16 | 'I' << 24;
public const long Sfco = 'S' << 0 | 'F' << 8 | 'C' << 16 | 'O' << 24;

View file

@ -3,7 +3,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Ipc
{
internal class IpcMessage
class IpcMessage
{
public IpcMessageType Type { get; set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Ipc
{
internal enum IpcMessageType
enum IpcMessageType
{
Response = 0,
CloseSession = 2,

View file

@ -2,7 +2,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Ipc
{
internal struct IpcPtrBuffDesc
struct IpcPtrBuffDesc
{
public long Position { get; private set; }
public int Index { get; private set; }

View file

@ -2,7 +2,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Ipc
{
internal struct IpcRecvListBuffDesc
struct IpcRecvListBuffDesc
{
public long Position { get; private set; }
public long Size { get; private set; }

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Ipc
{
internal delegate long ServiceProcessRequest(ServiceCtx context);
delegate long ServiceProcessRequest(ServiceCtx context);
}

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum AddressSpaceType
enum AddressSpaceType
{
Addr32Bits = 0,
Addr36Bits = 1,

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum ArbitrationType
enum ArbitrationType
{
WaitIfLessThan = 0,
DecrementAndWaitIfLessThan = 1,

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal static class DramMemoryMap
static class DramMemoryMap
{
public const ulong DramBase = 0x80000000;
public const ulong DramSize = 0x100000000;

View file

@ -3,7 +3,7 @@ using System.Threading;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class HleCoreManager
class HleCoreManager
{
private class PausableThread
{

View file

@ -10,7 +10,7 @@ using System.Threading;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class HleProcessDebugger
class HleProcessDebugger
{
private const int Mod0 = 'M' << 0 | 'O' << 8 | 'D' << 16 | '0' << 24;

View file

@ -3,7 +3,7 @@ using System.Threading;
namespace Ryujinx.HLE.HOS.Kernel
{
internal partial class KScheduler
partial class KScheduler
{
private const int RoundRobinTimeQuantumMs = 10;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal interface IKFutureSchedulerObject
interface IKFutureSchedulerObject
{
void TimeUp();
}

View file

@ -5,7 +5,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KAddressArbiter
class KAddressArbiter
{
private const int HasListenersMask = 0x40000000;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KAutoObject
class KAutoObject
{
protected Horizon System;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KClientPort : KSynchronizationObject
class KClientPort : KSynchronizationObject
{
private int _sessionsCount;
private int _currentCapacity;

View file

@ -3,7 +3,7 @@ using System.Threading;
namespace Ryujinx.HLE.HOS.Kernel
{
internal static class KConditionVariable
static class KConditionVariable
{
public static void Wait(Horizon system, LinkedList<KThread> threadList, object mutex, long timeout)
{

View file

@ -3,7 +3,7 @@ using System;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KContextIdManager
class KContextIdManager
{
private const int IdMasksCount = 8;

View file

@ -2,7 +2,7 @@ using Ryujinx.Common;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KCoreContext
class KCoreContext
{
private KScheduler _scheduler;

View file

@ -3,7 +3,7 @@ using System.Threading;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KCriticalSection
class KCriticalSection
{
private Horizon _system;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KEvent
class KEvent
{
public KReadableEvent ReadableEvent { get; private set; }
public KWritableEvent WritableEvent { get; private set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KHandleEntry
class KHandleEntry
{
public KHandleEntry Next { get; set; }

View file

@ -2,7 +2,7 @@ using System;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KHandleTable
class KHandleTable
{
private const int SelfThreadHandle = (0x1ffff << 15) | 0;
private const int SelfProcessHandle = (0x1ffff << 15) | 1;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KMemoryArrange
class KMemoryArrange
{
public KMemoryArrangeRegion Service { get; private set; }
public KMemoryArrangeRegion NvServices { get; private set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal struct KMemoryArrangeRegion
struct KMemoryArrangeRegion
{
public ulong Address { get; private set; }
public ulong Size { get; private set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KMemoryBlock
class KMemoryBlock
{
public ulong BaseAddress { get; set; }
public ulong PagesCount { get; set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KMemoryBlockAllocator
class KMemoryBlockAllocator
{
private ulong _capacityElements;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KMemoryInfo
class KMemoryInfo
{
public ulong Address { get; private set; }
public ulong Size { get; private set; }

View file

@ -5,7 +5,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KMemoryManager
class KMemoryManager
{
public const int PageSize = 0x1000;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KMemoryRegionBlock
class KMemoryRegionBlock
{
public long[][] Masks;

View file

@ -2,7 +2,7 @@ using Ryujinx.Common;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KMemoryRegionManager
class KMemoryRegionManager
{
private static readonly int[] BlockOrders = new int[] { 12, 16, 21, 22, 25, 29, 30 };

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KPageList : IEnumerable<KPageNode>
class KPageList : IEnumerable<KPageNode>
{
public LinkedList<KPageNode> Nodes { get; private set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal struct KPageNode
struct KPageNode
{
public ulong Address;
public ulong PagesCount;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KPort : KAutoObject
class KPort : KAutoObject
{
public KServerPort ServerPort { get; private set; }
public KClientPort ClientPort { get; private set; }

View file

@ -10,7 +10,7 @@ using System.Threading;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KProcess : KSynchronizationObject
class KProcess : KSynchronizationObject
{
public const int KernelVersionMajor = 10;
public const int KernelVersionMinor = 4;

View file

@ -2,7 +2,7 @@ using Ryujinx.Common;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KProcessCapabilities
class KProcessCapabilities
{
public byte[] SvcAccessMask { get; private set; }
public byte[] IrqAccessMask { get; private set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KReadableEvent : KSynchronizationObject
class KReadableEvent : KSynchronizationObject
{
private KEvent _parent;

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KResourceLimit
class KResourceLimit
{
private const int Time10SecondsMs = 10000;

View file

@ -4,7 +4,7 @@ using System.Linq;
namespace Ryujinx.HLE.HOS.Kernel
{
internal partial class KScheduler : IDisposable
partial class KScheduler : IDisposable
{
public const int PrioritiesCount = 64;
public const int CpuCoresCount = 4;

View file

@ -2,7 +2,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KSchedulingData
class KSchedulingData
{
private LinkedList<KThread>[][] _scheduledThreadsPerPrioPerCore;
private LinkedList<KThread>[][] _suggestedThreadsPerPrioPerCore;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KServerPort : KSynchronizationObject
class KServerPort : KSynchronizationObject
{
private KPort _parent;

View file

@ -3,7 +3,7 @@ using System;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KSession : IDisposable
class KSession : IDisposable
{
public IpcService Service { get; private set; }

View file

@ -2,7 +2,7 @@ using Ryujinx.Common;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KSharedMemory
class KSharedMemory
{
private KPageList _pageList;

View file

@ -2,7 +2,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KSlabHeap
class KSlabHeap
{
private LinkedList<ulong> _items;

View file

@ -4,7 +4,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KSynchronization
class KSynchronization
{
private Horizon _system;

View file

@ -2,7 +2,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KSynchronizationObject : KAutoObject
class KSynchronizationObject : KAutoObject
{
public LinkedList<KThread> WaitingThreads;

View file

@ -8,7 +8,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KThread : KSynchronizationObject, IKFutureSchedulerObject
class KThread : KSynchronizationObject, IKFutureSchedulerObject
{
public CpuThread Context { get; private set; }

View file

@ -6,7 +6,7 @@ using System.Threading;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KTimeManager : IDisposable
class KTimeManager : IDisposable
{
private class WaitingObject
{

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KTlsPageInfo
class KTlsPageInfo
{
public const int TlsEntrySize = 0x200;

View file

@ -2,7 +2,7 @@ using System;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KTlsPageManager
class KTlsPageManager
{
private const int TlsEntrySize = 0x200;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KTransferMemory
class KTransferMemory
{
public ulong Address { get; private set; }
public ulong Size { get; private set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal class KWritableEvent
class KWritableEvent
{
private KEvent _parent;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal static class KernelErr
static class KernelErr
{
public const int ThreadTerminating = 59;
public const int InvalidSize = 101;

View file

@ -2,7 +2,7 @@ using System;
namespace Ryujinx.HLE.HOS.Kernel
{
internal static class KernelInit
static class KernelInit
{
public static void InitializeResourceLimit(KResourceLimit resourceLimit)
{

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum KernelResult
enum KernelResult
{
Success = 0,
InvalidCapability = 0x1c01,

View file

@ -2,7 +2,7 @@ using ChocolArm64.Memory;
namespace Ryujinx.HLE.HOS.Kernel
{
internal static class KernelTransfer
static class KernelTransfer
{
public static bool UserToKernelInt32(Horizon system, long address, out int value)
{

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum LimitableResource : byte
enum LimitableResource : byte
{
Memory = 0,
Thread = 1,

View file

@ -3,7 +3,7 @@ using System;
namespace Ryujinx.HLE.HOS.Kernel
{
[Flags]
internal enum MemoryAttribute : byte
enum MemoryAttribute : byte
{
None = 0,
Mask = 0xff,

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum MemoryOperation
enum MemoryOperation
{
MapPa,
MapVa,

View file

@ -3,7 +3,7 @@ using System;
namespace Ryujinx.HLE.HOS.Kernel
{
[Flags]
internal enum MemoryPermission : byte
enum MemoryPermission : byte
{
None = 0,
Mask = 0xff,

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum MemoryRegion
enum MemoryRegion
{
Application = 0,
Applet = 1,

View file

@ -3,7 +3,7 @@ using System;
namespace Ryujinx.HLE.HOS.Kernel
{
[Flags]
internal enum MemoryState : uint
enum MemoryState : uint
{
Unmapped = 0x00000000,
Io = 0x00002001,

View file

@ -2,7 +2,7 @@ using Ryujinx.Common;
namespace Ryujinx.HLE.HOS.Kernel
{
internal class MersenneTwister
class MersenneTwister
{
private int _index;
private uint[] _mt;

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal struct ProcessCreationInfo
struct ProcessCreationInfo
{
public string Name { get; private set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum ProcessState : byte
enum ProcessState : byte
{
Created = 0,
CreatedAttached = 1,

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum SignalType
enum SignalType
{
Signal = 0,
SignalAndIncrementIfEqual = 1,

View file

@ -8,7 +8,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Kernel
{
internal partial class SvcHandler
partial class SvcHandler
{
private delegate void SvcFunc(CpuThreadState threadState);

View file

@ -5,7 +5,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Kernel
{
internal partial class SvcHandler
partial class SvcHandler
{
private void SvcSetHeapSize(CpuThreadState threadState)
{

View file

@ -12,7 +12,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Kernel
{
internal partial class SvcHandler
partial class SvcHandler
{
private void SvcExitProcess(CpuThreadState threadState)
{

View file

@ -5,7 +5,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Kernel
{
internal partial class SvcHandler
partial class SvcHandler
{
private void CreateThread64(CpuThreadState threadState)
{

View file

@ -6,7 +6,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Kernel
{
internal partial class SvcHandler
partial class SvcHandler
{
private void SvcWaitSynchronization(CpuThreadState threadState)
{

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum ThreadSchedState : ushort
enum ThreadSchedState : ushort
{
LowMask = 0xf,
HighMask = 0xfff0,

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Kernel
{
internal enum ThreadType
enum ThreadType
{
Dummy,
Kernel,

View file

@ -7,7 +7,7 @@ using Ryujinx.HLE.Loaders.Npdm;
namespace Ryujinx.HLE.HOS
{
internal class ProgramLoader
class ProgramLoader
{
private const bool AslrEnabled = true;

View file

@ -5,7 +5,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS
{
internal class ServiceCtx
class ServiceCtx
{
public Switch Device { get; private set; }
public KProcess Process { get; private set; }

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Acc
{
internal static class AccErr
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
{
internal class IAccountService : IpcService
class IAccountService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View file

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

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