mirror of
https://github.com/reactos/reactos.git
synced 2026-06-08 00:46:10 +08:00
[SDK:XDK] extypes.h: Update WORK_QUEUE_TYPE with Win8+ values (#8651)
This commit is contained in:
@@ -185,11 +185,20 @@ typedef struct _EX_RUNDOWN_REF {
|
||||
|
||||
typedef struct _EX_RUNDOWN_REF_CACHE_AWARE *PEX_RUNDOWN_REF_CACHE_AWARE;
|
||||
|
||||
typedef enum _WORK_QUEUE_TYPE {
|
||||
typedef _Enum_is_bitflag_ enum _WORK_QUEUE_TYPE {
|
||||
CriticalWorkQueue,
|
||||
DelayedWorkQueue,
|
||||
HyperCriticalWorkQueue,
|
||||
MaximumWorkQueue
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN8)
|
||||
NormalWorkQueue,
|
||||
BackgroundWorkQueue,
|
||||
RealTimeWorkQueue,
|
||||
SuperCriticalWorkQueue,
|
||||
#endif
|
||||
MaximumWorkQueue,
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN8)
|
||||
CustomPriorityWorkQueue = 32
|
||||
#endif
|
||||
} WORK_QUEUE_TYPE;
|
||||
|
||||
_IRQL_requires_same_
|
||||
|
||||
Reference in New Issue
Block a user