aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2019-06-17 01:08:32 +0200
committerThomas Guillemard <me@thog.eu>2019-06-17 01:08:32 +0200
commit70bfc01e5feb3d951043313c255b5e992518711c (patch)
treed9b62a8d341bde593915d7923eaaea6fd7488d25 /Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs
parent2cd5d2d18473339328a878ee12e8d56230863c43 (diff)
friends: Implementation of IServiceCreator (#704)
- Add INotificationService (close #621) - Add IDaemonSuspendSessionService
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs b/Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs
new file mode 100644
index 00000000..d0edf29e
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs
@@ -0,0 +1,20 @@
+using Ryujinx.HLE.HOS.Ipc;
+using System.Collections.Generic;
+
+namespace Ryujinx.HLE.HOS.Services.Friend
+{
+ class IDaemonSuspendSessionService : IpcService
+ {
+ private Dictionary<int, ServiceProcessRequest> _commands;
+
+ public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
+
+ public IDaemonSuspendSessionService()
+ {
+ _commands = new Dictionary<int, ServiceProcessRequest>
+ {
+ //...
+ };
+ }
+ }
+} \ No newline at end of file