SetProcessWorkingSetSizeFlags Enumeration

Specifies the enforcement of the minimum and maximum working set sizes.

For SetProcessWorkingSetSizeEx(IntPtr, IntPtr, IntPtr, SetProcessWorkingSetSizeFlags) function.

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum SetProcessWorkingSetSizeFlags

Remarks

Members

QuotaLimitsHardwsMinEnable 1 The working set will not fall below the minimum working set limit.

This flag cannot be used With QuotaLimitsHardwsMinDisable.

QuotaLimitsHardwsMinDisable 2 The working set may fall below the minimum working set limit if memory demands are high.

This flag cannot be used With QuotaLimitsHardwsMinEnable.

QuotaLimitsHardwsMaxEnable 4 The working set will not exceed the maximum working set limit.

This flag cannot be used With QuotaLimitsHardwsMaxDisable.

QuotaLimitsHardwsMaxDisable 8 The working set may exceed the maximum working set limit if there is abundant memory.

This flag cannot be used With QuotaLimitsHardwsMaxEnable.

See Also