2004-05-07 04:36:44 +04:00
|
|
|
/*
|
2008-05-26 20:52:27 +04:00
|
|
|
* Copyright 2004-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
2005-01-12 02:23:20 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2004-05-07 04:36:44 +04:00
|
|
|
#ifndef _KERNEL_DEVICE_MANAGER_H
|
|
|
|
#define _KERNEL_DEVICE_MANAGER_H
|
|
|
|
|
|
|
|
|
2004-09-04 21:19:41 +04:00
|
|
|
#include <device_manager.h>
|
|
|
|
|
|
|
|
struct kernel_args;
|
2004-05-07 04:36:44 +04:00
|
|
|
|
2008-05-26 20:52:27 +04:00
|
|
|
|
2004-05-08 22:35:30 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-05-07 04:36:44 +04:00
|
|
|
|
2008-05-26 20:52:27 +04:00
|
|
|
void legacy_driver_add_preloaded(struct kernel_args *args);
|
2006-11-12 18:28:09 +03:00
|
|
|
|
2008-05-26 20:52:27 +04:00
|
|
|
status_t device_manager_probe(const char *path, uint32 updateCycle);
|
|
|
|
status_t device_manager_init(struct kernel_args *args);
|
|
|
|
status_t device_manager_init_post_modules(struct kernel_args *args);
|
2006-11-12 18:28:09 +03:00
|
|
|
|
2004-05-08 22:35:30 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-05-26 20:52:27 +04:00
|
|
|
#endif /* _KERNEL_DEVICE_MANAGER_H */
|