mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-02 03:02:25 -07:00
Explicitly label class visibility
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Vi
|
||||
{
|
||||
class Display
|
||||
internal class Display
|
||||
{
|
||||
public string Name { get; private set; }
|
||||
|
||||
|
@@ -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; }
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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);
|
||||
|
||||
|
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user