Implement ICommonStateGetter::SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled

This commit is contained in:
Billy Laws 2022-04-09 12:29:39 +01:00 committed by PixelyIon
parent 9813f9f8dc
commit fe37d7c9be
2 changed files with 11 additions and 1 deletions

View File

@ -98,4 +98,8 @@ namespace skyline::service::am {
}
return {};
}
Result ICommonStateGetter::SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
return {};
}
}

View File

@ -123,6 +123,11 @@ namespace skyline::service::am {
*/
Result SetCpuBoostMode(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
/**
* @url https://switchbrew.org/wiki/Applet_Manager_services#SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled
*/
Result SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
SERVICE_DECL(
SFUNC(0x0, ICommonStateGetter, GetEventHandle),
SFUNC(0x1, ICommonStateGetter, ReceiveMessage),
@ -132,7 +137,8 @@ namespace skyline::service::am {
SFUNC(0x32, ICommonStateGetter, IsVrModeEnabled),
SFUNC(0x3C, ICommonStateGetter, GetDefaultDisplayResolution),
SFUNC(0x3D, ICommonStateGetter, GetDefaultDisplayResolutionChangeEvent),
SFUNC(0x42, ICommonStateGetter, SetCpuBoostMode)
SFUNC(0x42, ICommonStateGetter, SetCpuBoostMode),
SFUNC(0x384, ICommonStateGetter, SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled)
)
};
}