blob: 4c3160783bed99d85334cd5876673e5cf9e6057b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/** \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 */
|