guard. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20976 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
441 B
C++
23 lines
441 B
C++
/*
|
|
* Copyright 2007, Ingo Weinhold, [email protected].
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _FSSH_MODULE_PRIVATE_H
|
|
#define _FSSH_MODULE_PRIVATE_H
|
|
|
|
#include "fssh_defs.h"
|
|
|
|
struct fssh_module_info;
|
|
|
|
namespace FSShell {
|
|
|
|
struct kernel_args;
|
|
|
|
fssh_status_t module_init(kernel_args *args);
|
|
void register_builtin_module(struct fssh_module_info *info);
|
|
|
|
|
|
} // namespace FSShell
|
|
|
|
#endif // _FSSH_MODULE_PRIVATE_H
|