2 Global structure for some library-related variables
4 Copyright (C) 2009-2016
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
34 #include "lib/timer.h"
37 #ifdef ENABLE_SUBSHELL
38 # ifdef SUBSHELL_OPTIONAL
39 # define SUBSHELL_USE FALSE
40 # else /* SUBSHELL_OPTIONAL */
41 # define SUBSHELL_USE TRUE
42 # endif /* SUBSHELL_OPTIONAL */
43 #else /* !ENABLE_SUBSHELL */
44 # define SUBSHELL_USE FALSE
45 #endif /* !ENABLE_SUBSHELL */
48 /*** global variables ****************************************************************************/
51 mc_global_t mc_global
= {
52 .mc_run_mode
= MC_RUN_FULL
,
54 .midnight_shutdown
= FALSE
,
56 .sysconfig_dir
= NULL
,
57 .share_data_dir
= NULL
,
60 .source_codepage
= -1,
61 .display_codepage
= -1,
65 #endif /* !HAVE_CHARSET */
66 .utf8_display
= FALSE
,
71 #ifdef ENABLE_BACKGROUND
72 .we_are_background
= FALSE
,
73 #endif /* ENABLE_BACKGROUND */
77 .confirm_history_cleanup
= TRUE
,
78 .show_all_if_ambiguous
= FALSE
,
87 .setup_color_string
= NULL
,
88 .term_color_string
= NULL
,
89 .color_terminal_string
= NULL
,
90 .command_line_colors
= NULL
,
91 #ifndef LINUX_CONS_SAVER_C
93 #endif /* !LINUX_CONS_SAVER_C */
95 .use_subshell
= SUBSHELL_USE
,
97 #ifdef ENABLE_SUBSHELL
99 #endif /* !ENABLE_SUBSHELL */
102 .disable_x11
= FALSE
,
103 .slow_terminal
= FALSE
,
104 .disable_colors
= FALSE
,
105 .ugly_line_drawing
= FALSE
,
107 .alternate_plus_minus
= FALSE
,
114 .preallocate_space
= FALSE
,
122 /*** file scope macro definitions ****************************************************************/
124 /*** file scope type declarations ****************************************************************/
126 /*** file scope variables ************************************************************************/
128 /*** file scope functions ************************************************************************/
130 /*** public functions ****************************************************************************/
131 /* --------------------------------------------------------------------------------------------- */