4 Copyright (C) 2011-2016
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2011.
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software: you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation, either version 3 of the License,
15 or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 * \brief This is a template file (here goes brief description).
32 * Detailed description.
37 #include "lib/global.h"
39 #include "local/local.h"
41 #ifdef ENABLE_VFS_CPIO
42 #include "cpio/cpio.h"
45 #ifdef ENABLE_VFS_EXTFS
46 #include "extfs/extfs.h"
49 #ifdef ENABLE_VFS_FISH
50 #include "fish/fish.h"
54 #include "ftpfs/ftpfs.h"
57 #ifdef ENABLE_VFS_SFTP
58 #include "sftpfs/init.h"
66 #include "smbfs/smbfs.h"
73 #ifdef ENABLE_VFS_UNDELFS
74 #include "undelfs/undelfs.h"
77 #include "plugins_init.h"
79 /*** global variables ****************************************************************************/
81 /*** file scope macro definitions ****************************************************************/
83 /*** file scope type declarations ****************************************************************/
85 /*** file scope variables ************************************************************************/
87 /*** file scope functions ************************************************************************/
88 /* --------------------------------------------------------------------------------------------- */
90 /* --------------------------------------------------------------------------------------------- */
91 /*** public functions ****************************************************************************/
92 /* --------------------------------------------------------------------------------------------- */
95 vfs_plugins_init (void)
97 /* localfs needs to be the first one */
100 #ifdef ENABLE_VFS_CPIO
102 #endif /* ENABLE_VFS_CPIO */
103 #ifdef ENABLE_VFS_TAR
105 #endif /* ENABLE_VFS_TAR */
106 #ifdef ENABLE_VFS_SFS
108 #endif /* ENABLE_VFS_SFS */
109 #ifdef ENABLE_VFS_EXTFS
111 #endif /* ENABLE_VFS_EXTFS */
112 #ifdef ENABLE_VFS_UNDELFS
114 #endif /* ENABLE_VFS_UNDELFS */
116 #ifdef ENABLE_VFS_FTP
118 #endif /* ENABLE_VFS_FTP */
119 #ifdef ENABLE_VFS_SFTP
121 #endif /* ENABLE_VFS_SFTP */
122 #ifdef ENABLE_VFS_FISH
124 #endif /* ENABLE_VFS_FISH */
125 #ifdef ENABLE_VFS_SMB
127 #endif /* ENABLE_VFS_SMB */
131 /* --------------------------------------------------------------------------------------------- */