summaryrefslogtreecommitdiff
path: root/ext/io/console/win32_vk.inc
blob: cbec7bef150e2691dc56abb20b4dce5987406955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
#define UNDEFINED_VK (unsigned short)-1
#ifndef VK_LBUTTON
# define VK_LBUTTON UNDEFINED_VK
#endif
#ifndef VK_RBUTTON
# define VK_RBUTTON UNDEFINED_VK
#endif
#ifndef VK_CANCEL
# define VK_CANCEL UNDEFINED_VK
#endif
#ifndef VK_MBUTTON
# define VK_MBUTTON UNDEFINED_VK
#endif
#ifndef VK_XBUTTON1
# define VK_XBUTTON1 UNDEFINED_VK
#endif
#ifndef VK_XBUTTON2
# define VK_XBUTTON2 UNDEFINED_VK
#endif
#ifndef VK_BACK
# define VK_BACK UNDEFINED_VK
#endif
#ifndef VK_TAB
# define VK_TAB UNDEFINED_VK
#endif
#ifndef VK_CLEAR
# define VK_CLEAR UNDEFINED_VK
#endif
#ifndef VK_RETURN
# define VK_RETURN UNDEFINED_VK
#endif
#ifndef VK_SHIFT
# define VK_SHIFT UNDEFINED_VK
#endif
#ifndef VK_CONTROL
# define VK_CONTROL UNDEFINED_VK
#endif
#ifndef VK_MENU
# define VK_MENU UNDEFINED_VK
#endif
#ifndef VK_PAUSE
# define VK_PAUSE UNDEFINED_VK
#endif
#ifndef VK_CAPITAL
# define VK_CAPITAL UNDEFINED_VK
#endif
#ifndef VK_KANA
# define VK_KANA UNDEFINED_VK
#endif
#ifndef VK_HANGEUL
# define VK_HANGEUL UNDEFINED_VK
#endif
#ifndef VK_HANGUL
# define VK_HANGUL UNDEFINED_VK
#endif
#ifndef VK_JUNJA
# define VK_JUNJA UNDEFINED_VK
#endif
#ifndef VK_FINAL
# define VK_FINAL UNDEFINED_VK
#endif
#ifndef VK_HANJA
# define VK_HANJA UNDEFINED_VK
#endif
#ifndef VK_KANJI
# define VK_KANJI UNDEFINED_VK
#endif
#ifndef VK_ESCAPE
# define VK_ESCAPE UNDEFINED_VK
#endif
#ifndef VK_CONVERT
# define VK_CONVERT UNDEFINED_VK
#endif
#ifndef VK_NONCONVERT
# define VK_NONCONVERT UNDEFINED_VK
#endif
#ifndef VK_ACCEPT
# define VK_ACCEPT UNDEFINED_VK
#endif
#ifndef VK_MODECHANGE
# define VK_MODECHANGE UNDEFINED_VK
#endif
#ifndef VK_SPACE
# define VK_SPACE UNDEFINED_VK
#endif
#ifndef VK_PRIOR
# define VK_PRIOR UNDEFINED_VK
#endif
#ifndef VK_NEXT
# define VK_NEXT UNDEFINED_VK
#endif
#ifndef VK_END
# define VK_END UNDEFINED_VK
#endif
#ifndef VK_HOME
# define VK_HOME UNDEFINED_VK
#endif
#ifndef VK_LEFT
# define VK_LEFT UNDEFINED_VK
#endif
#ifndef VK_UP
# define VK_UP UNDEFINED_VK
#endif
#ifndef VK_RIGHT
# define VK_RIGHT UNDEFINED_VK
#endif
#ifndef VK_DOWN
# define VK_DOWN UNDEFINED_VK
#endif
#ifndef VK_SELECT
# define VK_SELECT UNDEFINED_VK
#endif
#ifndef VK_PRINT
# define VK_PRINT UNDEFINED_VK
#endif
#ifndef VK_EXECUTE
# define VK_EXECUTE UNDEFINED_VK
#endif
#ifndef VK_SNAPSHOT
# define VK_SNAPSHOT UNDEFINED_VK
#endif
#ifndef VK_INSERT
# define VK_INSERT UNDEFINED_VK
#endif
#ifndef VK_DELETE
# define VK_DELETE UNDEFINED_VK
#endif
#ifndef VK_HELP
# define VK_HELP UNDEFINED_VK
#endif
#ifndef VK_LWIN
# define VK_LWIN UNDEFINED_VK
#endif
#ifndef VK_RWIN
# define VK_RWIN UNDEFINED_VK
#endif
#ifndef VK_APPS
# define VK_APPS UNDEFINED_VK
#endif
#ifndef VK_SLEEP
# define VK_SLEEP UNDEFINED_VK
#endif
#ifndef VK_NUMPAD0
# define VK_NUMPAD0 UNDEFINED_VK
#endif
#ifndef VK_NUMPAD1
# define VK_NUMPAD1 UNDEFINED_VK
#endif
#ifndef VK_NUMPAD2
# define VK_NUMPAD2 UNDEFINED_VK
#endif
#ifndef VK_NUMPAD3
# define VK_NUMPAD3 UNDEFINED_VK
#endif
#ifndef VK_NUMPAD4
# define VK_NUMPAD4 UNDEFINED_VK
#endif
#ifndef VK_NUMPAD5
# define VK_NUMPAD5 UNDEFINED_VK
#endif
#ifndef VK_NUMPAD6
# define VK_NUMPAD6 UNDEFINED_VK
#endif
#ifndef VK_NUMPAD7
# define VK_NUMPAD7 UNDEFINED_VK
#endif
#ifndef VK_NUMPAD8
# define VK_NUMPAD8 UNDEFINED_VK
#endif
#ifndef VK_NUMPAD9
# define VK_NUMPAD9 UNDEFINED_VK
#endif
#ifndef VK_MULTIPLY
# define VK_MULTIPLY UNDEFINED_VK
#endif
#ifndef VK_ADD
# define VK_ADD UNDEFINED_VK
#endif
#ifndef VK_SEPARATOR
# define VK_SEPARATOR UNDEFINED_VK
#endif
#ifndef VK_SUBTRACT
# define VK_SUBTRACT UNDEFINED_VK
#endif
#ifndef VK_DECIMAL
# define VK_DECIMAL UNDEFINED_VK
#endif
#ifndef VK_DIVIDE
# define VK_DIVIDE UNDEFINED_VK
#endif
#ifndef VK_F1
# define VK_F1 UNDEFINED_VK
#endif
#ifndef VK_F2
# define VK_F2 UNDEFINED_VK
#endif
#ifndef VK_F3
# define VK_F3 UNDEFINED_VK
#endif
#ifndef VK_F4
# define VK_F4 UNDEFINED_VK
#endif
#ifndef VK_F5
# define VK_F5 UNDEFINED_VK
#endif
#ifndef VK_F6
# define VK_F6 UNDEFINED_VK
#endif
#ifndef VK_F7
# define VK_F7 UNDEFINED_VK
#endif
#ifndef VK_F8
# define VK_F8 UNDEFINED_VK
#endif
#ifndef VK_F9
# define VK_F9 UNDEFINED_VK
#endif
#ifndef VK_F10
# define VK_F10 UNDEFINED_VK
#endif
#ifndef VK_F11
# define VK_F11 UNDEFINED_VK
#endif
#ifndef VK_F12
# define VK_F12 UNDEFINED_VK
#endif
#ifndef VK_F13
# define VK_F13 UNDEFINED_VK
#endif
#ifndef VK_F14
# define VK_F14 UNDEFINED_VK
#endif
#ifndef VK_F15
# define VK_F15 UNDEFINED_VK
#endif
#ifndef VK_F16
# define VK_F16 UNDEFINED_VK
#endif
#ifndef VK_F17
# define VK_F17 UNDEFINED_VK
#endif
#ifndef VK_F18
# define VK_F18 UNDEFINED_VK
#endif
#ifndef VK_F19
# define VK_F19 UNDEFINED_VK
#endif
#ifndef VK_F20
# define VK_F20 UNDEFINED_VK
#endif
#ifndef VK_F21
# define VK_F21 UNDEFINED_VK
#endif
#ifndef VK_F22
# define VK_F22 UNDEFINED_VK
#endif
#ifndef VK_F23
# define VK_F23 UNDEFINED_VK
#endif
#ifndef VK_F24
# define VK_F24 UNDEFINED_VK
#endif
#ifndef VK_NUMLOCK
# define VK_NUMLOCK UNDEFINED_VK
#endif
#ifndef VK_SCROLL
# define VK_SCROLL UNDEFINED_VK
#endif
#ifndef VK_OEM_NEC_EQUAL
# define VK_OEM_NEC_EQUAL UNDEFINED_VK
#endif
#ifndef VK_OEM_FJ_JISHO
# define VK_OEM_FJ_JISHO UNDEFINED_VK
#endif
#ifndef VK_OEM_FJ_MASSHOU
# define VK_OEM_FJ_MASSHOU UNDEFINED_VK
#endif
#ifndef VK_OEM_FJ_TOUROKU
# define VK_OEM_FJ_TOUROKU UNDEFINED_VK
#endif
#ifndef VK_OEM_FJ_LOYA
# define VK_OEM_FJ_LOYA UNDEFINED_VK
#endif
#ifndef VK_OEM_FJ_ROYA
# define VK_OEM_FJ_ROYA UNDEFINED_VK
#endif
#ifndef VK_LSHIFT
# define VK_LSHIFT UNDEFINED_VK
#endif
#ifndef VK_RSHIFT
# define VK_RSHIFT UNDEFINED_VK
#endif
#ifndef VK_LCONTROL
# define VK_LCONTROL UNDEFINED_VK
#endif
#ifndef VK_RCONTROL
# define VK_RCONTROL UNDEFINED_VK
#endif
#ifndef VK_LMENU
# define VK_LMENU UNDEFINED_VK
#endif
#ifndef VK_RMENU
# define VK_RMENU UNDEFINED_VK
#endif
#ifndef VK_BROWSER_BACK
# define VK_BROWSER_BACK UNDEFINED_VK
#endif
#ifndef VK_BROWSER_FORWARD
# define VK_BROWSER_FORWARD UNDEFINED_VK
#endif
#ifndef VK_BROWSER_REFRESH
# define VK_BROWSER_REFRESH UNDEFINED_VK
#endif
#ifndef VK_BROWSER_STOP
# define VK_BROWSER_STOP UNDEFINED_VK
#endif
#ifndef VK_BROWSER_SEARCH
# define VK_BROWSER_SEARCH UNDEFINED_VK
#endif
#ifndef VK_BROWSER_FAVORITES
# define VK_BROWSER_FAVORITES UNDEFINED_VK
#endif
#ifndef VK_BROWSER_HOME
# define VK_BROWSER_HOME UNDEFINED_VK
#endif
#ifndef VK_VOLUME_MUTE
# define VK_VOLUME_MUTE UNDEFINED_VK
#endif
#ifndef VK_VOLUME_DOWN
# define VK_VOLUME_DOWN UNDEFINED_VK
#endif
#ifndef VK_VOLUME_UP
# define VK_VOLUME_UP UNDEFINED_VK
#endif
#ifndef VK_MEDIA_NEXT_TRACK
# define VK_MEDIA_NEXT_TRACK UNDEFINED_VK
#endif
#ifndef VK_MEDIA_PREV_TRACK
# define VK_MEDIA_PREV_TRACK UNDEFINED_VK
#endif
#ifndef VK_MEDIA_STOP
# define VK_MEDIA_STOP UNDEFINED_VK
#endif
#ifndef VK_MEDIA_PLAY_PAUSE
# define VK_MEDIA_PLAY_PAUSE UNDEFINED_VK
#endif
#ifndef VK_LAUNCH_MAIL
# define VK_LAUNCH_MAIL UNDEFINED_VK
#endif
#ifndef VK_LAUNCH_MEDIA_SELECT
# define VK_LAUNCH_MEDIA_SELECT UNDEFINED_VK
#endif
#ifndef VK_LAUNCH_APP1
# define VK_LAUNCH_APP1 UNDEFINED_VK
#endif
#ifndef VK_LAUNCH_APP2
# define VK_LAUNCH_APP2 UNDEFINED_VK
#endif
#ifndef VK_OEM_1
# define VK_OEM_1 UNDEFINED_VK
#endif
#ifndef VK_OEM_PLUS
# define VK_OEM_PLUS UNDEFINED_VK
#endif
#ifndef VK_OEM_COMMA
# define VK_OEM_COMMA UNDEFINED_VK
#endif
#ifndef VK_OEM_MINUS
# define VK_OEM_MINUS UNDEFINED_VK
#endif
#ifndef VK_OEM_PERIOD
# define VK_OEM_PERIOD UNDEFINED_VK
#endif
#ifndef VK_OEM_2
# define VK_OEM_2 UNDEFINED_VK
#endif
#ifndef VK_OEM_3
# define VK_OEM_3 UNDEFINED_VK
#endif
#ifndef VK_OEM_4
# define VK_OEM_4 UNDEFINED_VK
#endif
#ifndef VK_OEM_5
# define VK_OEM_5 UNDEFINED_VK
#endif
#ifndef VK_OEM_6
# define VK_OEM_6 UNDEFINED_VK
#endif
#ifndef VK_OEM_7
# define VK_OEM_7 UNDEFINED_VK
#endif
#ifndef VK_OEM_8
# define VK_OEM_8 UNDEFINED_VK
#endif
#ifndef VK_OEM_AX
# define VK_OEM_AX UNDEFINED_VK
#endif
#ifndef VK_OEM_102
# define VK_OEM_102 UNDEFINED_VK
#endif
#ifndef VK_ICO_HELP
# define VK_ICO_HELP UNDEFINED_VK
#endif
#ifndef VK_ICO_00
# define VK_ICO_00 UNDEFINED_VK
#endif
#ifndef VK_PROCESSKEY
# define VK_PROCESSKEY UNDEFINED_VK
#endif
#ifndef VK_ICO_CLEAR
# define VK_ICO_CLEAR UNDEFINED_VK
#endif
#ifndef VK_PACKET
# define VK_PACKET UNDEFINED_VK
#endif
#ifndef VK_OEM_RESET
# define VK_OEM_RESET UNDEFINED_VK
#endif
#ifndef VK_OEM_JUMP
# define VK_OEM_JUMP UNDEFINED_VK
#endif
#ifndef VK_OEM_PA1
# define VK_OEM_PA1 UNDEFINED_VK
#endif
#ifndef VK_OEM_PA2
# define VK_OEM_PA2 UNDEFINED_VK
#endif
#ifndef VK_OEM_PA3
# define VK_OEM_PA3 UNDEFINED_VK
#endif
#ifndef VK_OEM_WSCTRL
# define VK_OEM_WSCTRL UNDEFINED_VK
#endif
#ifndef VK_OEM_CUSEL
# define VK_OEM_CUSEL UNDEFINED_VK
#endif
#ifndef VK_OEM_ATTN
# define VK_OEM_ATTN UNDEFINED_VK
#endif
#ifndef VK_OEM_FINISH
# define VK_OEM_FINISH UNDEFINED_VK
#endif
#ifndef VK_OEM_COPY
# define VK_OEM_COPY UNDEFINED_VK
#endif
#ifndef VK_OEM_AUTO
# define VK_OEM_AUTO UNDEFINED_VK
#endif
#ifndef VK_OEM_ENLW
# define VK_OEM_ENLW UNDEFINED_VK
#endif
#ifndef VK_OEM_BACKTAB
# define VK_OEM_BACKTAB UNDEFINED_VK
#endif
#ifndef VK_ATTN
# define VK_ATTN UNDEFINED_VK
#endif
#ifndef VK_CRSEL
# define VK_CRSEL UNDEFINED_VK
#endif
#ifndef VK_EXSEL
# define VK_EXSEL UNDEFINED_VK
#endif
#ifndef VK_EREOF
# define VK_EREOF UNDEFINED_VK
#endif
#ifndef VK_PLAY
# define VK_PLAY UNDEFINED_VK
#endif
#ifndef VK_ZOOM
# define VK_ZOOM UNDEFINED_VK
#endif
#ifndef VK_NONAME
# define VK_NONAME UNDEFINED_VK
#endif
#ifndef VK_PA1
# define VK_PA1 UNDEFINED_VK
#endif
#ifndef VK_OEM_CLEAR
# define VK_OEM_CLEAR UNDEFINED_VK
#endif
/* ANSI-C code produced by gperf version 3.1 */
/* Command-line: gperf --ignore-case -E -C -P -p -j1 -i 1 -g -o -t -K ofs -N console_win32_vk -k'*' win32_vk.list  */

