mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-01 00:54:24 +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>
20 lines
379 B
C
20 lines
379 B
C
|
|
/** \file win.h
|
|
* \brief Header: X terminal management: xterm and rxvt
|
|
*/
|
|
|
|
#ifndef MC_WIN_H
|
|
#define MC_WIN_H
|
|
|
|
#include "lib/global.h" /* <glib.h> */
|
|
|
|
extern int xterm_flag;
|
|
|
|
void do_enter_ca_mode (void);
|
|
void do_exit_ca_mode (void);
|
|
|
|
void show_rxvt_contents (int starty, unsigned char y1, unsigned char y2);
|
|
gboolean look_for_rxvt_extensions (void);
|
|
|
|
#endif /* MC_WIN_H */
|