xref: /haiku/headers/private/kernel/boot/driver_settings.h (revision 922e7ba1f3228e6f28db69b0ded8f86eb32dea17)
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/list.h>
10 
11 
12 struct driver_settings_file {
13 	struct driver_settings_file *next;
14 	char	name[B_OS_NAME_LENGTH];
15 	char	*buffer;
16 	size_t	size;
17 };
18 
19 #endif	/* KERNEL_BOOT_DRIVER_SETTINGS_H */
20