Mercurial > mplayer.hg
annotate osdep/getch2.h @ 17311:b1b8ff93dc0c
Update with current changes.
author | diego |
---|---|
date | Wed, 04 Jan 2006 15:25:51 +0000 |
parents | 11459d1ff17c |
children | f580a7755ac5 |
rev | line source |
---|---|
1 | 1 /* GyS-TermIO v2.0 (for GySmail v3) (C) 1999 A'rpi/ESP-team */ |
2 /* a very small replacement of ncurses library */ | |
3 | |
4 /* Screen size. Initialized by load_termcap() and get_screen_size() */ | |
5 extern int screen_width; | |
6 extern int screen_height; | |
7 | |
17240
11459d1ff17c
Use termcap "erase to end of line" character code instead of using spaces
ods15
parents:
9380
diff
changeset
|
8 /* Termcap code to erase to end of line */ |
11459d1ff17c
Use termcap "erase to end of line" character code instead of using spaces
ods15
parents:
9380
diff
changeset
|
9 extern char * erase_to_end_of_line; |
11459d1ff17c
Use termcap "erase to end of line" character code instead of using spaces
ods15
parents:
9380
diff
changeset
|
10 |
1 | 11 /* Get screen-size using IOCTL call. */ |
12 extern void get_screen_size(); | |
13 | |
14 /* Load key definitions from the TERMCAP database. 'termtype' can be NULL */ | |
15 extern int load_termcap(char *termtype); | |
16 | |
17 /* Enable and disable STDIN line-buffering */ | |
18 extern void getch2_enable(); | |
19 extern void getch2_disable(); | |
20 | |
21 /* Read a character or a special key code (see keycodes.h) */ | |
22 extern int getch2(int halfdelay_time); | |
23 |