2002-09-23 06:36:51 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2001-2002, Thomas Kurschel. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _KERNEL_MODULE_H
|
|
|
|
#define _KERNEL_MODULE_H
|
|
|
|
|
|
|
|
#include <drivers/module.h>
|
|
|
|
#include <kernel.h>
|
|
|
|
|
2003-05-03 20:03:26 +04:00
|
|
|
struct kernel_args;
|
|
|
|
|
2004-04-27 01:04:06 +04:00
|
|
|
extern status_t module_init(struct kernel_args *args);
|
2002-12-03 20:59:30 +03:00
|
|
|
extern void module_test(void);
|
2002-09-23 06:36:51 +04:00
|
|
|
|
|
|
|
#endif /* _KRENEL_MODULE_H */
|