a79b39b913
* no name: Mii Editor applet support * addresses gdkchan feedback * Fix comment * Bypass MountCounter of MiiDatabaseManager * Fix GetSettingsPlatformRegion * Disable Applet Menu for unsupported firmwares
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() { }
|
|
|
|
[CommandHipc(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;
|
|
}
|
|
}
|
|
} |