From a40bc5ff5ffc62a8393d8ad289431c854d9ccab7 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sat, 7 Oct 2006 13:07:25 +0000 Subject: [PATCH] - Add structure for describing boot-loaded drivers svn path=/trunk/; revision=24432 --- reactos/include/reactos/arc/arc.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/reactos/include/reactos/arc/arc.h b/reactos/include/reactos/arc/arc.h index 1ebad32003b..f91bde3dddb 100644 --- a/reactos/include/reactos/arc/arc.h +++ b/reactos/include/reactos/arc/arc.h @@ -65,6 +65,14 @@ typedef struct _MEMORY_ALLOCATION_DESCRIPTOR ULONG PageCount; } MEMORY_ALLOCATION_DESCRIPTOR, *PMEMORY_ALLOCATION_DESCRIPTOR; +typedef struct _BOOT_DRIVER_LIST_ENTRY +{ + LIST_ENTRY ListEntry; + UNICODE_STRING FilePath; + UNICODE_STRING RegistryPath; + struct _LDR_DATA_TABLE_ENTRY *DataTableEntry; +} BOOT_DRIVER_LIST_ENTRY, *PBOOT_DRIVER_LIST_ENTRY; + typedef struct _CONFIGURATION_COMPONENT { CONFIGURATION_CLASS Class;