From 3125a25617a0e9013386a5a40f55bfa50f1b5a56 Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 15 Nov 2022 19:54:02 +0100 Subject: [PATCH] Add three most important linked lists into the kernel initialization block --- sdk/xtdk/xtfw.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdk/xtdk/xtfw.h b/sdk/xtdk/xtfw.h index 532eedb..131e827 100644 --- a/sdk/xtdk/xtfw.h +++ b/sdk/xtdk/xtfw.h @@ -92,6 +92,9 @@ typedef struct _LOADER_INFORMATION_BLOCK /* Loader provided information needed by the kernel to initialize */ typedef struct _KERNEL_INITIALIZATION_BLOCK { + LIST_ENTRY LoadOrderListHead; + LIST_ENTRY MemoryDescriptorListHead; + LIST_ENTRY BootDriverListHead; ULONG Size; ULONG Version; ULONG_PTR KernelStack;