diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs b/Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs index 69e221eb..61fb0f31 100644 --- a/Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs +++ b/Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs @@ -1,23 +1,11 @@ -using Ryujinx.HLE.HOS.Ipc; -using System.Collections.Generic; - -namespace Ryujinx.HLE.HOS.Services.Pm +namespace Ryujinx.HLE.HOS.Services.Pm { [Service("pm:shell")] class IShellInterface : IpcService { - private Dictionary<int, ServiceProcessRequest> _commands; - - public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - - public IShellInterface(ServiceCtx context) - { - _commands = new Dictionary<int, ServiceProcessRequest> - { - { 6, GetApplicationPid } - }; - } + public IShellInterface(ServiceCtx context) { } + [Command(6)] // GetApplicationPid() -> u64 public long GetApplicationPid(ServiceCtx context) { |
