123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /*
- Global structure for some library-related variables
- Copyright (C) 2009-2017
- 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 "global.h"
- #include "lib/timer.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_run_mode = MC_RUN_FULL,
- .timer = NULL,
- .midnight_shutdown = FALSE,
- .sysconfig_dir = NULL,
- .share_data_dir = 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 = 1,
- .keybar_visible = 1,
- #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,
- .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,
- .winch_flag = 0
- },
- .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 ****************************************************************************/
- /* --------------------------------------------------------------------------------------------- */
|