1 /* 2 * Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _FSSH_MODULE_PRIVATE_H 6 #define _FSSH_MODULE_PRIVATE_H 7 8 #include "fssh_defs.h" 9 10 struct fssh_module_info; 11 12 namespace FSShell { 13 14 struct kernel_args; 15 16 fssh_status_t module_init(kernel_args *args); 17 void register_builtin_module(struct fssh_module_info *info); 18 19 20 } // namespace FSShell 21 22 #endif // _FSSH_MODULE_PRIVATE_H 23