2 Global structure for some library-related variables
4 Copyright (C) 2009-2024
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2009.
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/>.
26 /** \file glibcompat.c
27 * \brief Source: global structure for some library-related variables
33 #include "mc-version.h"
38 #ifdef ENABLE_SUBSHELL
39 # ifdef SUBSHELL_OPTIONAL
40 # define SUBSHELL_USE FALSE
41 # else /* SUBSHELL_OPTIONAL */
42 # define SUBSHELL_USE TRUE
43 # endif /* SUBSHELL_OPTIONAL */
44 #else /* !ENABLE_SUBSHELL */
45 # define SUBSHELL_USE FALSE
46 #endif /* !ENABLE_SUBSHELL */
49 /*** global variables ****************************************************************************/
52 mc_global_t mc_global
=
54 .mc_version
= MC_CURRENT_VERSION
,
56 .mc_run_mode
= MC_RUN_FULL
,
57 .run_from_parent_mc
= FALSE
,
58 .midnight_shutdown
= FALSE
,
60 .sysconfig_dir
= NULL
,
61 .share_data_dir
= NULL
,
66 .source_codepage
= -1,
67 .display_codepage
= -1,
69 .eight_bit_clean
= TRUE
,
70 .full_eight_bits
= FALSE
,
71 #endif /* !HAVE_CHARSET */
72 .utf8_display
= FALSE
,
74 .message_visible
= TRUE
,
75 .keybar_visible
= TRUE
,
77 #ifdef ENABLE_BACKGROUND
78 .we_are_background
= FALSE
,
79 #endif /* ENABLE_BACKGROUND */
83 .confirm_history_cleanup
= TRUE
,
84 .show_all_if_ambiguous
= FALSE
,
94 .setup_color_string
= NULL
,
95 .term_color_string
= NULL
,
96 .color_terminal_string
= NULL
,
97 .command_line_colors
= NULL
,
98 #ifndef LINUX_CONS_SAVER_C
100 #endif /* !LINUX_CONS_SAVER_C */
102 .use_subshell
= SUBSHELL_USE
,
104 #ifdef ENABLE_SUBSHELL
106 #endif /* !ENABLE_SUBSHELL */
109 .disable_x11
= FALSE
,
110 .slow_terminal
= FALSE
,
111 .disable_colors
= FALSE
,
112 .ugly_line_drawing
= FALSE
,
114 .alternate_plus_minus
= FALSE
120 .preallocate_space
= FALSE
,
128 /*** file scope macro definitions ****************************************************************/
130 /*** file scope type declarations ****************************************************************/
132 /*** file scope variables ************************************************************************/
134 /*** file scope functions ************************************************************************/
136 /*** public functions ****************************************************************************/
137 /* --------------------------------------------------------------------------------------------- */