diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs b/Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs index 64bb6745..4b712a38 100644 --- a/Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs +++ b/Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs @@ -1,23 +1,12 @@ -using Ryujinx.HLE.HOS.Ipc; -using System.Collections.Generic; - namespace Ryujinx.HLE.HOS.Services.Am { [Service("appletAE")] class IAllSystemAppletProxiesService : IpcService { - private Dictionary<int, ServiceProcessRequest> _commands; - - public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - - public IAllSystemAppletProxiesService(ServiceCtx context) - { - _commands = new Dictionary<int, ServiceProcessRequest> - { - { 100, OpenSystemAppletProxy } - }; - } + public IAllSystemAppletProxiesService(ServiceCtx context) { } + [Command(100)] + // OpenSystemAppletProxy(u64, pid, handle<copy>) -> object<nn::am::service::ISystemAppletProxy> public long OpenSystemAppletProxy(ServiceCtx context) { MakeObject(context, new ISystemAppletProxy()); |
