diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs b/Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs index 0de74d78..0156e0b7 100644 --- a/Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs +++ b/Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs @@ -1,27 +1,11 @@ -using Ryujinx.HLE.HOS.Ipc; -using System.Collections.Generic; - namespace Ryujinx.HLE.HOS.Services.Friend { class IDaemonSuspendSessionService : IpcService { - private Dictionary<int, ServiceProcessRequest> _commands; - private FriendServicePermissionLevel PermissionLevel; - public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - public IDaemonSuspendSessionService(FriendServicePermissionLevel permissionLevel) { - _commands = new Dictionary<int, ServiceProcessRequest> - { - //{ 0, Unknown0 }, // 4.0.0+ - //{ 1, Unknown1 }, // 4.0.0+ - //{ 2, Unknown2 }, // 4.0.0+ - //{ 3, Unknown3 }, // 4.0.0+ - //{ 4, Unknown4 }, // 4.0.0+ - }; - PermissionLevel = permissionLevel; } } |
