2009-02-05 21:28:18 +03:00
|
|
|
/** \file win.h
|
2009-06-04 16:47:01 +04:00
|
|
|
* \brief Header: X terminal management: xterm and rxvt
|
2009-02-05 21:28:18 +03:00
|
|
|
*/
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
#ifndef MC__WIN_H
|
|
|
|
#define MC__WIN_H
|
|
|
|
|
|
|
|
#include "lib/global.h" /* <glib.h> */
|
|
|
|
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
void do_enter_ca_mode (void);
|
|
|
|
void do_exit_ca_mode (void);
|
|
|
|
|
2009-05-24 13:39:14 +04:00
|
|
|
void show_rxvt_contents (int starty, unsigned char y1, unsigned char y2);
|
|
|
|
gboolean look_for_rxvt_extensions (void);
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** inline functions ****************************************************************************/
|
2009-09-17 02:07:04 +04:00
|
|
|
#endif /* MC_WIN_H */
|