5 The 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"
62 #include "smbfs/smbfs.h"
69 #ifdef ENABLE_VFS_UNDELFS
70 #include "undelfs/undelfs.h"
73 #include "plugins_init.h"
75 /*** global variables ****************************************************************************/
77 /*** file scope macro definitions ****************************************************************/
79 /*** file scope type declarations ****************************************************************/
81 /*** file scope variables ************************************************************************/
83 /*** file scope functions ************************************************************************/
84 /* --------------------------------------------------------------------------------------------- */
86 /* --------------------------------------------------------------------------------------------- */
87 /*** public functions ****************************************************************************/
88 /* --------------------------------------------------------------------------------------------- */
91 vfs_plugins_init (void)
93 /* localfs needs to be the first one */
96 #ifdef ENABLE_VFS_CPIO
98 #endif /* ENABLE_VFS_CPIO */
101 #endif /* ENABLE_VFS_TAR */
102 #ifdef ENABLE_VFS_SFS
104 #endif /* ENABLE_VFS_SFS */
105 #ifdef ENABLE_VFS_EXTFS
107 #endif /* ENABLE_VFS_EXTFS */
108 #ifdef ENABLE_VFS_UNDELFS
110 #endif /* ENABLE_VFS_UNDELFS */
112 #ifdef ENABLE_VFS_FTP
114 #endif /* ENABLE_VFS_FTP */
115 #ifdef ENABLE_VFS_FISH
117 #endif /* ENABLE_VFS_FISH */
118 #ifdef ENABLE_VFS_SMB
120 #endif /* ENABLE_VFS_SMB */
124 /* --------------------------------------------------------------------------------------------- */