564cba312e
some broken C++ export definitions, added missing licenses etc. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3152 a95241bf-73f2-0310-859d-f6bbb57e9c96
16 lines
341 B
C
Executable File
16 lines
341 B
C
Executable File
/*
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
** Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef _KERNEL_DEV_H
|
|
#define _KERNEL_DEV_H
|
|
|
|
#include <image.h>
|
|
|
|
struct kernel_args;
|
|
|
|
int dev_init(kernel_args *ka);
|
|
image_id dev_load_dev_module(const char *name, const char *directory);
|
|
|
|
#endif /* _KERNEL_DEV_H */
|