From a322436b6dd1092b8fc49084019ec099b89c2e8c Mon Sep 17 00:00:00 2001 From: Luke Warner <65521430+LukeWarnut@users.noreply.github.com> Date: Wed, 13 Nov 2024 14:43:14 -0500 Subject: [PATCH 1/2] Update IAllSystemAppletProxiesService.cs --- .../Am/AppletAE/IAllSystemAppletProxiesService.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs index 0a032562a..b29ae6bb6 100644 --- a/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs +++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs @@ -1,4 +1,5 @@ using Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService; +using Ryujinx.HLE.HOS.Services.Am.AppletOE.ApplicationProxyService; namespace Ryujinx.HLE.HOS.Services.Am.AppletAE { @@ -25,5 +26,13 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE return ResultCode.Success; } + + [CommandCmif(350)] + public ResultCode OpenSystemApplicationProxy(ServiceCtx context) + { + MakeObject(context, new IApplicationProxy(context.Request.HandleDesc.PId)); + + return ResultCode.Success; + } } } -- 2.47.1 From 241cf7687e6ddc98f43441bec2637bef6c12d55a Mon Sep 17 00:00:00 2001 From: Luke Warner <65521430+LukeWarnut@users.noreply.github.com> Date: Wed, 13 Nov 2024 14:44:34 -0500 Subject: [PATCH 2/2] add comment --- .../HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs index b29ae6bb6..b8741b22b 100644 --- a/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs +++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs @@ -28,6 +28,7 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE } [CommandCmif(350)] + // OpenSystemApplicationProxy(u64, pid, handle) -> object public ResultCode OpenSystemApplicationProxy(ServiceCtx context) { MakeObject(context, new IApplicationProxy(context.Request.HandleDesc.PId)); -- 2.47.1