The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 1 | #ifndef _SIM_LINUXKEYS_H |
2 | #define _SIM_LINUXKEYS_H | ||||
3 | |||||
4 | #include <linux/input.h> | ||||
5 | |||||
6 | /* ubuntu has these, goobuntu doesn't */ | ||||
7 | #ifndef KEY_SWITCHVIDEOMODE | ||||
8 | # define KEY_SWITCHVIDEOMODE 227 | ||||
9 | #endif | ||||
10 | #ifndef KEY_KBDILLUMTOGGLE | ||||
11 | # define KEY_KBDILLUMTOGGLE 228 | ||||
12 | #endif | ||||
13 | #ifndef KEY_KBDILLUMUP | ||||
14 | # define KEY_KBDILLUMUP 230 | ||||
15 | #endif | ||||
16 | #ifndef KEY_REPLY | ||||
17 | # define KEY_REPLY 232 | ||||
18 | #endif | ||||
19 | |||||
20 | #endif /*_SIM_LINUXKEYS_H*/ |