2005-01-10 10:36:08 +03:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
|
|
|
|
2012-06-21 21:02:23 +04:00
|
|
|
#include <util/FixedWidthPointer.h>
|
2005-01-10 10:36:08 +03:00
|
|
|
#include <util/list.h>
|
|
|
|
|
|
|
|
|
|
|
|
struct driver_settings_file {
|
2012-06-21 21:02:23 +04:00
|
|
|
FixedWidthPointer<struct driver_settings_file> next;
|
2005-01-10 10:36:08 +03:00
|
|
|
char name[B_OS_NAME_LENGTH];
|
|
|
|
char *buffer;
|
|
|
|
size_t size;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* KERNEL_BOOT_DRIVER_SETTINGS_H */
|