VFS: fixed lots of missing includes to vfs/vfs.h

This commit is contained in:
Enrico Weigelt, metux IT service 2009-12-29 05:35:55 +01:00 committed by Slava Zanko
parent 03b6d00976
commit 80b3776c20
19 changed files with 35 additions and 2 deletions

View File

@ -61,6 +61,8 @@
#include "../src/main.h" /* source_codepage */
#include "../src/learn.h" /* learn_keys */
#include "../vfs/vfs.h"
int option_word_wrap_line_length = 72;
int option_typewriter_wrap = 0;
int option_auto_para_formatting = 0;

View File

@ -62,6 +62,8 @@
#include "../src/mcconfig/mcconfig.h"
#include "../src/skin/skin.h" /* mc_skin_color_get */
#include "../vfs/vfs.h"
#include "../edit/edit-impl.h"
#include "../edit/edit.h"
#include "../edit/editlock.h"

View File

@ -60,6 +60,8 @@
#include "../src/wtools.h" /* edit_query_dialog () */
#include "../src/strutil.h" /* utf string functions */
#include "../vfs/vfs.h"
#define BUF_SIZE 255
#define PID_BUF_SIZE 10

View File

@ -34,6 +34,7 @@
#include "global.h" /* home_dir */
#include "../src/tty/tty.h"
#include "../vfs/vfs.h"
#include "widget.h" /* WInput */
#include "command.h"
#include "wtools.h" /* message () */

View File

@ -45,6 +45,8 @@
#include "../src/search/search.h"
#include "../src/viewer/mcviewer.h"
#include "../vfs/vfs.h"
/* If set, we execute the file command to check the file type */
int use_file_to_check_type = 1;

View File

@ -81,6 +81,7 @@
#include "filegui.h"
#include "tree.h"
#include "../vfs/vfs-impl.h"
#include "../vfs/vfs.h"
/* }}} */

View File

@ -38,6 +38,8 @@
#include "fs.h"
#include "util.h"
#include "../vfs/vfs.h"
static char *
get_absolute_name (const char *file)
{

View File

@ -37,9 +37,10 @@
#include "../src/tty/tty.h"
#include "../src/skin/skin.h"
#include "../src/tty/key.h"
#include "../src/search/search.h"
#include "../vfs/vfs.h"
#include "setup.h"
#include "find.h"
#include "strutil.h"

View File

@ -37,6 +37,8 @@
#include "../src/skin/skin.h"
#include "../vfs/vfs.h"
#include "dialog.h"
#include "widget.h"
#include "wtools.h" /* For common_dialog_repaint() */

View File

@ -62,6 +62,7 @@
#include "charsets.h" /* get_codepage_id () */
#include "cmddef.h" /* CK_ cmd name const */
#include "keybind.h" /* global_keymap_t */
#include "../vfs/vfs.h"
#define ELEMENTS(arr) ( sizeof(arr) / sizeof((arr)[0]) )

View File

@ -33,6 +33,7 @@
#include "../src/tty/tty.h"
#include "../src/tty/key.h"
#include "../src/tty/mouse.h" /* To make view.h happy */
#include "../vfs/vfs.h"
#include "args.h"
#include "dir.h"

View File

@ -60,6 +60,8 @@
#include "strutil.h"
#include "fileloc.h"
#include "../vfs/vfs.h"
#ifndef WEXITSTATUS
# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
#endif

View File

@ -50,6 +50,7 @@
#include "global.h"
#include "treestore.h"
#include "../src/mcconfig/mcconfig.h"
#include "../vfs/vfs.h"
#include "setup.h"
#include "fileloc.h"

View File

@ -42,6 +42,8 @@
#include "strutil.h"
#include "../src/search/search.h"
#include "../vfs/vfs.h"
#include "../edit/edit.h" /* WEdit, BLOCK_FILE */
/* For the simple listbox manager */

View File

@ -57,6 +57,8 @@
#include "dir.h"
#include "fileloc.h"
#include "../vfs/vfs.h"
#ifdef HAVE_CHARSET
#include "charsets.h"
#endif

View File

@ -58,6 +58,8 @@
#include "../src/global.h"
#include "../src/wtools.h"
#include "../../vfs/vfs.h"
#include "internal.h"
/*** global variables ****************************************************************************/

View File

@ -40,6 +40,9 @@
#include "../src/global.h"
#include "../src/wtools.h"
#include "../../vfs/vfs.h"
#include "internal.h"
/* Block size for reading files in parts */

View File

@ -46,6 +46,9 @@
#include "../src/main.h"
#include "../src/wtools.h"
#include "../src/charsets.h"
#include "../../vfs/vfs.h"
#include "internal.h"
/*** global variables ****************************************************************************/

View File

@ -46,9 +46,10 @@
#include "../src/skin/skin.h"
#include "../src/tty/mouse.h"
#include "../src/tty/key.h" /* XCTRL and ALT macros */
#include "../src/mcconfig/mcconfig.h" /* for history loading and saving */
#include "../vfs/vfs.h"
#include "dialog.h"
#include "widget.h"
#include "wtools.h"