xref: /haiku/headers/private/kernel/kdriver_settings.h (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
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 status_t driver_settings_init_post_sem(struct kernel_args *args);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif	/* _KRENEL_DRIVER_SETTINGS_H */
26