Make sws_dcVec static: It is only used inside libswscale/utils.c.
[mplayer/glamo.git] / osdep / getch2.h
blob5ee6108fc3d0988d276c213c4dd8e89cf6772b2f
1 /*
2 * GyS-TermIO v2.0 (for GySmail v3)
3 * a very small replacement of ncurses library
5 * copyright (C) 1999 A'rpi/ESP-team
7 * This file is part of MPlayer.
9 * MPlayer is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * MPlayer is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #ifndef MPLAYER_GETCH2_H
25 #define MPLAYER_GETCH2_H
27 #include "config.h"
29 /* Screen size. Initialized by load_termcap() and get_screen_size() */
30 extern int screen_width;
31 extern int screen_height;
33 /* Termcap code to erase to end of line */
34 extern char * erase_to_end_of_line;
36 /* Get screen-size using IOCTL call. */
37 void get_screen_size(void);
39 /* Load key definitions from the TERMCAP database. 'termtype' can be NULL */
40 int load_termcap(char *termtype);
42 /* Enable and disable STDIN line-buffering */
43 void getch2_enable(void);
44 void getch2_disable(void);
46 /* Read a character or a special key code (see keycodes.h) */
47 void getch2(void);
49 #ifdef CONFIG_ICONV
50 /**
51 * \brief gets the name of the system's terminal character set
52 * \return a malloced string indicating the system charset
54 * Be warned that this function on many systems is in no way thread-safe
55 * since it modifies global data
57 char *get_term_charset(void);
58 #endif
60 #if defined(__MINGW32__) || defined(__OS2__)
61 /* slave cmd function for Windows and OS/2 */
62 int mp_input_slave_cmd_func(int fd,char* dest,int size);
63 #define USE_SELECT 0
64 #define MP_INPUT_SLAVE_CMD_FUNC mp_input_slave_cmd_func
65 #else
66 #define USE_SELECT 1
67 #define MP_INPUT_SLAVE_CMD_FUNC NULL
68 #endif
70 #endif /* MPLAYER_GETCH2_H */