Partially revert last changes
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2023-01-10 22:51:38 +01:00
parent bac7af8a33
commit 025e05013d
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 9 additions and 3 deletions

View File

@ -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;

View File

@ -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
{