179fd09879
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7319 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
360 B
C
18 lines
360 B
C
/*
|
|
** 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>
|
|
|
|
struct kernel_args;
|
|
|
|
extern status_t module_init(struct kernel_args *args);
|
|
extern void module_test(void);
|
|
|
|
#endif /* _KRENEL_MODULE_H */
|