/* * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. * Distributed under the terms of the MIT License. */ #ifndef KERNEL_BOOT_DRIVER_SETTINGS_H #define KERNEL_BOOT_DRIVER_SETTINGS_H #include #include struct driver_settings_file { FixedWidthPointer next; char name[B_OS_NAME_LENGTH]; char *buffer; size_t size; }; #endif /* KERNEL_BOOT_DRIVER_SETTINGS_H */