win.h 991 B

1234567891011121314151617181920212223242526272829
  1. /** \file win.h
  2. * \brief Header: X terminal management: xterm and rxvt
  3. */
  4. #ifndef MC__WIN_H
  5. #define MC__WIN_H
  6. #include "lib/global.h" /* <glib.h> */
  7. /*** typedefs(not structures) and defined constants **********************************************/
  8. /*** enums ***************************************************************************************/
  9. /*** structures declarations (and typedefs of structures)*****************************************/
  10. /*** global variables defined in .c file *********************************************************/
  11. extern int xterm_flag;
  12. /*** declarations of public functions ************************************************************/
  13. void do_enter_ca_mode (void);
  14. void do_exit_ca_mode (void);
  15. void show_rxvt_contents (int starty, unsigned char y1, unsigned char y2);
  16. gboolean look_for_rxvt_extensions (void);
  17. /*** inline functions ****************************************************************************/
  18. #endif /* MC_WIN_H */