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
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
|
/**
* Copyright (C) 2009 Michael 'Mickey' Lauer <mlauer@vanille-media.de>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
[CCode (cprefix = "", lower_case_cprefix = "")]
namespace Linux {
/*
* EventFd
*/
[CCode (cprefix = "EFD_", cheader_filename = "sys/eventfd.h")]
public enum EventFdFlags {
CLOEXEC,
NONBLOCK
}
[CCode (cheader_filename = "sys/eventfd.h")]
public int eventfd (uint count = 0, EventFdFlags flags = 0);
public int eventfd_read (int fd, out uint64 value);
public int eventfd_write (int fd, uint64 value);
/*
* Inotify
*/
[CCode (cname = "struct inotify_event", cheader_filename = "sys/inotify.h")]
public struct InotifyEvent {
public int wd;
public uint32 mask;
public uint32 cookie;
public uint32 len;
public string name;
}
[CCode (cprefix = "IN_", cheader_filename = "sys/inotify.h")]
public enum InotifyFlags {
CLOEXEC,
NONBLOCK
}
[CCode (cprefix = "IN_", cheader_filename = "sys/inotify.h")]
public enum InotifyMaskFlags {
ACCESS,
ATTRIB,
CLOSE_WRITE,
CLOSE_NOWRITE,
CREATE,
DELETE,
DELETE_SELF,
MODIFY,
MOVE_SELF,
MOVED_FROM,
MOVED_TO,
OPEN,
DONT_FOLLOW,
MASK_ADD,
ONESHOT,
ONLYDIR,
IGNORED,
ISDIR,
Q_OVERFLOW,
UNMOUNT
}
[CCode (cname = "inotify_init1", cheader_filename = "sys/inotify.h")]
public int inotify_init (InotifyFlags flags = 0);
public int inotify_add_watch (int fd, string pathname, InotifyMaskFlags mask);
public int inotify_rm_watch (int fd, int wd);
/*
* SignalFd
*/
[CCode (cprefix = "SFD_", cheader_filename = "sys/signalfd.h")]
public enum SignalFdFlags {
CLOEXEC,
NONBLOCK
}
[CCode (cheader_filename = "sys/signalfd.h")]
public int signalfd (int fd, Posix.sigset_t mask, SignalFdFlags flags = 0);
/*
* Misc non-posix additions
*/
[CCode (cprefix = "CLONE_", cheader_filename = "sched.h")]
public enum CloneFlags {
FILES,
FS,
NEWNS
}
[CCode (cheader_filename = "sched.h")]
public int unshare (CloneFlags flags);
[CCode (cheader_filename = "time.h")]
public time_t timegm (GLib.Time t);
// mremap(2)
[CCode (cprefix = "MREMAP_", cheader_filename = "sys/mman.h")]
public enum MremapFlags {
MAYMOVE,
FIXED
}
[CCode (cheader_filename = "sys/mman.h")]
public void *mremap(void *old_address, size_t old_size, size_t new_size,
MremapFlags flags);
/*
* Network
*/
[CCode (cprefix = "", lower_case_cprefix = "")]
namespace Network {
[CCode (cname = "struct ifreq", cheader_filename = "net/if.h", destroy_function = "")]
public struct IfReq {
public char[] ifr_name;
public Posix.SockAddr ifr_addr;
}
/* ioctls */
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCADDRT;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCDELRT;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCRTMSG;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFNAME;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFLINK;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFCONF;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFFLAGS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFFLAGS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFADDR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFADDR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFDSTADDR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFDSTADDR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFBRDADDR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFBRDADDR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFNETMASK;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFNETMASK;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFMETRIC;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFMETRIC;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFMEM;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFMEM;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFMTU;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFMTU;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFNAME;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFHWADDR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFENCAP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFENCAP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFHWADDR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFSLAVE;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFSLAVE;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCADDMULTI;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCDELMULTI;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFINDEX;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFPFLAGS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFPFLAGS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCDIFADDR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFHWBROADCAST;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFCOUNT;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFBR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFBR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFTXQLEN;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFTXQLEN;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCDARP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGARP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSARP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCDRARP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGRARP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSRARP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCGIFMAP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCSIFMAP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCADDDLCI;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int SIOCDELDLCI;
}
/*
* Input subsystem
*/
[CCode (cprefix = "", lower_case_cprefix = "")]
namespace Input {
/*
* subsystem structures
*/
[CCode (cname = "struct input_event", cheader_filename = "linux/input.h")]
public struct Event {
public Posix.timeval time;
public uint16 type;
public uint16 code;
public int32 value;
}
[CCode (cname = "struct input_id", cheader_filename = "linux/input.h")]
public struct Id {
public uint16 bustype;
public uint16 vendor;
public uint16 product;
public uint16 version;
}
[CCode (cname = "struct input_absinfo", cheader_filename = "linux/input.h")]
public struct AbsInfo {
public int32 value;
public int32 minimum;
public int32 maximum;
public int32 fuzz;
public int32 flat;
}
/*
* ioctls
*/
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCGVERSION;
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCGID;
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCGREP;
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCSREP;
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCGKEYCODE;
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCSKEYCODE;
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCGNAME( uint len );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCGPHYS( uint len );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCGUNIQ( uint len );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCGKEY( uint len );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCGLED( uint len );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCGSND( uint len );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCGSW( uint len );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCGBIT( uint ev, uint len );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCGABS( uint abs );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public int EVIOCSABS( uint abs );
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCSFF;
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCRMFF;
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCGEFFECTS;
[CCode (cheader_filename = "linux/input.h,sys/ioctl.h")]
public const int EVIOCGRAB;
/*
* event types
*/
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_SYN;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_KEY;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_REL;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_ABS;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_MSC;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_SW;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_LED;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_SND;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_REP;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_FF;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_PWR;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_FF_STATUS;
[CCode (cheader_filename = "linux/input.h")]
public const uint16 EV_MAX;
/*
* synchronization events
*/
[CCode (cheader_filename = "linux/input.h")]
public const int SYN_REPORT;
[CCode (cheader_filename = "linux/input.h")]
public const int SYN_CONFIG;
/*
* keys, switches, buttons, etc.
*/
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RESERVED;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ESC;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_1;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_3;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_4;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_5;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_6;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_7;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_8;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_9;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_0;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MINUS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_EQUAL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BACKSPACE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TAB;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_Q;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_W;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_E;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_R;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_T;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_Y;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_U;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_I;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_O;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_P;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LEFTBRACE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RIGHTBRACE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ENTER;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LEFTCTRL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_A;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_S;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_D;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_G;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_H;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_J;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_K;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_L;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SEMICOLON;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_APOSTROPHE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_GRAVE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LEFTSHIFT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BACKSLASH;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_Z;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_X;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_C;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_V;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_B;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_N;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_M;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_COMMA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DOT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SLASH;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RIGHTSHIFT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPASTERISK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LEFTALT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SPACE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CAPSLOCK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F1;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F3;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F4;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F5;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F6;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F7;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F8;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F9;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F10;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMLOCK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SCROLLLOCK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP7;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP8;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP9;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPMINUS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP4;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP5;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP6;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPPLUS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP1;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP3;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KP0;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPDOT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ZENKAKUHANKAKU;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_102ND;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F11;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F12;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KATAKANA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_HIRAGANA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_HENKAN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KATAKANAHIRAGANA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MUHENKAN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPJPCOMMA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPENTER;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RIGHTCTRL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPSLASH;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SYSRQ;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RIGHTALT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LINEFEED;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_HOME;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_UP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PAGEUP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LEFT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RIGHT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_END;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DOWN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PAGEDOWN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_INSERT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DELETE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MACRO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MUTE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VOLUMEDOWN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VOLUMEUP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_POWER;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPEQUAL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPPLUSMINUS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PAUSE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SCALE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPCOMMA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_HANGEUL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_HANGUEL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_HANJA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_YEN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LEFTMETA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RIGHTMETA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_COMPOSE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_STOP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_AGAIN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PROPS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_UNDO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FRONT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_COPY;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_OPEN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PASTE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FIND;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CUT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_HELP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MENU;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CALC;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SETUP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SLEEP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_WAKEUP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FILE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SENDFILE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DELETEFILE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_XFER;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PROG1;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PROG2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_WWW;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MSDOS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_COFFEE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SCREENLOCK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DIRECTION;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CYCLEWINDOWS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MAIL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BOOKMARKS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_COMPUTER;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BACK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FORWARD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CLOSECD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_EJECTCD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_EJECTCLOSECD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NEXTSONG;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PLAYPAUSE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PREVIOUSSONG;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_STOPCD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RECORD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_REWIND;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PHONE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ISO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CONFIG;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_HOMEPAGE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_REFRESH;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_EXIT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MOVE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_EDIT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SCROLLUP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SCROLLDOWN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPLEFTPAREN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KPRIGHTPAREN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NEW;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_REDO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F13;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F14;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F15;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F16;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F17;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F18;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F19;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F20;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F21;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F22;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F23;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_F24;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PLAYCD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PAUSECD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PROG3;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PROG4;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DASHBOARD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SUSPEND;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CLOSE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PLAY;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FASTFORWARD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BASSBOOST;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PRINT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_HP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CAMERA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SOUND;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_QUESTION;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_EMAIL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CHAT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SEARCH;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CONNECT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FINANCE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SPORT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SHOP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ALTERASE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CANCEL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRIGHTNESSDOWN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRIGHTNESSUP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MEDIA;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SWITCHVIDEOMODE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KBDILLUMTOGGLE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KBDILLUMDOWN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KBDILLUMUP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SEND;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_REPLY;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FORWARDMAIL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SAVE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DOCUMENTS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BATTERY;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BLUETOOTH;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_WLAN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_UWB;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_UNKNOWN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VIDEO_NEXT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VIDEO_PREV;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRIGHTNESS_CYCLE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRIGHTNESS_ZERO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DISPLAY_OFF;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_WIMAX;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MAX;
/* Range 248 - 255 is reserved for special needs of AT keyboard driver */
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_MISC;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_0;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_1;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_2;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_3;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_4;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_5;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_6;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_7;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_8;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_9;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_MOUSE;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_LEFT;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_RIGHT;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_MIDDLE;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_SIDE;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_EXTRA;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_FORWARD;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_BACK;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TASK;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_JOYSTICK;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TRIGGER;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_THUMB;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_THUMB2;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOP;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOP2;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_PINKIE;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_BASE;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_BASE2;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_BASE3;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_BASE4;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_BASE5;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_BASE6;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_DEAD;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_GAMEPAD;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_A;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_B;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_C;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_X;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_Y;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_Z;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TL;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TR;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TL2;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TR2;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_SELECT;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_START;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_MODE;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_THUMBL;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_THUMBR;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_DIGI;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_PEN;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_RUBBER;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_BRUSH;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_PENCIL;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_AIRBRUSH;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_FINGER;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_MOUSE;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_LENS;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOUCH;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_STYLUS;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_STYLUS2;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_DOUBLETAP;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_TOOL_TRIPLETAP;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_WHEEL;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_GEAR_DOWN;
[CCode (cheader_filename = "linux/input.h")]
public const int BTN_GEAR_UP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_OK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SELECT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_GOTO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CLEAR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_POWER2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_OPTION;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_INFO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TIME;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VENDOR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ARCHIVE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PROGRAM;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CHANNEL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FAVORITES;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_EPG;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PVR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MHP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LANGUAGE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TITLE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SUBTITLE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ANGLE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ZOOM;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MODE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_KEYBOARD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SCREEN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PC;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TV;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TV2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VCR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VCR2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SAT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SAT2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TAPE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RADIO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TUNER;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PLAYER;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TEXT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DVD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_AUX;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MP3;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_AUDIO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VIDEO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DIRECTORY;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LIST;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MEMO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CALENDAR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RED;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_GREEN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_YELLOW;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BLUE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CHANNELUP;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CHANNELDOWN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FIRST;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LAST;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_AB;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NEXT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_RESTART;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SLOW;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SHUFFLE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BREAK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PREVIOUS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DIGITS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TEEN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_TWEN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VIDEOPHONE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_GAMES;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ZOOMIN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ZOOMOUT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ZOOMRESET;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_WORDPROCESSOR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_EDITOR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SPREADSHEET;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_GRAPHICSEDITOR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_PRESENTATION;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DATABASE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NEWS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_VOICEMAIL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_ADDRESSBOOK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MESSENGER;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DISPLAYTOGGLE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_SPELLCHECK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_LOGOFF;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DOLLAR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_EURO;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FRAMEBACK;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FRAMEFORWARD;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_CONTEXT_MENU;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_MEDIA_REPEAT;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DEL_EOL;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DEL_EOS;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_INS_LINE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_DEL_LINE;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_ESC;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F1;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F3;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F4;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F5;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F6;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F7;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F8;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F9;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F10;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F11;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F12;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_1;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_D;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_E;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_F;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_S;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_FN_B;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT1;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT3;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT4;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT5;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT6;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT7;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT8;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT9;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_BRL_DOT10;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_0;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_1;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_2;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_3;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_4;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_5;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_6;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_7;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_8;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_9;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_STAR;
[CCode (cheader_filename = "linux/input.h")]
public const int KEY_NUMERIC_POUND;
/*
* Relative axes
*/
[CCode (cheader_filename = "linux/input.h")]
public const int REL_X;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_Y;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_Z;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_RX;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_RY;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_RZ;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_HWHEEL;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_DIAL;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_WHEEL;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_MISC;
[CCode (cheader_filename = "linux/input.h")]
public const int REL_MAX;
/*
* Absolute axes
*/
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_X;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_Y;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_Z;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_RX;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_RY;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_RZ;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_THROTTLE;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_RUDDER;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_WHEEL;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_GAS;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_BRAKE;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_HAT0X;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_HAT0Y;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_HAT1X;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_HAT1Y;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_HAT2X;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_HAT2Y;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_HAT3X;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_HAT3Y;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_PRESSURE;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_DISTANCE;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_TILT_X;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_TILT_Y;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_TOOL_WIDTH;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_VOLUME;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_MISC;
[CCode (cheader_filename = "linux/input.h")]
public const int ABS_MAX;
/*
* Switch events
*/
[CCode (cheader_filename = "linux/input.h")]
public const int SW_LID;
[CCode (cheader_filename = "linux/input.h")]
public const int SW_TABLET_MODE;
[CCode (cheader_filename = "linux/input.h")]
public const int SW_HEADPHONE_INSERT;
[CCode (cheader_filename = "linux/input.h")]
public const int SW_RFKILL_ALL;
[CCode (cheader_filename = "linux/input.h")]
public const int SW_RADIO;
[CCode (cheader_filename = "linux/input.h")]
public const int SW_MICROPHONE_INSERT;
[CCode (cheader_filename = "linux/input.h")]
public const int SW_DOCK;
[CCode (cheader_filename = "linux/input.h")]
public const int SW_MAX;
/*
* Misc events
*/
[CCode (cheader_filename = "linux/input.h")]
public const int MSC_SERIAL;
[CCode (cheader_filename = "linux/input.h")]
public const int MSC_PULSELED;
[CCode (cheader_filename = "linux/input.h")]
public const int MSC_GESTURE;
[CCode (cheader_filename = "linux/input.h")]
public const int MSC_RAW;
[CCode (cheader_filename = "linux/input.h")]
public const int MSC_SCAN;
[CCode (cheader_filename = "linux/input.h")]
public const int MSC_MAX;
/*
* LEDs
*/
[CCode (cheader_filename = "linux/input.h")]
public const int LED_NUML;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_CAPSL;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_SCROLLL;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_COMPOSE;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_KANA;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_SLEEP;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_SUSPEND;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_MUTE;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_MISC;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_MAIL;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_CHARGING;
[CCode (cheader_filename = "linux/input.h")]
public const int LED_MAX;
/*
* Autorepeat values
*/
[CCode (cheader_filename = "linux/input.h")]
public const int REP_DELAY;
[CCode (cheader_filename = "linux/input.h")]
public const int REP_PERIOD;
[CCode (cheader_filename = "linux/input.h")]
public const int REP_MAX;
/*
* Sounds
*/
[CCode (cheader_filename = "linux/input.h")]
public const int SND_CLICK;
[CCode (cheader_filename = "linux/input.h")]
public const int SND_BELL;
[CCode (cheader_filename = "linux/input.h")]
public const int SND_TONE;
[CCode (cheader_filename = "linux/input.h")]
public const int SND_MAX;
/*
* IDs.
*/
[CCode (cheader_filename = "linux/input.h")]
public const int ID_BUS;
[CCode (cheader_filename = "linux/input.h")]
public const int ID_VENDOR;
[CCode (cheader_filename = "linux/input.h")]
public const int ID_PRODUCT;
[CCode (cheader_filename = "linux/input.h")]
public const int ID_VERSION;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_PCI;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_ISAPNP;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_USB;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_HIL;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_BLUETOOTH;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_VIRTUAL;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_ISA;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_I8042;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_XTKBD;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_RS232;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_GAMEPORT;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_PARPORT;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_AMIGA;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_ADB;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_I2C;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_HOST;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_GSC;
[CCode (cheader_filename = "linux/input.h")]
public const int BUS_ATARI;
}
/*
* Netlink subsystem
*/
[CCode (cprefix = "", lower_case_cprefix = "")]
namespace Netlink {
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_ROUTE;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_UNUSED;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_USERSOCK;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_FIREWALL;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_INET_DIAG;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_NFLOG;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_XFRM;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_SELINUX;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_ISCSI;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_AUDIT;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_FIB_LOOKUP;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_CONNECTOR;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_NETFILTER;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_IP6_FW;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_DNRTMSG;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_KOBJECT_UEVENT;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_GENERIC;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_SCSITRANSPORT;
[CCode (cheader_filename = "linux/netlink.h")]
public const int NETLINK_ECRYPTFS;
// additions to the socket interface (non-posix)
[CCode (cheader_filename = "sys/socket.h")]
public const int AF_NETLINK;
[CCode (cheader_filename = "sys/socket.h")]
public const int SOCK_NONBLOCK;
[CCode (cheader_filename = "sys/socket.h")]
public const int SOCK_CLOEXEC;
[CCode (cname = "struct sockaddr_nl", cheader_filename = "linux/netlink.h", destroy_function = "")]
public struct SockAddrNl {
public int nl_family;
public ushort nl_pad;
public uint32 nl_pid;
public uint32 nl_groups;
}
/*
[CCode (cheader_filename = "sys/socket.h", sentinel = "")]
public int bind (int sockfd, SockAddrNl addr, ulong length );
*/
}
/*
* Real time clock subsystem
*/
[CCode (cprefix = "", lower_case_cprefix = "")]
namespace Rtc {
[CCode (cname = "struct rtc_wkalrm", cheader_filename = "linux/rtc.h")]
public struct WakeAlarm {
public char enabled;
public char pending;
public Posix.tm time;
}
[CCode (cheader_filename = "linux/rtc.h,sys/ioctl.h")]
public const int RTC_RD_TIME;
[CCode (cheader_filename = "linux/rtc.h,sys/ioctl.h")]
public const int RTC_SET_TIME;
[CCode (cheader_filename = "linux/rtc.h,sys/ioctl.h")]
public const int RTC_WKALM_RD;
[CCode (cheader_filename = "linux/rtc.h,sys/ioctl.h")]
public const int RTC_WKALM_SET;
}
/*
* Terminal input/output
*/
[CCode (cprefix = "", lower_case_cprefix = "")]
namespace Termios {
/*
* non-posix functions
*/
[CCode (cheader_filename = "stdlib.h")]
public int ptsname_r (int fd, char[] buf);
/*
* non-posix flags
*/
[CCode (cheader_filename = "termios.h")]
public const int OLCUC;
/*
* non-posix constants
*/
// flow control
[CCode (cheader_filename = "termios.h")]
public const int CRTSCTS;
// v24 modem lines
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_LE;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_DTR;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_RTS;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_ST;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_SR;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_CTS;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_CARM;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_RNG;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_DSR;
[CCode (cheader_filename = "termios.h")]
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_OUT1;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_OUT2;
[CCode (cheader_filename = "termios.h")]
public const int TIOCM_LOOP;
// baud rates
[CCode (cheader_filename = "termios.h")]
public const int B460800;
[CCode (cheader_filename = "termios.h")]
public const int B500000;
[CCode (cheader_filename = "termios.h")]
public const int B576000;
[CCode (cheader_filename = "termios.h")]
public const int B921600;
[CCode (cheader_filename = "termios.h")]
public const int B1000000;
[CCode (cheader_filename = "termios.h")]
public const int B1152000;
[CCode (cheader_filename = "termios.h")]
public const int B1500000;
[CCode (cheader_filename = "termios.h")]
public const int B2000000;
[CCode (cheader_filename = "termios.h")]
public const int B2500000;
[CCode (cheader_filename = "termios.h")]
public const int B3000000;
[CCode (cheader_filename = "termios.h")]
public const int B3500000;
[CCode (cheader_filename = "termios.h")]
public const int B4000000;
/*
* ioctls
*/
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCGETS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETSW;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETSF;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCGETA;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETA;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETAW;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETAF;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSBRK;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCXONC;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCFLSH;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCEXCL;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCNXCL;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSCTTY;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGPGRP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSPGRP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCOUTQ;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSTI;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGWINSZ;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSWINSZ;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCMGET;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCMBIS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCMBIC;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCMSET;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGSOFTCAR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSSOFTCAR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int FIONREAD;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCINQ;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCLINUX;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCCONS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGSERIAL;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSSERIAL;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCPKT;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int FIONBIO;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCNOTTY;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSETD;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGETD;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSBRKP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSBRK;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCCBRK;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGSID;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCGETS2;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETS2;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETSW2;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETSF2;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGRS485;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSRS485;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGPTN;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSPTLCK;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCGETX;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETX;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETXF;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TCSETXW;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int FIONCLEX;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int FIOCLEX;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int FIOASYNC;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSERCONFIG;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSERGWILD;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSERSWILD;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGLCKTRMIOS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSLCKTRMIOS;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSERGSTRUCT;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSERGETLSR;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSERGETMULTI;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSERSETMULTI;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCMIWAIT;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGICOUNT;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCGHAYESESP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSHAYESESP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int FIOQSIZE;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCPKT_DATA;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCPKT_FLUSHREAD;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCPKT_FLUSHWRITE;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCPKT_STOP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCPKT_START;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCPKT_NOSTOP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCPKT_DOSTOP;
[CCode (cheader_filename = "sys/ioctl.h")]
public const int TIOCSER_TEMT;
}
}
|