1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/*
Global structure for some library-related variables
Copyright (C) 2009-2025
Free Software Foundation, Inc.
Written by:
Slava Zanko <slavazanko@gmail.com>, 2009.
This file is part of the Midnight Commander.
The Midnight Commander is free software: you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the License,
or (at your option) any later version.
The Midnight Commander is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** \file glibcompat.c
* \brief Source: global structure for some library-related variables
*
*/
#include <config.h>
#include "mc-version.h"
#include "global.h"
/* *INDENT-OFF* */
#ifdef ENABLE_SUBSHELL
# ifdef SUBSHELL_OPTIONAL
# define SUBSHELL_USE FALSE
# else /* SUBSHELL_OPTIONAL */
# define SUBSHELL_USE TRUE
# endif /* SUBSHELL_OPTIONAL */
#else /* !ENABLE_SUBSHELL */
# define SUBSHELL_USE FALSE
#endif /* !ENABLE_SUBSHELL */
/* *INDENT-ON* */
/*** global variables ****************************************************************************/
/* *INDENT-OFF* */
mc_global_t mc_global =
{
.mc_version = MC_CURRENT_VERSION,
.mc_run_mode = MC_RUN_FULL,
.run_from_parent_mc = FALSE,
.midnight_shutdown = FALSE,
.sysconfig_dir = NULL,
.share_data_dir = NULL,
.profile_name = NULL,
#ifdef HAVE_CHARSET
.source_codepage = -1,
.display_codepage = -1,
#else
.eight_bit_clean = TRUE,
.full_eight_bits = FALSE,
#endif /* !HAVE_CHARSET */
.utf8_display = FALSE,
.message_visible = TRUE,
.keybar_visible = TRUE,
#ifdef ENABLE_BACKGROUND
.we_are_background = FALSE,
#endif /* ENABLE_BACKGROUND */
.widget =
{
.confirm_history_cleanup = TRUE,
.show_all_if_ambiguous = FALSE,
.is_right = FALSE
},
.shell = NULL,
.tty =
{
.skin = NULL,
.shadows = TRUE,
.setup_color_string = NULL,
.term_color_string = NULL,
.color_terminal_string = NULL,
.command_line_colors = NULL,
#ifndef LINUX_CONS_SAVER_C
.console_flag = '\0',
#endif /* !LINUX_CONS_SAVER_C */
.use_subshell = SUBSHELL_USE,
#ifdef ENABLE_SUBSHELL
.subshell_pty = 0,
#endif /* !ENABLE_SUBSHELL */
.xterm_flag = FALSE,
.disable_x11 = FALSE,
.slow_terminal = FALSE,
.disable_colors = FALSE,
.ugly_line_drawing = FALSE,
.old_mouse = FALSE,
.alternate_plus_minus = FALSE
},
.vfs =
{
.cd_symlinks = TRUE,
.preallocate_space = FALSE,
}
};
/* *INDENT-ON* */
#undef SUBSHELL_USE
/*** file scope macro definitions ****************************************************************/
/*** file scope type declarations ****************************************************************/
/*** file scope variables ************************************************************************/
/*** file scope functions ************************************************************************/
/*** public functions ****************************************************************************/
/* --------------------------------------------------------------------------------------------- */
|