00001
00002
00003
00004 #ifndef __KEY_H
00005 #define __KEY_H
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #define KEY_BACK_SPACE 0x08
00026 #define KEY_TAB 0x09
00027 #define KEY_ESC 0x1B
00028
00029 #define KEY_RETURN 0xD
00030 #define KEY_HOME 0x4700
00031 #define KEY_END 0x4F00
00032 #define KEY_PGUP 0x4900
00033 #define KEY_PGDN 0x5100
00034 #define KEY_UP 0x4800
00035 #define KEY_DOWN 0x5000
00036 #define KEY_RIGHT 0x4D00
00037 #define KEY_LEFT 0x4B00
00038 #define KEY_CENTER 0x4C00 // Extended keyboard only
00039 #define KEY_SHIFT_TAB 0x0F00
00040 #define KEY_INS 0x5200
00041 #define KEY_DEL 0x5300
00042
00043 #define KEY_F1 0x3B00
00044 #define KEY_F2 0x3C00
00045 #define KEY_F3 0x3D00
00046 #define KEY_F4 0x3E00
00047 #define KEY_F5 0x3F00
00048 #define KEY_F6 0x4000
00049 #define KEY_F7 0x4100
00050 #define KEY_F8 0x4200
00051 #define KEY_F9 0x4300
00052 #define KEY_F10 0x4400
00053 #define KEY_F11 0x5700
00054 #define KEY_F12 0x5800
00055
00056
00057 #define KEY_LWIN 0xDB00
00058 #define KEY_RWIN 0xDC00
00059 #define KEY_APPS 0xDD00
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177 #endif