1 /* 2 * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef KERNEL_BOOT_DRIVER_SETTINGS_H 6 #define KERNEL_BOOT_DRIVER_SETTINGS_H 7 8 9 #include <util/FixedWidthPointer.h> 10 #include <util/list.h> 11 12 13 struct driver_settings_file { 14 FixedWidthPointer<struct driver_settings_file> next; 15 char name[B_OS_NAME_LENGTH]; 16 FixedWidthPointer<char> buffer; 17 uint32 size; 18 } _PACKED; 19 20 #endif /* KERNEL_BOOT_DRIVER_SETTINGS_H */ 21