#if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \
      && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \
      && (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \
      && ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \
      && ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \
      && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \
      && ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \
      && ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \
      && ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \
      && ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \
      && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \
      && ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \
      && ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \
      && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \
      && ('Z' == 90) && ('[' == 91) && ('\\' == 92) && (']' == 93) \
      && ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \
      && ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \
      && ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \
      && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \
      && ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \
      && ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \
      && ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \
      && ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126))
/* The character set is not based on ISO-646.  */
#error "gperf generated tables don't work with this execution character set. Please report a bug to <bug-gperf@gnu.org>."
#endif

#define gperf_offsetof(s, n) (short)offsetof(struct s##_t, s##_str##n)
#line 1 "win32_vk.list"

struct vktable {short ofs; unsigned short vk;};
static const struct vktable *console_win32_vk(/*const char *, unsigned int*/);
#line 5 "win32_vk.list"
struct vktable;
/* maximum key range = 245, duplicates = 0 */

#ifndef GPERF_DOWNCASE
#define GPERF_DOWNCASE 1
static unsigned char gperf_downcase[256] =
  {
      0,   1,   2,   3,   4,   5,   6,   7,   8,   9,  10,  11,  12,  13,  14,
     15,  16,  17,  18,  19,  20,  21,  22,  23,  24,  25,  26,  27,  28,  29,
     30,  31,  32,  33,  34,  35,  36,  37,  38,  39,  40,  41,  42,  43,  44,
     45,  46,  47,  48,  49,  50,  51,  52,  53,  54,  55,  56,  57,  58,  59,
     60,  61,  62,  63,  64,  97,  98,  99, 100, 101, 102, 103, 104, 105, 106,
    107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
    122,  91,  92,  93,  94,  95,  96,  97,  98,  99, 100, 101, 102, 103, 104,
    105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
    120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
    135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
    150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
    165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
    180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194,
    195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209,
    210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224,
    225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
    240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254,
    255
  };
