Added appletIsForceTerminateApplicationDisabledForDebug. Updated docs.

This commit is contained in:
yellows8 2019-11-14 11:34:41 -05:00
parent c0115edca1
commit dda6194d0b
No known key found for this signature in database
GPG Key ID: 0AF90DA3F1E60E43
2 changed files with 10 additions and 1 deletions

View File

@ -1564,6 +1564,13 @@ Result appletGetHomeButtonWriterLockAccessor(AppletLockAccessor *a);
*/ */
Result appletPopRequestLaunchApplicationForDebug(AccountUid *uids, s32 count, u64 *application_id, s32 *total_out); Result appletPopRequestLaunchApplicationForDebug(AccountUid *uids, s32 count, u64 *application_id, s32 *total_out);
/**
* @brief IsForceTerminateApplicationDisabledForDebug
* @note Only available with AppletType_SystemApplet on [9.0.0+].
* @param[out] out Output flag. 0 when DebugMode is not enabled, otherwise this is loaded from a system-setting.
*/
Result appletIsForceTerminateApplicationDisabledForDebug(bool *out);
/** /**
* @brief Launches DevMenu and the dev Overlay-applet. This will enter an infinite-sleep-loop on success. * @brief Launches DevMenu and the dev Overlay-applet. This will enter an infinite-sleep-loop on success.
* @note Only available with AppletType_SystemApplet on [8.0.0+]. * @note Only available with AppletType_SystemApplet on [8.0.0+].
@ -2135,7 +2142,7 @@ Result appletStartRebootSequenceForOverlay(void);
Result appletSetHandlingHomeButtonShortPressedEnabled(bool flag); Result appletSetHandlingHomeButtonShortPressedEnabled(bool flag);
/** /**
* @brief This writes the input bool into state and signals an Event. * @brief SetHealthWarningShowingState
* @note Only available with AppletType_OverlayApplet on [9.0.0+]. * @note Only available with AppletType_OverlayApplet on [9.0.0+].
* @param[in] flag Flag * @param[in] flag Flag
*/ */

View File

@ -2265,6 +2265,8 @@ Result appletPopRequestLaunchApplicationForDebug(AccountUid *uids, s32 count, u6
return rc; return rc;
} }
IPC_MAKE_CMD_IMPL_INITEXPR_HOSVER(Result appletIsForceTerminateApplicationDisabledForDebug(bool *out), &g_appletIFunctions, 110, _appletCmdNoInOutBool, __nx_applet_type != AppletType_SystemApplet, (9,0,0), out)
Result appletLaunchDevMenu(void) { Result appletLaunchDevMenu(void) {
Result rc=0; Result rc=0;