IAllSystemAppletProxiesService.cs 632 B

12345678910111213141516171819
  1. using Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService;
  2. namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
  3. {
  4. [Service("appletAE")]
  5. class IAllSystemAppletProxiesService : IpcService
  6. {
  7. public IAllSystemAppletProxiesService(ServiceCtx context) { }
  8. [Command(100)]
  9. // OpenSystemAppletProxy(u64, pid, handle<copy>) -> object<nn::am::service::ISystemAppletProxy>
  10. public ResultCode OpenSystemAppletProxy(ServiceCtx context)
  11. {
  12. MakeObject(context, new ISystemAppletProxy(context.Request.HandleDesc.PId));
  13. return ResultCode.Success;
  14. }
  15. }
  16. }