win.h 967 B

123456789101112131415161718192021222324252627
  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. /*** declarations of public functions ************************************************************/
  12. void do_enter_ca_mode (void);
  13. void do_exit_ca_mode (void);
  14. void show_rxvt_contents (int starty, unsigned char y1, unsigned char y2);
  15. gboolean look_for_rxvt_extensions (void);
  16. /*** inline functions ****************************************************************************/
  17. #endif /* MC_WIN_H */