- Add structure for describing boot-loaded drivers

svn path=/trunk/; revision=24432
This commit is contained in:
Aleksey Bragin 2006-10-07 13:07:25 +00:00
parent b53f179583
commit a40bc5ff5f

View file

@ -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;