This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,36 @@
using System;
using Cpp2IlInjected;
namespace System.Diagnostics
{
/// <summary>Indicates the priority that the system associates with a process. This value, together with the priority value of each thread of the process, determines each thread's base priority level.</summary>
// Token: 0x020000D4 RID: 212
[Token(Token = "0x20000D4")]
public enum ProcessPriorityClass
{
/// <summary>Specifies that the process has priority above <see langword="Normal" /> but below <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
// Token: 0x04000412 RID: 1042
[Token(Token = "0x4000412")]
AboveNormal = 32768,
/// <summary>Specifies that the process has priority above <see langword="Idle" /> but below <see langword="Normal" />.</summary>
// Token: 0x04000413 RID: 1043
[Token(Token = "0x4000413")]
BelowNormal = 16384,
/// <summary>Specifies that the process performs time-critical tasks that must be executed immediately, such as the <see langword="Task List" /> dialog, which must respond quickly when called by the user, regardless of the load on the operating system. The threads of the process preempt the threads of normal or idle priority class processes.</summary>
// Token: 0x04000414 RID: 1044
[Token(Token = "0x4000414")]
High = 128,
/// <summary>Specifies that the threads of this process run only when the system is idle, such as a screen saver. The threads of the process are preempted by the threads of any process running in a higher priority class.</summary>
// Token: 0x04000415 RID: 1045
[Token(Token = "0x4000415")]
Idle = 64,
/// <summary>Specifies that the process has no special scheduling needs.</summary>
// Token: 0x04000416 RID: 1046
[Token(Token = "0x4000416")]
Normal = 32,
/// <summary>Specifies that the process has the highest possible priority.</summary>
// Token: 0x04000417 RID: 1047
[Token(Token = "0x4000417")]
RealTime = 256
}
}