0d4ea07bd7
The driver settings are put into the kernel_args memory section and copied on kernel startup. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10635 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
487 B
C
26 lines
487 B
C
/*
|
|
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_DRIVER_SETTINGS_H
|
|
#define _KERNEL_DRIVER_SETTINGS_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
struct kernel_args;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
status_t driver_settings_init(struct kernel_args *args);
|
|
status_t driver_settings_init_post_sem(struct kernel_args *args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KRENEL_DRIVER_SETTINGS_H */
|