mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
0a7899709b
Mostly \file and \brief tag added. Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
15 lines
245 B
C
15 lines
245 B
C
|
|
/**
|
|
* \file
|
|
* \brief Header: Virtual File System: smb file system
|
|
*/
|
|
|
|
#ifndef MC_VFS_SMBFS_H
|
|
#define MC_VFS_SMBFS_H
|
|
|
|
void init_smbfs (void);
|
|
extern void smbfs_set_debug (int arg);
|
|
extern void smbfs_set_debugf (const char *filename);
|
|
|
|
#endif
|