2002-07-09 16:24:59 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_DEV_H
|
|
|
|
#define _KERNEL_DEV_H
|
|
|
|
|
2003-01-12 19:23:21 +03:00
|
|
|
#include <image.h>
|
2003-05-03 20:03:26 +04:00
|
|
|
|
|
|
|
struct kernel_args;
|
2002-07-09 16:24:59 +04:00
|
|
|
|
|
|
|
int dev_init(kernel_args *ka);
|
|
|
|
image_id dev_load_dev_module(const char *name, const char *directory);
|
|
|
|
|
2003-01-12 19:23:21 +03:00
|
|
|
#endif /* _KERNEL_DEV_H */
|