#endif

#ifndef GPERF_CASE_STRCMP
#define GPERF_CASE_STRCMP 1
static int
gperf_case_strcmp (register const char *s1, register const char *s2)
{
  for (;;)
    {
      unsigned char c1 = gperf_downcase[(unsigned char)*s1++];
      unsigned char c2 = gperf_downcase[(unsigned char)*s2++];
      if (c1 != 0 && c1 == c2)
        continue;
      return (int)c1 - (int)c2;
    }
}
#endif

#ifdef __GNUC__
__inline
#else
#ifdef __cplusplus
inline
#endif
#endif
static unsigned int
hash (register const char *str, register size_t len)
{
  static const unsigned short asso_values[] =
    {
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257,  51,  74,
       80, 116, 127, 124,  95, 140,  77,  53,   7,   3,
      257, 257, 257, 257, 257,   1,  11,   1,  55,   1,
       25,  84,  31,  33,  13,  16,   2,  28,   8,   1,
        6,  10,   1,   1,   3,   4,  45,  18,  73,  79,
       30, 257, 257, 257, 257,   5, 257,   1,  11,   1,
       55,   1,  25,  84,  31,  33,  13,  16,   2,  28,
        8,   1,   6,  10,   1,   1,   3,   4,  45,  18,
       73,  79,  30, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
      257, 257, 257, 257, 257, 257, 257, 257
    };
  register unsigned int hval = (unsigned int)len;

  switch (hval)
    {
      default:
        hval += asso_values[(unsigned char)str[18]];
      /*FALLTHROUGH*/
      case 18:
        hval += asso_values[(unsigned char)str[17]];
      /*FALLTHROUGH*/
      case 17:
        hval += asso_values[(unsigned char)str[16]];
      /*FALLTHROUGH*/
      case 16:
        hval += asso_values[(unsigned char)str[15]];
      /*FALLTHROUGH*/
      case 15:
        hval += asso_values[(unsigned char)str[14]];
      /*FALLTHROUGH*/
      case 14:
        hval += asso_values[(unsigned char)str[13]];
      /*FALLTHROUGH*/
      case 13:
        hval += asso_values[(unsigned char)str[12]];
      /*FALLTHROUGH*/
      case 12:
        hval += asso_values[(unsigned char)str[11]];
      /*FALLTHROUGH*/
      case 11:
        hval += asso_values[(unsigned char)str[10]];
      /*FALLTHROUGH*/
      case 10:
        hval += asso_values[(unsigned char)str[9]];
      /*FALLTHROUGH*/
      case 9:
        hval += asso_values[(unsigned char)str[8]];
      /*FALLTHROUGH*/
      case 8:
        hval += asso_values[(unsigned char)str[7]];
      /*FALLTHROUGH*/
      case 7:
        hval += asso_values[(unsigned char)str[6]];
      /*FALLTHROUGH*/
      case 6:
        hval += asso_values[(unsigned char)str[5]];
      /*FALLTHROUGH*/
      case 5:
        hval += asso_values[(unsigned char)str[4]];
      /*FALLTHROUGH*/
      case 4:
        hval += asso_values[(unsigned char)str[3]];
      /*FALLTHROUGH*/
      case 3:
        hval += asso_values[(unsigned char)str[2]+2];
      /*FALLTHROUGH*/
      case 2:
        hval += asso_values[(unsigned char)str[1]];
      /*FALLTHROUGH*/
      case 1:
        hval += asso_values[(unsigned char)str[0]];
        break;
    }
  return (unsigned int)hval;
}

