Project: Add SDK

This commit is contained in:
Gustave Monce
2021-08-14 11:24:02 +02:00
parent 452393aaa7
commit 846ea41883
42 changed files with 3214 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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;
}
}