Mercurial > mplayer.hg
annotate libvo/wskeys.h @ 28277:a062e840afca
Update copyright year, patch by Zhou Zongyi, zhouzongyi pset.suntec net.
author | diego |
---|---|
date | Thu, 15 Jan 2009 08:46:17 +0000 |
parents | 449297b8abb9 |
children | 7681eab10aea |
rev | line source |
---|---|
1 | 1 |
26029 | 2 #ifndef MPLAYER_WSKEYS_H |
3 #define MPLAYER_WSKEYS_H | |
1 | 4 |
5 #define wsUp 0x52 + 256 | |
6 #define wsDown 0x54 + 256 | |
7 #define wsLeft 0x51 + 256 | |
8 #define wsRight 0x53 + 256 | |
9 #define wsLeftCtrl 0xe3 + 256 | |
10 #define wsRightCtrl 0xe4 + 256 | |
11 #define wsLeftAlt 0xe9 + 256 | |
12 #define wsRightAlt 0x7e + 256 | |
13 #define wsLeftShift 0xe1 + 256 | |
14 #define wsRightShift 0xe2 + 256 | |
15 #define wsEnter 0x0d + 256 | |
16 #define wsBackSpace 0x08 + 256 | |
17 #define wsCapsLock 0xe5 + 256 | |
18 #define wsTab 0x09 + 256 | |
19 #define wsF1 0xbe + 256 | |
20 #define wsF2 0xbf + 256 | |
21 #define wsF3 0xc0 + 256 | |
22 #define wsF4 0xc1 + 256 | |
23 #define wsF5 0xc2 + 256 | |
24 #define wsF6 0xc3 + 256 | |
25 #define wsF7 0xc4 + 256 | |
26 #define wsF8 0xc5 + 256 | |
27 #define wsF9 0xc6 + 256 | |
28 #define wsF10 0xc7 + 256 | |
11793 | 29 #define wsF11 0xc8 + 256 |
30 #define wsF12 0xc9 + 256 | |
1 | 31 #define wsInsert 0x63 + 256 |
32 #define wsDelete 0xff + 256 | |
33 #define wsHome 0x50 + 256 | |
34 #define wsEnd 0x57 + 256 | |
35 #define wsPageUp 0x55 + 256 | |
36 #define wsPageDown 0x56 + 256 | |
37 #define wsNumLock 0x7f + 256 | |
38 #define wsEscape 0x1b + 256 | |
39 #define wsGrayEnter 0x8d + 256 | |
40 #define wsGrayPlus 0xab + 256 | |
41 #define wsGrayMinus 0xad + 256 | |
42 #define wsGrayMul 0xaa + 256 | |
43 #define wsGrayDiv 0xaf + 256 | |
9891
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
44 #define wsGrayDecimal 0xae + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
45 #define wsGray0 0xb0 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
46 #define wsGray1 0xb1 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
47 #define wsGray2 0xb2 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
48 #define wsGray3 0xb3 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
49 #define wsGray4 0xb4 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
50 #define wsGray5 0xb5 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
51 #define wsGray6 0xb6 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
52 #define wsGray7 0xb7 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
53 #define wsGray8 0xb8 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
54 #define wsGray9 0xb9 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
55 #define wsGrayHome 0x95 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
56 #define wsGrayLeft 0x96 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
57 #define wsGrayUp 0x97 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
58 #define wsGrayRight 0x98 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
59 #define wsGrayDown 0x99 + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
60 #define wsGrayPgUp 0x9a + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
61 #define wsGrayPgDn 0x9b + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
62 #define wsGrayEnd 0x9c + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
63 #define wsGray5Dup 0x9d + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
64 #define wsGrayInsert 0x9e + 256 |
150d1ef4204d
keypad and function (f1-f10) suppport (currently only vo_sdl and the terminal input code supports it). Patch by Vladimir Mosgalin <mosgalin@VM10124.spb.edu>
alex
parents:
3490
diff
changeset
|
65 #define wsGrayDelete 0x9f + 256 |
1 | 66 |
26029 | 67 #endif /* MPLAYER_WSKEYS_H */ |