mc/lib/tty/win.h
Slava Zanko 93dbc46e9c Reorganization of sources. Part 1.
* 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>
2010-01-26 10:30:23 +02:00

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 */