Skip to content

Commit b40b77b

Browse files
committed
Added Frozen property.
1 parent c02ed8b commit b40b77b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

NtApiDotNet/NtProcess.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2544,7 +2544,6 @@ public int HardErrorMode
25442544
set => Set(ProcessInformationClass.ProcessDefaultHardErrorMode, value);
25452545
}
25462546

2547-
25482547
/// <summary>
25492548
/// Does the process has a child process restriction?
25502549
/// </summary>
@@ -2592,6 +2591,11 @@ public bool IsChildProcessRestricted
25922591
/// </summary>
25932592
public bool Subsystem => ExtendedFlags.HasFlagSet(ProcessExtendedBasicInformationFlags.IsSubsystemProcess);
25942593

2594+
/// <summary>
2595+
/// Gets whether the process is frozen.
2596+
/// </summary>
2597+
public bool Frozen => ExtendedFlags.HasFlagSet(ProcessExtendedBasicInformationFlags.IsFrozen);
2598+
25952599
/// <summary>
25962600
/// Get process protection information.
25972601
/// </summary>

0 commit comments

Comments
 (0)