1 2 /** 3 * \file 4 * \brief Header: Virtual File System: SHELL implementation for transferring files over 5 * shell connections 6 */ 7 8 9 #ifndef MC__VFS_SHELL_H 10 #define MC__VFS_SHELL_H 11 12 /*** typedefs(not structures) and defined constants **********************************************/ 13 14 /*** enums ***************************************************************************************/ 15 16 /*** structures declarations (and typedefs of structures)*****************************************/ 17 18 /*** global variables defined in .c file *********************************************************/ 19 20 extern int shell_directory_timeout; 21 22 /*** declarations of public functions ************************************************************/ 23 24 void vfs_init_shell (void); 25 26 /*** inline functions ****************************************************************************/ 27 28 #endif /* MC__VFS_SHELL_H */