From bcac85852abc98f066bb16e79a04f6f31598257c Mon Sep 17 00:00:00 2001 From: yellows8 Date: Mon, 18 Nov 2019 22:30:19 -0500 Subject: [PATCH] Added InfoType_IsApplication. --- nx/include/switch/kernel/svc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/nx/include/switch/kernel/svc.h b/nx/include/switch/kernel/svc.h index d723fa0a..d04605df 100644 --- a/nx/include/switch/kernel/svc.h +++ b/nx/include/switch/kernel/svc.h @@ -169,6 +169,7 @@ typedef enum { InfoType_UserExceptionContextAddress = 20, ///< [5.0.0+] Address of the process's exception context (for break). InfoType_TotalNonSystemMemorySize = 21, ///< [6.0.0+] Total amount of memory available for process, excluding that for process memory management. InfoType_UsedNonSystemMemorySize = 22, ///< [6.0.0+] Amount of memory used by process, excluding that for process memory management. + InfoType_IsApplication = 23, ///< [9.0.0+] Whether the specified process is an Application. InfoType_ThreadTickCount = 0xF0000002, ///< Number of ticks spent on thread. } InfoType;