11d4dc0bf5
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2150 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
384 B
C
17 lines
384 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>
|
|
#include <stage2.h>
|
|
|
|
extern status_t module_init(kernel_args *ka, module_info **sys_module_headers);
|
|
extern void module_test(void);
|
|
|
|
#endif /* _KRENEL_MODULE_H */
|