mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
c1975a3a35
S-Lang already handles that in SLsmg_init_smg() and SLsmg_reset_smg(). Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
25 lines
907 B
C
25 lines
907 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> */
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
void show_rxvt_contents (int starty, unsigned char y1, unsigned char y2);
|
|
gboolean look_for_rxvt_extensions (void);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
#endif /* MC_WIN_H */
|