xref: /haiku/headers/private/kernel/kdriver_settings.h (revision fce4895d1884da5ae6fb299d23c735c598e690b1)
1 /*
2  * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _KERNEL_DRIVER_SETTINGS_H
6 #define _KERNEL_DRIVER_SETTINGS_H
7 
8 
9 #include <SupportDefs.h>
10 
11 struct kernel_args;
12 
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 status_t driver_settings_init(struct kernel_args *args);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif	/* _KRENEL_DRIVER_SETTINGS_H */
25