aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs b/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs
deleted file mode 100644
index 6acd18cd..00000000
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using Ryujinx.Common;
-
-namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.LibraryAppletProxy
-{
- class IProcessWindingController : IpcService
- {
- public IProcessWindingController() { }
-
- [CommandCmif(0)]
- // GetLaunchReason() -> nn::am::service::AppletProcessLaunchReason
- public ResultCode GetLaunchReason(ServiceCtx context)
- {
- // NOTE: Flag is set by using an internal field.
- AppletProcessLaunchReason appletProcessLaunchReason = new AppletProcessLaunchReason()
- {
- Flag = 0
- };
-
- context.ResponseData.WriteStruct(appletProcessLaunchReason);
-
- return ResultCode.Success;
- }
- }
-} \ No newline at end of file