Author: fireball
Date: Sat Oct 7 17:07:25 2006
New Revision: 24432
URL:
http://svn.reactos.org/svn/reactos?rev=24432&view=rev
Log:
- Add structure for describing boot-loaded drivers
Modified:
trunk/reactos/include/reactos/arc/arc.h
Modified: trunk/reactos/include/reactos/arc/arc.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/arc/arc.h?…
==============================================================================
--- trunk/reactos/include/reactos/arc/arc.h (original)
+++ trunk/reactos/include/reactos/arc/arc.h Sat Oct 7 17:07:25 2006
@@ -65,6 +65,14 @@
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;