struct stringpool_t
  {
    char stringpool_str12[sizeof("UP")];
    char stringpool_str13[sizeof("APPS")];
    char stringpool_str14[sizeof("CRSEL")];
    char stringpool_str15[sizeof("SPACE")];
    char stringpool_str16[sizeof("SCROLL")];
    char stringpool_str17[sizeof("ESCAPE")];
    char stringpool_str18[sizeof("CANCEL")];
    char stringpool_str19[sizeof("ACCEPT")];
    char stringpool_str20[sizeof("SEPARATOR")];
    char stringpool_str21[sizeof("SELECT")];
    char stringpool_str22[sizeof("CONTROL")];
    char stringpool_str23[sizeof("OEM_CLEAR")];
    char stringpool_str24[sizeof("OEM_RESET")];
    char stringpool_str25[sizeof("OEM_AUTO")];
    char stringpool_str26[sizeof("OEM_CUSEL")];
    char stringpool_str28[sizeof("KANA")];
    char stringpool_str29[sizeof("OEM_PLUS")];
    char stringpool_str30[sizeof("PRIOR")];
    char stringpool_str31[sizeof("OEM_ATTN")];
    char stringpool_str32[sizeof("PAUSE")];
    char stringpool_str33[sizeof("BACK")];
    char stringpool_str34[sizeof("PACKET")];
    char stringpool_str35[sizeof("RCONTROL")];
    char stringpool_str36[sizeof("LCONTROL")];
    char stringpool_str37[sizeof("END")];
    char stringpool_str38[sizeof("HOME")];
    char stringpool_str39[sizeof("PRINT")];
    char stringpool_str40[sizeof("NUMLOCK")];
    char stringpool_str41[sizeof("LEFT")];
    char stringpool_str42[sizeof("JUNJA")];
    char stringpool_str43[sizeof("MENU")];
    char stringpool_str44[sizeof("OEM_WSCTRL")];
    char stringpool_str45[sizeof("OEM_ENLW")];
    char stringpool_str46[sizeof("NEXT")];
    char stringpool_str47[sizeof("RWIN")];
    char stringpool_str48[sizeof("LWIN")];
    char stringpool_str49[sizeof("CAPITAL")];
    char stringpool_str50[sizeof("HELP")];
    char stringpool_str51[sizeof("NONAME")];
    char stringpool_str52[sizeof("RBUTTON")];
    char stringpool_str53[sizeof("LBUTTON")];
    char stringpool_str54[sizeof("OEM_NEC_EQUAL")];
    char stringpool_str56[sizeof("INSERT")];
    char stringpool_str57[sizeof("HANJA")];
    char stringpool_str60[sizeof("SNAPSHOT")];
    char stringpool_str61[sizeof("ATTN")];
    char stringpool_str62[sizeof("TAB")];
    char stringpool_str63[sizeof("OEM_BACKTAB")];
    char stringpool_str64[sizeof("ICO_CLEAR")];
    char stringpool_str65[sizeof("CONVERT")];
    char stringpool_str66[sizeof("RETURN")];
    char stringpool_str67[sizeof("OEM_JUMP")];
    char stringpool_str71[sizeof("BROWSER_STOP")];
    char stringpool_str72[sizeof("FINAL")];
    char stringpool_str73[sizeof("ZOOM")];
    char stringpool_str74[sizeof("KANJI")];
    char stringpool_str75[sizeof("DELETE")];
    char stringpool_str76[sizeof("OEM_COMMA")];
    char stringpool_str77[sizeof("SUBTRACT")];
    char stringpool_str79[sizeof("MBUTTON")];
    char stringpool_str80[sizeof("F9")];
    char stringpool_str81[sizeof("SHIFT")];
    char stringpool_str82[sizeof("RSHIFT")];
    char stringpool_str83[sizeof("LSHIFT")];
    char stringpool_str84[sizeof("ADD")];
    char stringpool_str85[sizeof("NONCONVERT")];
    char stringpool_str86[sizeof("EXSEL")];
    char stringpool_str87[sizeof("OEM_1")];
    char stringpool_str88[sizeof("OEM_AX")];
    char stringpool_str89[sizeof("BROWSER_BACK")];
    char stringpool_str90[sizeof("OEM_8")];
    char stringpool_str91[sizeof("OEM_MINUS")];
    char stringpool_str92[sizeof("PLAY")];
    char stringpool_str93[sizeof("OEM_2")];
    char stringpool_str94[sizeof("CLEAR")];
    char stringpool_str95[sizeof("OEM_FJ_TOUROKU")];
    char stringpool_str96[sizeof("OEM_PA1")];
    char stringpool_str97[sizeof("ICO_HELP")];
    char stringpool_str98[sizeof("BROWSER_SEARCH")];
    char stringpool_str99[sizeof("SLEEP")];
    char stringpool_str101[sizeof("F1")];
    char stringpool_str102[sizeof("OEM_PA2")];
    char stringpool_str103[sizeof("OEM_COPY")];
    char stringpool_str104[sizeof("F8")];
    char stringpool_str105[sizeof("F19")];
    char stringpool_str106[sizeof("RIGHT")];
    char stringpool_str107[sizeof("F2")];
    char stringpool_str108[sizeof("OEM_6")];
    char stringpool_str109[sizeof("F18")];
    char stringpool_str111[sizeof("VOLUME_UP")];
    char stringpool_str114[sizeof("MEDIA_STOP")];
    char stringpool_str115[sizeof("OEM_PERIOD")];
    char stringpool_str117[sizeof("EREOF")];
    char stringpool_str121[sizeof("BROWSER_HOME")];
    char stringpool_str122[sizeof("F6")];
    char stringpool_str124[sizeof("BROWSER_REFRESH")];
    char stringpool_str126[sizeof("PA1")];
    char stringpool_str127[sizeof("PROCESSKEY")];
    char stringpool_str128[sizeof("DECIMAL")];
    char stringpool_str129[sizeof("OEM_3")];
    char stringpool_str130[sizeof("RMENU")];
    char stringpool_str131[sizeof("LMENU")];
    char stringpool_str132[sizeof("OEM_FJ_MASSHOU")];
    char stringpool_str133[sizeof("NUMPAD0")];
    char stringpool_str134[sizeof("HANGUL")];
    char stringpool_str135[sizeof("NUMPAD9")];
    char stringpool_str136[sizeof("HANGEUL")];
    char stringpool_str137[sizeof("OEM_5")];
    char stringpool_str138[sizeof("OEM_PA3")];
    char stringpool_str139[sizeof("VOLUME_MUTE")];
    char stringpool_str140[sizeof("OEM_4")];
    char stringpool_str141[sizeof("LAUNCH_MAIL")];
    char stringpool_str142[sizeof("OEM_FJ_JISHO")];
    char stringpool_str143[sizeof("F3")];
    char stringpool_str144[sizeof("OEM_FJ_ROYA")];
    char stringpool_str145[sizeof("OEM_FJ_LOYA")];
    char stringpool_str147[sizeof("DOWN")];
    char stringpool_str149[sizeof("OEM_FINISH")];
    char stringpool_str151[sizeof("F5")];
    char stringpool_str153[sizeof("OEM_7")];
    char stringpool_str154[sizeof("F4")];
    char stringpool_str155[sizeof("F17")];
    char stringpool_str156[sizeof("NUMPAD1")];
    char stringpool_str157[sizeof("ICO_00")];
    char stringpool_str159[sizeof("NUMPAD8")];
    char stringpool_str162[sizeof("NUMPAD2")];
    char stringpool_str164[sizeof("LAUNCH_APP1")];
    char stringpool_str165[sizeof("BROWSER_FORWARD")];
    char stringpool_str167[sizeof("F7")];
    char stringpool_str170[sizeof("LAUNCH_APP2")];
    char stringpool_str171[sizeof("MULTIPLY")];
    char stringpool_str174[sizeof("EXECUTE")];
    char stringpool_str176[sizeof("BROWSER_FAVORITES")];
    char stringpool_str177[sizeof("NUMPAD6")];
    char stringpool_str179[sizeof("F16")];
    char stringpool_str182[sizeof("F10")];
    char stringpool_str185[sizeof("VOLUME_DOWN")];
    char stringpool_str188[sizeof("F20")];
    char stringpool_str189[sizeof("MEDIA_PREV_TRACK")];
    char stringpool_str191[sizeof("MODECHANGE")];
    char stringpool_str197[sizeof("F14")];
    char stringpool_str198[sizeof("NUMPAD3")];
    char stringpool_str199[sizeof("XBUTTON1")];
    char stringpool_str203[sizeof("F24")];
    char stringpool_str205[sizeof("XBUTTON2")];
    char stringpool_str206[sizeof("NUMPAD5")];
    char stringpool_str209[sizeof("NUMPAD4")];
    char stringpool_str215[sizeof("MEDIA_PLAY_PAUSE")];
    char stringpool_str217[sizeof("LAUNCH_MEDIA_SELECT")];
    char stringpool_str218[sizeof("F11")];
    char stringpool_str220[sizeof("OEM_102")];
    char stringpool_str221[sizeof("MEDIA_NEXT_TRACK")];
    char stringpool_str222[sizeof("NUMPAD7")];
    char stringpool_str224[sizeof("F21")];
    char stringpool_str226[sizeof("F13")];
    char stringpool_str229[sizeof("F12")];
    char stringpool_str232[sizeof("F23")];
    char stringpool_str235[sizeof("F22")];
    char stringpool_str242[sizeof("F15")];
    char stringpool_str256[sizeof("DIVIDE")];
  };
