mirror of
https://github.com/mpv-player/mpv
synced 2024-12-13 02:15:59 +00:00
840a77bd06
* create new .h files where necessary todo: * go trough other files than mplayer.c * vf_menu_pause_update() * mp_input_register_options() * import_playtree_playlist_into_gui() * import_initial_playtree_into_gui() For more infos see http://lists.mplayerhq.hu/pipermail/mplayer-dev-eng/2006-September/045683.html ( 20060902133225.2cc82aec.attila@kinali.ch on -dev-eng ) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19814 b3059339-0415-0410-9bf9-f77b7e298cf2
27 lines
833 B
C
27 lines
833 B
C
/* GyS-TermIO v2.0 (for GySmail v3) (C) 1999 A'rpi/ESP-team */
|
|
/* a very small replacement of ncurses library */
|
|
|
|
/* Screen size. Initialized by load_termcap() and get_screen_size() */
|
|
extern int screen_width;
|
|
extern int screen_height;
|
|
|
|
/* Termcap code to erase to end of line */
|
|
extern char * erase_to_end_of_line;
|
|
|
|
/* Get screen-size using IOCTL call. */
|
|
extern void get_screen_size(void);
|
|
|
|
/* Load key definitions from the TERMCAP database. 'termtype' can be NULL */
|
|
extern int load_termcap(char *termtype);
|
|
|
|
/* Enable and disable STDIN line-buffering */
|
|
extern void getch2_enable(void);
|
|
extern void getch2_disable(void);
|
|
|
|
/* Read a character or a special key code (see keycodes.h) */
|
|
extern int getch2(int halfdelay_time);
|
|
|
|
#ifdef __MINGW32__
|
|
extern int mp_input_win32_slave_cmd_func(int fd,char* dest,int size);
|
|
#endif
|