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