Partially revert last changes
All checks were successful
ci/woodpecker/push/build Pipeline was successful
All checks were successful
ci/woodpecker/push/build Pipeline was successful
This commit is contained in:
parent
bac7af8a33
commit
025e05013d
@ -241,7 +241,7 @@ typedef struct _KSWITCH_FRAME
|
||||
ULONG64 P4Home;
|
||||
ULONG64 P5Home;
|
||||
ULONG MxCsr;
|
||||
UCHAR ApcBypass;
|
||||
KIRQL ApcBypass;
|
||||
UCHAR Fill1[3];
|
||||
ULONG64 Rbp;
|
||||
ULONG64 Return;
|
||||
@ -255,8 +255,8 @@ typedef struct _KTRAP_FRAME
|
||||
ULONG64 P3Home;
|
||||
ULONG64 P4Home;
|
||||
ULONG64 P5;
|
||||
CHAR PreviousMode;
|
||||
UCHAR PreviousIrql;
|
||||
KPROCESSOR_MODE PreviousMode;
|
||||
KIRQL PreviousIrql;
|
||||
UCHAR FaultIndicator;
|
||||
UCHAR ExceptionActive;
|
||||
ULONG MxCsr;
|
||||
|
@ -14,6 +14,12 @@
|
||||
#include <xttypes.h>
|
||||
|
||||
|
||||
/* Interrupt Request Level (IRQL) */
|
||||
typedef UCHAR KIRQL, *PKIRQL;
|
||||
|
||||
/* Processor modes */
|
||||
typedef CHAR KPROCESSOR_MODE, *PKPROCESSOR_MODE;
|
||||
|
||||
/* 128-bit buffer containing a unique identifier value */
|
||||
typedef struct _GUID
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user