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.Vi
{
class Display
internal class Display
{
public string Name { get; private set; }

View File

@@ -2,7 +2,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Services.Android
{
struct GbpBuffer
internal struct GbpBuffer
{
public int Magic { get; private set; }
public int Width { get; private set; }

View File

@@ -10,7 +10,7 @@ using static Ryujinx.HLE.HOS.Services.Android.Parcel;
namespace Ryujinx.HLE.HOS.Services.Vi
{
class IApplicationDisplayService : IpcService
internal class IApplicationDisplayService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -14,7 +14,7 @@ using static Ryujinx.HLE.HOS.Services.Android.Parcel;
namespace Ryujinx.HLE.HOS.Services.Android
{
class NvFlinger : IDisposable
internal class NvFlinger : IDisposable
{
private delegate long ServiceProcessParcel(ServiceCtx context, BinaryReader parcelReader);

View File

@@ -3,7 +3,7 @@ using System.IO;
namespace Ryujinx.HLE.HOS.Services.Android
{
static class Parcel
internal static class Parcel
{
public static byte[] GetParcelData(byte[] parcel)
{