mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
20 lines
384 B
C#
20 lines
384 B
C#
using System;
|
|
|
|
namespace WPinternalsSDK
|
|
{
|
|
internal struct QUOTA_LIMITS
|
|
{
|
|
private readonly uint PagedPoolLimit;
|
|
|
|
private readonly uint NonPagedPoolLimit;
|
|
|
|
private readonly uint MinimumWorkingSetSize;
|
|
|
|
private readonly uint MaximumWorkingSetSize;
|
|
|
|
private readonly uint PagefileLimit;
|
|
|
|
private readonly long TimeLimit;
|
|
}
|
|
}
|