diff options
Diffstat (limited to 'src/vfs/shell/shell.h')
-rw-r--r-- | src/vfs/shell/shell.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/vfs/shell/shell.h b/src/vfs/shell/shell.h new file mode 100644 index 0000000..e485d69 --- /dev/null +++ b/src/vfs/shell/shell.h @@ -0,0 +1,28 @@ + +/** + * \file + * \brief Header: Virtual File System: SHELL implementation for transferring files over + * shell connections + */ + + +#ifndef MC__VFS_SHELL_H +#define MC__VFS_SHELL_H + +/*** typedefs(not structures) and defined constants **********************************************/ + +/*** enums ***************************************************************************************/ + +/*** structures declarations (and typedefs of structures)*****************************************/ + +/*** global variables defined in .c file *********************************************************/ + +extern int shell_directory_timeout; + +/*** declarations of public functions ************************************************************/ + +void vfs_init_shell (void); + +/*** inline functions ****************************************************************************/ + +#endif /* MC__VFS_SHELL_H */ |