Added InfoType_IsApplication.

This commit is contained in:
yellows8 2019-11-18 22:30:19 -05:00
parent 170942a781
commit bcac85852a
No known key found for this signature in database
GPG Key ID: 0AF90DA3F1E60E43

View File

@ -169,6 +169,7 @@ typedef enum {
InfoType_UserExceptionContextAddress = 20, ///< [5.0.0+] Address of the process's exception context (for break). 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_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_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_ThreadTickCount = 0xF0000002, ///< Number of ticks spent on thread.
} InfoType; } InfoType;