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