win.h 379 B

12345678910111213141516171819
  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. extern int xterm_flag;
  8. void do_enter_ca_mode (void);
  9. void do_exit_ca_mode (void);
  10. void show_rxvt_contents (int starty, unsigned char y1, unsigned char y2);
  11. gboolean look_for_rxvt_extensions (void);
  12. #endif /* MC_WIN_H */