static const struct stringpool_t stringpool_contents =
  {
    "UP",
    "APPS",
    "CRSEL",
    "SPACE",
    "SCROLL",
    "ESCAPE",
    "CANCEL",
    "ACCEPT",
    "SEPARATOR",
    "SELECT",
    "CONTROL",
    "OEM_CLEAR",
    "OEM_RESET",
    "OEM_AUTO",
    "OEM_CUSEL",
    "KANA",
    "OEM_PLUS",
    "PRIOR",
    "OEM_ATTN",
    "PAUSE",
    "BACK",
    "PACKET",
    "RCONTROL",
    "LCONTROL",
    "END",
    "HOME",
    "PRINT",
    "NUMLOCK",
    "LEFT",
    "JUNJA",
    "MENU",
    "OEM_WSCTRL",
    "OEM_ENLW",
    "NEXT",
    "RWIN",
    "LWIN",
    "CAPITAL",
    "HELP",
    "NONAME",
    "RBUTTON",
    "LBUTTON",
    "OEM_NEC_EQUAL",
    "INSERT",
    "HANJA",
    "SNAPSHOT",
    "ATTN",
    "TAB",
    "OEM_BACKTAB",
    "ICO_CLEAR",
    "CONVERT",
    "RETURN",
    "OEM_JUMP",
    "BROWSER_STOP",
    "FINAL",
    "ZOOM",
    "KANJI",
    "DELETE",
    "OEM_COMMA",
    "SUBTRACT",
    "MBUTTON",
    "F9",
    "SHIFT",
    "RSHIFT",
    "LSHIFT",
    "ADD",
    "NONCONVERT",
    "EXSEL",
    "OEM_1",
    "OEM_AX",
    "BROWSER_BACK",
    "OEM_8",
    "OEM_MINUS",
    "PLAY",
    "OEM_2",
    "CLEAR",
    "OEM_FJ_TOUROKU",
    "OEM_PA1",
    "ICO_HELP",
    "BROWSER_SEARCH",
    "SLEEP",
    "F1",
    "OEM_PA2",
    "OEM_COPY",
    "F8",
    "F19",
    "RIGHT",
    "F2",
    "OEM_6",
    "F18",
    "VOLUME_UP",
    "MEDIA_STOP",
    "OEM_PERIOD",
    "EREOF",
    "BROWSER_HOME",
    "F6",
    "BROWSER_REFRESH",
    "PA1",
    "PROCESSKEY",
    "DECIMAL",
    "OEM_3",
    "RMENU",
    "LMENU",
    "OEM_FJ_MASSHOU",
    "NUMPAD0",
    "HANGUL",
    "NUMPAD9",
    "HANGEUL",
    "OEM_5",
    "OEM_PA3",
    "VOLUME_MUTE",
    "OEM_4",
    "LAUNCH_MAIL",
    "OEM_FJ_JISHO",
    "F3",
    "OEM_FJ_ROYA",
    "OEM_FJ_LOYA",
    "DOWN",
    "OEM_FINISH",
    "F5",
    "OEM_7",
    "F4",
    "F17",
    "NUMPAD1",
    "ICO_00",
    "NUMPAD8",
    "NUMPAD2",
    "LAUNCH_APP1",
    "BROWSER_FORWARD",
    "F7",
    "LAUNCH_APP2",
    "MULTIPLY",
    "EXECUTE",
    "BROWSER_FAVORITES",
    "NUMPAD6",
    "F16",
    "F10",
    "VOLUME_DOWN",
    "F20",
    "MEDIA_PREV_TRACK",
    "MODECHANGE",
    "F14",
    "NUMPAD3",
    "XBUTTON1",
    "F24",
    "XBUTTON2",
    "NUMPAD5",
    "NUMPAD4",
    "MEDIA_PLAY_PAUSE",
    "LAUNCH_MEDIA_SELECT",
    "F11",
    "OEM_102",
    "MEDIA_NEXT_TRACK",
    "NUMPAD7",
    "F21",
    "F13",
    "F12",
    "F23",
    "F22",
    "F15",
    "DIVIDE"
  };
