From d28687631b4d03b51d40f423b79fe99cd185a674 Mon Sep 17 00:00:00 2001 From: belliash Date: Wed, 15 Feb 2023 20:08:19 +0100 Subject: [PATCH] Add thread stack information to the structure --- sdk/xtdk/ketypes.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdk/xtdk/ketypes.h b/sdk/xtdk/ketypes.h index 3158cd5..0920a87 100644 --- a/sdk/xtdk/ketypes.h +++ b/sdk/xtdk/ketypes.h @@ -72,6 +72,10 @@ typedef struct _KPROCESS /* Thread control block structure definition */ typedef struct _KTHREAD { + PVOID InitialStack; + PVOID KernelStack; + PVOID StackBase; + PVOID StackLimit; KAPC_STATE ApcState; } KTHREAD, *PKTHREAD;