mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
VFS: fixed lots of missing includes to vfs/vfs.h
This commit is contained in:
parent
03b6d00976
commit
80b3776c20
@ -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;
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
||||
|
@ -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 () */
|
||||
|
@ -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;
|
||||
|
||||
|
@ -81,6 +81,7 @@
|
||||
#include "filegui.h"
|
||||
#include "tree.h"
|
||||
#include "../vfs/vfs-impl.h"
|
||||
#include "../vfs/vfs.h"
|
||||
|
||||
/* }}} */
|
||||
|
||||
|
@ -38,6 +38,8 @@
|
||||
#include "fs.h"
|
||||
#include "util.h"
|
||||
|
||||
#include "../vfs/vfs.h"
|
||||
|
||||
static char *
|
||||
get_absolute_name (const char *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"
|
||||
|
@ -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() */
|
||||
|
@ -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]) )
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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 */
|
||||
|
@ -57,6 +57,8 @@
|
||||
#include "dir.h"
|
||||
#include "fileloc.h"
|
||||
|
||||
#include "../vfs/vfs.h"
|
||||
|
||||
#ifdef HAVE_CHARSET
|
||||
#include "charsets.h"
|
||||
#endif
|
||||
|
@ -58,6 +58,8 @@
|
||||
|
||||
#include "../src/global.h"
|
||||
#include "../src/wtools.h"
|
||||
#include "../../vfs/vfs.h"
|
||||
|
||||
#include "internal.h"
|
||||
|
||||
/*** global variables ****************************************************************************/
|
||||
|
@ -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 */
|
||||
|
@ -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 ****************************************************************************/
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user