Mercurial > mplayer.hg
view osdep/getch2.h @ 19450:185942a2f517
Fix xv and xinerama force on --enable-*
The previous commit changed the conditions of check execution to match Diego's semantics
(execute check only on 'auto'), but the 'else' case forces detection to 'no',
even if previous --enable-* had set it to 'yes'.
author | iive |
---|---|
date | Sat, 19 Aug 2006 19:10:27 +0000 |
parents | f580a7755ac5 |
children | 5385740067a1 |
line wrap: on
line source
/* 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);