2004-05-07 00:36:44 +00:00
|
|
|
/*
|
|
|
|
** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_DEVICE_MANAGER_H
|
|
|
|
#define _KERNEL_DEVICE_MANAGER_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
2004-05-08 18:35:30 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-05-07 00:36:44 +00:00
|
|
|
|
|
|
|
extern status_t device_manager_init(struct kernel_args *args);
|
|
|
|
|
2004-05-08 18:35:30 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-05-07 00:36:44 +00:00
|
|
|
#endif /* _KRENEL_DEVICE_MANAGER_H */
|