1
1
mc/src/tty.h

36 строки
759 B
C
Исходник Обычный вид История

#ifndef __MC_TTY_H
#define __MC_TTY_H
1998-02-27 07:54:42 +03:00
/* This file takes care of loading ncurses or slang */
int got_interrupt (void);
#ifdef HAVE_SLANG
# include "myslang.h"
#else
# define enable_interrupt_key()
# define disable_interrupt_key()
# define acs()
# define noacs()
# define one_vline() addch (slow_terminal ? ' ' : ACS_VLINE)
# define one_hline() addch (slow_terminal ? ' ' : ACS_HLINE)
#endif
#ifdef USE_NCURSES
# ifdef HAVE_NCURSES_CURSES_H
# include <ncurses/curses.h>
# elif HAVE_NCURSES_H
1998-02-27 07:54:42 +03:00
# include <ncurses.h>
# else
# include <curses.h>
1998-02-27 07:54:42 +03:00
# endif
#endif /* USE_NCURSES */
1998-02-27 07:54:42 +03:00
#define KEY_KP_ADD 4001
#define KEY_KP_SUBTRACT 4002
#define KEY_KP_MULTIPLY 4003
void mc_refresh (void);
#endif /* !__MC_TTY_H */