#define stringpool ((const char *) &stringpool_contents)
const struct vktable *
console_win32_vk (register const char *str, register size_t len)
{
  enum
    {
      TOTAL_KEYWORDS = 160,
      MIN_WORD_LENGTH = 2,
      MAX_WORD_LENGTH = 19,
      MIN_HASH_VALUE = 12,
      MAX_HASH_VALUE = 256
    };

  static const struct vktable wordlist[] =
    {
      {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},
      {-1}, {-1}, {-1},
#line 40 "win32_vk.list"
      {gperf_offsetof(stringpool, 12), VK_UP},
#line 52 "win32_vk.list"
      {gperf_offsetof(stringpool, 13), VK_APPS},
#line 159 "win32_vk.list"
      {gperf_offsetof(stringpool, 14), VK_CRSEL},
#line 34 "win32_vk.list"
      {gperf_offsetof(stringpool, 15), VK_SPACE},
#line 95 "win32_vk.list"
      {gperf_offsetof(stringpool, 16), VK_SCROLL},
#line 29 "win32_vk.list"
      {gperf_offsetof(stringpool, 17), VK_ESCAPE},
#line 9 "win32_vk.list"
      {gperf_offsetof(stringpool, 18), VK_CANCEL},
#line 32 "win32_vk.list"
      {gperf_offsetof(stringpool, 19), VK_ACCEPT},
#line 66 "win32_vk.list"
      {gperf_offsetof(stringpool, 20), VK_SEPARATOR},
#line 43 "win32_vk.list"
      {gperf_offsetof(stringpool, 21), VK_SELECT},
#line 18 "win32_vk.list"
      {gperf_offsetof(stringpool, 22), VK_CONTROL},
#line 166 "win32_vk.list"
      {gperf_offsetof(stringpool, 23), VK_OEM_CLEAR},
#line 145 "win32_vk.list"
      {gperf_offsetof(stringpool, 24), VK_OEM_RESET},
#line 155 "win32_vk.list"
      {gperf_offsetof(stringpool, 25), VK_OEM_AUTO},
#line 151 "win32_vk.list"
      {gperf_offsetof(stringpool, 26), VK_OEM_CUSEL},
      {-1},
#line 22 "win32_vk.list"
      {gperf_offsetof(stringpool, 28), VK_KANA},
#line 127 "win32_vk.list"
      {gperf_offsetof(stringpool, 29), VK_OEM_PLUS},
#line 35 "win32_vk.list"
      {gperf_offsetof(stringpool, 30), VK_PRIOR},
#line 152 "win32_vk.list"
      {gperf_offsetof(stringpool, 31), VK_OEM_ATTN},
#line 20 "win32_vk.list"
      {gperf_offsetof(stringpool, 32), VK_PAUSE},
#line 13 "win32_vk.list"
      {gperf_offsetof(stringpool, 33), VK_BACK},
#line 144 "win32_vk.list"
      {gperf_offsetof(stringpool, 34), VK_PACKET},
#line 105 "win32_vk.list"
      {gperf_offsetof(stringpool, 35), VK_RCONTROL},
#line 104 "win32_vk.list"
      {gperf_offsetof(stringpool, 36), VK_LCONTROL},
#line 37 "win32_vk.list"
      {gperf_offsetof(stringpool, 37), VK_END},
#line 38 "win32_vk.list"
      {gperf_offsetof(stringpool, 38), VK_HOME},
#line 44 "win32_vk.list"
      {gperf_offsetof(stringpool, 39), VK_PRINT},
#line 94 "win32_vk.list"
      {gperf_offsetof(stringpool, 40), VK_NUMLOCK},
#line 39 "win32_vk.list"
      {gperf_offsetof(stringpool, 41), VK_LEFT},
#line 25 "win32_vk.list"
      {gperf_offsetof(stringpool, 42), VK_JUNJA},
#line 19 "win32_vk.list"
      {gperf_offsetof(stringpool, 43), VK_MENU},
#line 150 "win32_vk.list"
      {gperf_offsetof(stringpool, 44), VK_OEM_WSCTRL},
#line 156 "win32_vk.list"
      {gperf_offsetof(stringpool, 45), VK_OEM_ENLW},
#line 36 "win32_vk.list"
      {gperf_offsetof(stringpool, 46), VK_NEXT},
#line 51 "win32_vk.list"
      {gperf_offsetof(stringpool, 47), VK_RWIN},
#line 50 "win32_vk.list"
      {gperf_offsetof(stringpool, 48), VK_LWIN},
#line 21 "win32_vk.list"
      {gperf_offsetof(stringpool, 49), VK_CAPITAL},
#line 49 "win32_vk.list"
      {gperf_offsetof(stringpool, 50), VK_HELP},
#line 164 "win32_vk.list"
      {gperf_offsetof(stringpool, 51), VK_NONAME},
#line 8 "win32_vk.list"
      {gperf_offsetof(stringpool, 52), VK_RBUTTON},
#line 7 "win32_vk.list"
      {gperf_offsetof(stringpool, 53), VK_LBUTTON},
#line 96 "win32_vk.list"
      {gperf_offsetof(stringpool, 54), VK_OEM_NEC_EQUAL},
      {-1},
#line 47 "win32_vk.list"
      {gperf_offsetof(stringpool, 56), VK_INSERT},
#line 27 "win32_vk.list"
      {gperf_offsetof(stringpool, 57), VK_HANJA},
      {-1}, {-1},
#line 46 "win32_vk.list"
      {gperf_offsetof(stringpool, 60), VK_SNAPSHOT},
#line 158 "win32_vk.list"
      {gperf_offsetof(stringpool, 61), VK_ATTN},
#line 14 "win32_vk.list"
      {gperf_offsetof(stringpool, 62), VK_TAB},
#line 157 "win32_vk.list"
      {gperf_offsetof(stringpool, 63), VK_OEM_BACKTAB},
#line 143 "win32_vk.list"
      {gperf_offsetof(stringpool, 64), VK_ICO_CLEAR},
#line 30 "win32_vk.list"
      {gperf_offsetof(stringpool, 65), VK_CONVERT},
#line 16 "win32_vk.list"
      {gperf_offsetof(stringpool, 66), VK_RETURN},
#line 146 "win32_vk.list"
      {gperf_offsetof(stringpool, 67), VK_OEM_JUMP},
      {-1}, {-1}, {-1},
#line 111 "win32_vk.list"
      {gperf_offsetof(stringpool, 71), VK_BROWSER_STOP},
#line 26 "win32_vk.list"
      {gperf_offsetof(stringpool, 72), VK_FINAL},
#line 163 "win32_vk.list"
      {gperf_offsetof(stringpool, 73), VK_ZOOM},
#line 28 "win32_vk.list"
      {gperf_offsetof(stringpool, 74), VK_KANJI},
#line 48 "win32_vk.list"
      {gperf_offsetof(stringpool, 75), VK_DELETE},
#line 128 "win32_vk.list"
      {gperf_offsetof(stringpool, 76), VK_OEM_COMMA},
#line 67 "win32_vk.list"
      {gperf_offsetof(stringpool, 77), VK_SUBTRACT},
      {-1},
#line 10 "win32_vk.list"
      {gperf_offsetof(stringpool, 79), VK_MBUTTON},
#line 78 "win32_vk.list"
      {gperf_offsetof(stringpool, 80), VK_F9},
#line 17 "win32_vk.list"
      {gperf_offsetof(stringpool, 81), VK_SHIFT},
#line 103 "win32_vk.list"
      {gperf_offsetof(stringpool, 82), VK_RSHIFT},
#line 102 "win32_vk.list"
      {gperf_offsetof(stringpool, 83), VK_LSHIFT},
#line 65 "win32_vk.list"
      {gperf_offsetof(stringpool, 84), VK_ADD},
#line 31 "win32_vk.list"
      {gperf_offsetof(stringpool, 85), VK_NONCONVERT},
#line 160 "win32_vk.list"
      {gperf_offsetof(stringpool, 86), VK_EXSEL},
#line 126 "win32_vk.list"
      {gperf_offsetof(stringpool, 87), VK_OEM_1},
#line 138 "win32_vk.list"
      {gperf_offsetof(stringpool, 88), VK_OEM_AX},
#line 108 "win32_vk.list"
      {gperf_offsetof(stringpool, 89), VK_BROWSER_BACK},
#line 137 "win32_vk.list"
      {gperf_offsetof(stringpool, 90), VK_OEM_8},
#line 129 "win32_vk.list"
      {gperf_offsetof(stringpool, 91), VK_OEM_MINUS},
#line 162 "win32_vk.list"
      {gperf_offsetof(stringpool, 92), VK_PLAY},
#line 131 "win32_vk.list"
      {gperf_offsetof(stringpool, 93), VK_OEM_2},
#line 15 "win32_vk.list"
      {gperf_offsetof(stringpool, 94), VK_CLEAR},
#line 99 "win32_vk.list"
      {gperf_offsetof(stringpool, 95), VK_OEM_FJ_TOUROKU},
#line 147 "win32_vk.list"
      {gperf_offsetof(stringpool, 96), VK_OEM_PA1},
#line 140 "win32_vk.list"
      {gperf_offsetof(stringpool, 97), VK_ICO_HELP},
#line 112 "win32_vk.list"
      {gperf_offsetof(stringpool, 98), VK_BROWSER_SEARCH},
#line 53 "win32_vk.list"
      {gperf_offsetof(stringpool, 99), VK_SLEEP},
      {-1},
#line 70 "win32_vk.list"
      {gperf_offsetof(stringpool, 101), VK_F1},
#line 148 "win32_vk.list"
      {gperf_offsetof(stringpool, 102), VK_OEM_PA2},
#line 154 "win32_vk.list"
      {gperf_offsetof(stringpool, 103), VK_OEM_COPY},
#line 77 "win32_vk.list"
      {gperf_offsetof(stringpool, 104), VK_F8},
#line 88 "win32_vk.list"
      {gperf_offsetof(stringpool, 105), VK_F19},
#line 41 "win32_vk.list"
      {gperf_offsetof(stringpool, 106), VK_RIGHT},
#line 71 "win32_vk.list"
      {gperf_offsetof(stringpool, 107), VK_F2},
#line 135 "win32_vk.list"
      {gperf_offsetof(stringpool, 108), VK_OEM_6},
#line 87 "win32_vk.list"
      {gperf_offsetof(stringpool, 109), VK_F18},
      {-1},
#line 117 "win32_vk.list"
      {gperf_offsetof(stringpool, 111), VK_VOLUME_UP},
      {-1}, {-1},
#line 120 "win32_vk.list"
      {gperf_offsetof(stringpool, 114), VK_MEDIA_STOP},
#line 130 "win32_vk.list"
      {gperf_offsetof(stringpool, 115), VK_OEM_PERIOD},
      {-1},
#line 161 "win32_vk.list"
      {gperf_offsetof(stringpool, 117), VK_EREOF},
      {-1}, {-1}, {-1},
#line 114 "win32_vk.list"
      {gperf_offsetof(stringpool, 121), VK_BROWSER_HOME},
#line 75 "win32_vk.list"
      {gperf_offsetof(stringpool, 122), VK_F6},
      {-1},
#line 110 "win32_vk.list"
      {gperf_offsetof(stringpool, 124), VK_BROWSER_REFRESH},
      {-1},
#line 165 "win32_vk.list"
      {gperf_offsetof(stringpool, 126), VK_PA1},
#line 142 "win32_vk.list"
      {gperf_offsetof(stringpool, 127), VK_PROCESSKEY},
#line 68 "win32_vk.list"
      {gperf_offsetof(stringpool, 128), VK_DECIMAL},
#line 132 "win32_vk.list"
      {gperf_offsetof(stringpool, 129), VK_OEM_3},
#line 107 "win32_vk.list"
      {gperf_offsetof(stringpool, 130), VK_RMENU},
#line 106 "win32_vk.list"
      {gperf_offsetof(stringpool, 131), VK_LMENU},
#line 98 "win32_vk.list"
      {gperf_offsetof(stringpool, 132), VK_OEM_FJ_MASSHOU},
#line 54 "win32_vk.list"
      {gperf_offsetof(stringpool, 133), VK_NUMPAD0},
#line 24 "win32_vk.list"
      {gperf_offsetof(stringpool, 134), VK_HANGUL},
#line 63 "win32_vk.list"
      {gperf_offsetof(stringpool, 135), VK_NUMPAD9},
#line 23 "win32_vk.list"
      {gperf_offsetof(stringpool, 136), VK_HANGEUL},
#line 134 "win32_vk.list"
      {gperf_offsetof(stringpool, 137), VK_OEM_5},
#line 149 "win32_vk.list"
      {gperf_offsetof(stringpool, 138), VK_OEM_PA3},
#line 115 "win32_vk.list"
      {gperf_offsetof(stringpool, 139), VK_VOLUME_MUTE},
#line 133 "win32_vk.list"
      {gperf_offsetof(stringpool, 140), VK_OEM_4},
#line 122 "win32_vk.list"
      {gperf_offsetof(stringpool, 141), VK_LAUNCH_MAIL},
#line 97 "win32_vk.list"
      {gperf_offsetof(stringpool, 142), VK_OEM_FJ_JISHO},
#line 72 "win32_vk.list"
      {gperf_offsetof(stringpool, 143), VK_F3},
#line 101 "win32_vk.list"
      {gperf_offsetof(stringpool, 144), VK_OEM_FJ_ROYA},
#line 100 "win32_vk.list"
      {gperf_offsetof(stringpool, 145), VK_OEM_FJ_LOYA},
      {-1},
#line 42 "win32_vk.list"
      {gperf_offsetof(stringpool, 147), VK_DOWN},
      {-1},
#line 153 "win32_vk.list"
      {gperf_offsetof(stringpool, 149), VK_OEM_FINISH},
      {-1},
#line 74 "win32_vk.list"
      {gperf_offsetof(stringpool, 151), VK_F5},
      {-1},
#line 136 "win32_vk.list"
      {gperf_offsetof(stringpool, 153), VK_OEM_7},
#line 73 "win32_vk.list"
      {gperf_offsetof(stringpool, 154), VK_F4},
#line 86 "win32_vk.list"
      {gperf_offsetof(stringpool, 155), VK_F17},
#line 55 "win32_vk.list"
      {gperf_offsetof(stringpool, 156), VK_NUMPAD1},
#line 141 "win32_vk.list"
      {gperf_offsetof(stringpool, 157), VK_ICO_00},
      {-1},
#line 62 "win32_vk.list"
      {gperf_offsetof(stringpool, 159), VK_NUMPAD8},
      {-1}, {-1},
#line 56 "win32_vk.list"
      {gperf_offsetof(stringpool, 162), VK_NUMPAD2},
      {-1},
#line 124 "win32_vk.list"
      {gperf_offsetof(stringpool, 164), VK_LAUNCH_APP1},
#line 109 "win32_vk.list"
      {gperf_offsetof(stringpool, 165), VK_BROWSER_FORWARD},
      {-1},
#line 76 "win32_vk.list"
      {gperf_offsetof(stringpool, 167), VK_F7},
      {-1}, {-1},
#line 125 "win32_vk.list"
      {gperf_offsetof(stringpool, 170), VK_LAUNCH_APP2},
#line 64 "win32_vk.list"
      {gperf_offsetof(stringpool, 171), VK_MULTIPLY},
      {-1}, {-1},
#line 45 "win32_vk.list"
      {gperf_offsetof(stringpool, 174), VK_EXECUTE},
      {-1},
#line 113 "win32_vk.list"
      {gperf_offsetof(stringpool, 176), VK_BROWSER_FAVORITES},
#line 60 "win32_vk.list"
      {gperf_offsetof(stringpool, 177), VK_NUMPAD6},
      {-1},
#line 85 "win32_vk.list"
      {gperf_offsetof(stringpool, 179), VK_F16},
      {-1}, {-1},
#line 79 "win32_vk.list"
      {gperf_offsetof(stringpool, 182), VK_F10},
      {-1}, {-1},
#line 116 "win32_vk.list"
      {gperf_offsetof(stringpool, 185), VK_VOLUME_DOWN},
      {-1}, {-1},
#line 89 "win32_vk.list"
      {gperf_offsetof(stringpool, 188), VK_F20},
#line 119 "win32_vk.list"
      {gperf_offsetof(stringpool, 189), VK_MEDIA_PREV_TRACK},
      {-1},
#line 33 "win32_vk.list"
      {gperf_offsetof(stringpool, 191), VK_MODECHANGE},
      {-1}, {-1}, {-1}, {-1}, {-1},
#line 83 "win32_vk.list"
      {gperf_offsetof(stringpool, 197), VK_F14},
#line 57 "win32_vk.list"
      {gperf_offsetof(stringpool, 198), VK_NUMPAD3},
#line 11 "win32_vk.list"
      {gperf_offsetof(stringpool, 199), VK_XBUTTON1},
      {-1}, {-1}, {-1},
#line 93 "win32_vk.list"
      {gperf_offsetof(stringpool, 203), VK_F24},
      {-1},
#line 12 "win32_vk.list"
      {gperf_offsetof(stringpool, 205), VK_XBUTTON2},
#line 59 "win32_vk.list"
      {gperf_offsetof(stringpool, 206), VK_NUMPAD5},
      {-1}, {-1},
#line 58 "win32_vk.list"
      {gperf_offsetof(stringpool, 209), VK_NUMPAD4},
      {-1}, {-1}, {-1}, {-1}, {-1},
#line 121 "win32_vk.list"
      {gperf_offsetof(stringpool, 215), VK_MEDIA_PLAY_PAUSE},
      {-1},
#line 123 "win32_vk.list"
      {gperf_offsetof(stringpool, 217), VK_LAUNCH_MEDIA_SELECT},
#line 80 "win32_vk.list"
      {gperf_offsetof(stringpool, 218), VK_F11},
      {-1},
#line 139 "win32_vk.list"
      {gperf_offsetof(stringpool, 220), VK_OEM_102},
#line 118 "win32_vk.list"
      {gperf_offsetof(stringpool, 221), VK_MEDIA_NEXT_TRACK},
#line 61 "win32_vk.list"
      {gperf_offsetof(stringpool, 222), VK_NUMPAD7},
      {-1},
#line 90 "win32_vk.list"
      {gperf_offsetof(stringpool, 224), VK_F21},
      {-1},
#line 82 "win32_vk.list"
      {gperf_offsetof(stringpool, 226), VK_F13},
      {-1}, {-1},
#line 81 "win32_vk.list"
      {gperf_offsetof(stringpool, 229), VK_F12},
      {-1}, {-1},
#line 92 "win32_vk.list"
      {gperf_offsetof(stringpool, 232), VK_F23},
      {-1}, {-1},
#line 91 "win32_vk.list"
      {gperf_offsetof(stringpool, 235), VK_F22},
      {-1}, {-1}, {-1}, {-1}, {-1}, {-1},
#line 84 "win32_vk.list"
      {gperf_offsetof(stringpool, 242), VK_F15},
      {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},
      {-1}, {-1}, {-1}, {-1},
#line 69 "win32_vk.list"
      {gperf_offsetof(stringpool, 256), VK_DIVIDE}
    };

  if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
    {
      register unsigned int key = hash (str, len);

      if (key <= MAX_HASH_VALUE)
        {
          register int o = wordlist[key].ofs;
          if (o >= 0)
            {
              register const char *s = o + stringpool;

              if ((((unsigned char)*str ^ (unsigned char)*s) & ~32) == 0 && !gperf_case_strcmp (str, s))
                return &wordlist[key];
            }
        }
    }
  return 0;
}