diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:22:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:22:03 +0000 |
commit | ffccd5b2b05243e7976db80f90f453dccfae9886 (patch) | |
tree | 39a43152d27f7390d8f7a6fb276fa6887f87c6e8 /lib/global.c | |
parent | Initial commit. (diff) | |
download | mc-upstream/3%4.8.30.tar.xz mc-upstream/3%4.8.30.zip |
Adding upstream version 3:4.8.30.upstream/3%4.8.30
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | lib/global.c | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/lib/global.c b/lib/global.c new file mode 100644 index 0000000..0b1639d --- /dev/null +++ b/lib/global.c @@ -0,0 +1,137 @@ +/* + Global structure for some library-related variables + + Copyright (C) 2009-2023 + 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 ****************************************************************************/ +/* --------------------------------------------------------------------------------------------- */ |