mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-18 16:16:40 +00:00
24 lines
No EOL
743 B
C#
24 lines
No EOL
743 B
C#
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;
|
|
}
|
|
}
|
|
} |