fish.h 823 B

1234567891011121314151617181920212223242526
  1. /**
  2. * \file
  3. * \brief Header: Virtual File System: FISH implementation for transfering files over
  4. * shell connections
  5. */
  6. #ifndef MC__VFS_FISH_H
  7. #define MC__VFS_FISH_H
  8. /*** typedefs(not structures) and defined constants **********************************************/
  9. /*** enums ***************************************************************************************/
  10. /*** structures declarations (and typedefs of structures)*****************************************/
  11. /*** global variables defined in .c file *********************************************************/
  12. extern int fish_directory_timeout;
  13. /*** declarations of public functions ************************************************************/
  14. /*** inline functions ****************************************************************************/
  15. #endif