Skip to content

Commit 546ed75

Browse files
committed
fix firmware typos
1 parent 9ff28db commit 546ed75

File tree

5 files changed

+4674
-4644
lines changed

5 files changed

+4674
-4644
lines changed

SystemInformer/syssccpu.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1082,10 +1082,10 @@ VOID PhSipUpdateCpuPanel(
10821082
case PhVirtualStatusEnabledFirmware:
10831083
PhSetWindowText(CpuVirtualizationLabel, L"Enabled");
10841084
break;
1085-
case PhVirtualStatusDiabledWithHyperV:
1085+
case PhVirtualStatusDisabledWithHyperV:
10861086
PhSetWindowText(CpuVirtualizationLabel, L"Disabled / Hyper-V");
10871087
break;
1088-
case PhVirtualStatusDiabled:
1088+
case PhVirtualStatusDisabled:
10891089
PhSetWindowText(CpuVirtualizationLabel, L"Disabled");
10901090
break;
10911091
case PhVirtualStatusNotCapable:

kphlib/include/kphdyn.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#pragma once
1111

1212
#include <kphlibbase.h>
13-
#define KPH_DYN_CONFIGURATION_VERSION ((ULONG)15)
13+
#define KPH_DYN_CONFIGURATION_VERSION ((ULONG)16)
1414
#define KPH_DYN_SESSION_TOKEN_PUBLIC_KEY_LENGTH ((ULONG)539)
1515
#define KPH_DYN_CLASS_NTOSKRNL ((USHORT)0)
1616
#define KPH_DYN_CLASS_NTKRLA57 ((USHORT)1)
@@ -41,6 +41,10 @@ typedef struct _KPH_DYN_KERNEL_FIELDS
4141
USHORT AlpcPortObjectLock; // dt nt!_ALPC_PORT PortObjectLock
4242
USHORT AlpcSequenceNo; // dt nt!_ALPC_PORT SequenceNo
4343
USHORT AlpcState; // dt nt!_ALPC_PORT u1.State
44+
USHORT KtInitialStack; // dt nt!_KTHREAD InitialStack
45+
USHORT KtStackLimit; // dt nt!_KTHREAD StackLimit
46+
USHORT KtStackBase; // dt nt!_KTHREAD StackBase
47+
USHORT KtKernelStack; // dt nt!_KTHREAD KernelStack
4448
USHORT KtReadOperationCount; // dt nt!_KTHREAD ReadOperationCount
4549
USHORT KtWriteOperationCount; // dt nt!_KTHREAD WriteOperationCount
4650
USHORT KtOtherOperationCount; // dt nt!_KTHREAD OtherOperationCount

0 commit comments

Comments
 (0)