@@ -228,6 +228,12 @@ typedef enum _PROCESSINFOCLASS
228
228
ProcessCreateStateChange , // since WIN11
229
229
ProcessApplyStateChange ,
230
230
ProcessEnableOptionalXStateFeatures ,
231
+ ProcessAltPrefetchParam , // since 11H1
232
+ ProcessAssignCpuPartitions ,
233
+ ProcessPriorityClassEx ,
234
+ ProcessMembershipInformation ,
235
+ ProcessEffectiveIoPriority ,
236
+ ProcessEffectivePagePriority ,
231
237
MaxProcessInfoClass
232
238
} PROCESSINFOCLASS ;
233
239
#endif
@@ -288,6 +294,9 @@ typedef enum _THREADINFOCLASS
288
294
ThreadWorkloadClass , // THREAD_WORKLOAD_CLASS // since REDSTONE5 // 50
289
295
ThreadCreateStateChange , // since WIN11
290
296
ThreadApplyStateChange ,
297
+ ThreadStrongerBadHandleChecks , // since 11H1
298
+ ThreadEffectiveIoPriority ,
299
+ ThreadEffectivePagePriority ,
291
300
MaxThreadInfoClass
292
301
} THREADINFOCLASS ;
293
302
#endif
@@ -1210,7 +1219,7 @@ NtCreateProcessEx(
1210
1219
_In_opt_ HANDLE SectionHandle ,
1211
1220
_In_opt_ HANDLE DebugPort ,
1212
1221
_In_opt_ HANDLE ExceptionPort ,
1213
- _In_ ULONG JobMemberLevel
1222
+ _Reserved_ ULONG Reserved // JobMemberLevel
1214
1223
);
1215
1224
1216
1225
NTSYSCALLAPI
@@ -1642,6 +1651,9 @@ typedef enum _PS_ATTRIBUTE_NUM
1642
1651
PsAttributeDesktopAppPolicy , // in ULONG
1643
1652
PsAttributeChpe , // since REDSTONE3
1644
1653
PsAttributeMitigationAuditOptions , // since 21H1
1654
+ PsAttributeMachineType , // since WIN11
1655
+ PsAttributeComponentFilter ,
1656
+ PsAttributeEnableOptionalXStateFeatures ,
1645
1657
PsAttributeMax
1646
1658
} PS_ATTRIBUTE_NUM ;
1647
1659
@@ -1808,7 +1820,8 @@ typedef enum _PS_MITIGATION_OPTION
1808
1820
PS_MITIGATION_OPTION_CET_USER_SHADOW_STACKS ,
1809
1821
PS_MITIGATION_OPTION_USER_CET_SET_CONTEXT_IP_VALIDATION , // since 21H1
1810
1822
PS_MITIGATION_OPTION_BLOCK_NON_CET_BINARIES ,
1811
- PS_MITIGATION_OPTION_CET_DYNAMIC_APIS_OUT_OF_PROC_ONLY
1823
+ PS_MITIGATION_OPTION_CET_DYNAMIC_APIS_OUT_OF_PROC_ONLY ,
1824
+ PS_MITIGATION_OPTION_REDIRECTION_TRUST , // since 11H1
1812
1825
} PS_MITIGATION_OPTION ;
1813
1826
1814
1827
// windows-internals-book:"Chapter 5"
@@ -2019,7 +2032,9 @@ NtCreateThreadEx(
2019
2032
#define JobObjectSiloSystemRoot 45
2020
2033
#define JobObjectEnergyTrackingState 46 // JOBOBJECT_ENERGY_TRACKING_STATE
2021
2034
#define JobObjectThreadImpersonationInformation 47
2022
- #define MaxJobObjectInfoClass 48
2035
+ #define JobObjectIoPriorityLimit 48
2036
+ #define JobObjectPagePriorityLimit 49
2037
+ #define MaxJobObjectInfoClass 50
2023
2038
2024
2039
// private
2025
2040
typedef struct _JOBOBJECT_EXTENDED_ACCOUNTING_INFORMATION
0 commit comments