diff options
| author | Ac_K <Acoustik666@gmail.com> | 2019-06-17 01:08:32 +0200 |
|---|---|---|
| committer | Thomas Guillemard <me@thog.eu> | 2019-06-17 01:08:32 +0200 |
| commit | 70bfc01e5feb3d951043313c255b5e992518711c (patch) | |
| tree | d9b62a8d341bde593915d7923eaaea6fd7488d25 /Ryujinx.HLE/HOS/Services/Friend/IDaemonSuspendSessionService.cs | |
| parent | 2cd5d2d18473339328a878ee12e8d56230863c43 (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.cs | 20 |
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 |
