mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
93dbc46e9c
* moved src/global.h into lib/global.h * moved glibcompat.[ch] from ./src/ into ./lib/ * moved fs.h from ./src/ into ./lib/ Signed-off-by: Slava Zanko <slavazanko@gmail.com>
23 lines
525 B
C
23 lines
525 B
C
|
|
/** \file tty-internal.h
|
|
* \brief Header: internal suff of the terminal controlling library
|
|
*/
|
|
|
|
#ifndef MC_TTY_INTERNAL_H
|
|
#define MC_TTY_INTERNAL_H
|
|
|
|
#include "lib/global.h" /* include <glib.h> */
|
|
|
|
/* If true lines are shown by spaces */
|
|
extern gboolean slow_tty;
|
|
|
|
/* If true use +, -, | for line drawing */
|
|
extern gboolean ugly_line_drawing;
|
|
|
|
/* The mouse is currently: TRUE - enabled, FALSE - disabled */
|
|
extern gboolean mouse_enabled;
|
|
|
|
char *mc_tty_normalize_from_utf8 (const char *);
|
|
|
|
#endif /* MC_TTY_INTERNAL_H */
|