mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
Added appletIsForceTerminateApplicationDisabledForDebug. Updated docs.
This commit is contained in:
parent
c0115edca1
commit
dda6194d0b
@ -1564,6 +1564,13 @@ Result appletGetHomeButtonWriterLockAccessor(AppletLockAccessor *a);
|
||||
*/
|
||||
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.
|
||||
* @note Only available with AppletType_SystemApplet on [8.0.0+].
|
||||
@ -2135,7 +2142,7 @@ Result appletStartRebootSequenceForOverlay(void);
|
||||
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+].
|
||||
* @param[in] flag Flag
|
||||
*/
|
||||
|
@ -2265,6 +2265,8 @@ Result appletPopRequestLaunchApplicationForDebug(AccountUid *uids, s32 count, u6
|
||||
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 rc=0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user