csfml-window-sys 0.6.0

Bindings to csfml-window
Documentation
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
/* automatically generated by rust-bindgen 0.55.1 */

// manually added
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]

extern crate csfml_system_sys; // manually added
use csfml_system_sys::*; // manually added

#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct sfContext {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct sfCursor {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct sfWindow {
    _unused: [u8; 0],
}
extern "C" {
    pub fn sfClipboard_getString() -> *const ::std::os::raw::c_char;
}
extern "C" {
    pub fn sfClipboard_getUnicodeString() -> *const sfUint32;
}
extern "C" {
    pub fn sfClipboard_setString(text: *const ::std::os::raw::c_char);
}
extern "C" {
    pub fn sfClipboard_setUnicodeString(text: *const sfUint32);
}
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfJoystickIdentification {
    pub name: *const ::std::os::raw::c_char,
    pub vendorId: ::std::os::raw::c_uint,
    pub productId: ::std::os::raw::c_uint,
}
#[test]
fn bindgen_test_layout_sfJoystickIdentification() {
    assert_eq!(
        ::std::mem::size_of::<sfJoystickIdentification>(),
        16usize,
        concat!("Size of: ", stringify!(sfJoystickIdentification))
    );
    assert_eq!(
        ::std::mem::align_of::<sfJoystickIdentification>(),
        8usize,
        concat!("Alignment of ", stringify!(sfJoystickIdentification))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfJoystickIdentification>())).name as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickIdentification),
            "::",
            stringify!(name)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<sfJoystickIdentification>())).vendorId as *const _ as usize
        },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickIdentification),
            "::",
            stringify!(vendorId)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<sfJoystickIdentification>())).productId as *const _ as usize
        },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickIdentification),
            "::",
            stringify!(productId)
        )
    );
}
pub const sfJoystickCount: ::std::os::raw::c_uint = 8;
pub const sfJoystickButtonCount: ::std::os::raw::c_uint = 32;
pub const sfJoystickAxisCount: ::std::os::raw::c_uint = 8;
pub type _bindgen_ty_1 = ::std::os::raw::c_uint;
pub const sfJoystickAxis_sfJoystickX: sfJoystickAxis = 0;
pub const sfJoystickAxis_sfJoystickY: sfJoystickAxis = 1;
pub const sfJoystickAxis_sfJoystickZ: sfJoystickAxis = 2;
pub const sfJoystickAxis_sfJoystickR: sfJoystickAxis = 3;
pub const sfJoystickAxis_sfJoystickU: sfJoystickAxis = 4;
pub const sfJoystickAxis_sfJoystickV: sfJoystickAxis = 5;
pub const sfJoystickAxis_sfJoystickPovX: sfJoystickAxis = 6;
pub const sfJoystickAxis_sfJoystickPovY: sfJoystickAxis = 7;
pub type sfJoystickAxis = ::std::os::raw::c_uint;
extern "C" {
    pub fn sfJoystick_isConnected(joystick: ::std::os::raw::c_uint) -> sfBool;
}
extern "C" {
    pub fn sfJoystick_getButtonCount(joystick: ::std::os::raw::c_uint) -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn sfJoystick_hasAxis(joystick: ::std::os::raw::c_uint, axis: sfJoystickAxis) -> sfBool;
}
extern "C" {
    pub fn sfJoystick_isButtonPressed(
        joystick: ::std::os::raw::c_uint,
        button: ::std::os::raw::c_uint,
    ) -> sfBool;
}
extern "C" {
    pub fn sfJoystick_getAxisPosition(
        joystick: ::std::os::raw::c_uint,
        axis: sfJoystickAxis,
    ) -> f32;
}
extern "C" {
    pub fn sfJoystick_getIdentification(
        joystick: ::std::os::raw::c_uint,
    ) -> sfJoystickIdentification;
}
extern "C" {
    pub fn sfJoystick_update();
}
pub const sfKeyCode_sfKeyUnknown: sfKeyCode = -1;
pub const sfKeyCode_sfKeyA: sfKeyCode = 0;
pub const sfKeyCode_sfKeyB: sfKeyCode = 1;
pub const sfKeyCode_sfKeyC: sfKeyCode = 2;
pub const sfKeyCode_sfKeyD: sfKeyCode = 3;
pub const sfKeyCode_sfKeyE: sfKeyCode = 4;
pub const sfKeyCode_sfKeyF: sfKeyCode = 5;
pub const sfKeyCode_sfKeyG: sfKeyCode = 6;
pub const sfKeyCode_sfKeyH: sfKeyCode = 7;
pub const sfKeyCode_sfKeyI: sfKeyCode = 8;
pub const sfKeyCode_sfKeyJ: sfKeyCode = 9;
pub const sfKeyCode_sfKeyK: sfKeyCode = 10;
pub const sfKeyCode_sfKeyL: sfKeyCode = 11;
pub const sfKeyCode_sfKeyM: sfKeyCode = 12;
pub const sfKeyCode_sfKeyN: sfKeyCode = 13;
pub const sfKeyCode_sfKeyO: sfKeyCode = 14;
pub const sfKeyCode_sfKeyP: sfKeyCode = 15;
pub const sfKeyCode_sfKeyQ: sfKeyCode = 16;
pub const sfKeyCode_sfKeyR: sfKeyCode = 17;
pub const sfKeyCode_sfKeyS: sfKeyCode = 18;
pub const sfKeyCode_sfKeyT: sfKeyCode = 19;
pub const sfKeyCode_sfKeyU: sfKeyCode = 20;
pub const sfKeyCode_sfKeyV: sfKeyCode = 21;
pub const sfKeyCode_sfKeyW: sfKeyCode = 22;
pub const sfKeyCode_sfKeyX: sfKeyCode = 23;
pub const sfKeyCode_sfKeyY: sfKeyCode = 24;
pub const sfKeyCode_sfKeyZ: sfKeyCode = 25;
pub const sfKeyCode_sfKeyNum0: sfKeyCode = 26;
pub const sfKeyCode_sfKeyNum1: sfKeyCode = 27;
pub const sfKeyCode_sfKeyNum2: sfKeyCode = 28;
pub const sfKeyCode_sfKeyNum3: sfKeyCode = 29;
pub const sfKeyCode_sfKeyNum4: sfKeyCode = 30;
pub const sfKeyCode_sfKeyNum5: sfKeyCode = 31;
pub const sfKeyCode_sfKeyNum6: sfKeyCode = 32;
pub const sfKeyCode_sfKeyNum7: sfKeyCode = 33;
pub const sfKeyCode_sfKeyNum8: sfKeyCode = 34;
pub const sfKeyCode_sfKeyNum9: sfKeyCode = 35;
pub const sfKeyCode_sfKeyEscape: sfKeyCode = 36;
pub const sfKeyCode_sfKeyLControl: sfKeyCode = 37;
pub const sfKeyCode_sfKeyLShift: sfKeyCode = 38;
pub const sfKeyCode_sfKeyLAlt: sfKeyCode = 39;
pub const sfKeyCode_sfKeyLSystem: sfKeyCode = 40;
pub const sfKeyCode_sfKeyRControl: sfKeyCode = 41;
pub const sfKeyCode_sfKeyRShift: sfKeyCode = 42;
pub const sfKeyCode_sfKeyRAlt: sfKeyCode = 43;
pub const sfKeyCode_sfKeyRSystem: sfKeyCode = 44;
pub const sfKeyCode_sfKeyMenu: sfKeyCode = 45;
pub const sfKeyCode_sfKeyLBracket: sfKeyCode = 46;
pub const sfKeyCode_sfKeyRBracket: sfKeyCode = 47;
pub const sfKeyCode_sfKeySemicolon: sfKeyCode = 48;
pub const sfKeyCode_sfKeyComma: sfKeyCode = 49;
pub const sfKeyCode_sfKeyPeriod: sfKeyCode = 50;
pub const sfKeyCode_sfKeyQuote: sfKeyCode = 51;
pub const sfKeyCode_sfKeySlash: sfKeyCode = 52;
pub const sfKeyCode_sfKeyBackslash: sfKeyCode = 53;
pub const sfKeyCode_sfKeyTilde: sfKeyCode = 54;
pub const sfKeyCode_sfKeyEqual: sfKeyCode = 55;
pub const sfKeyCode_sfKeyHyphen: sfKeyCode = 56;
pub const sfKeyCode_sfKeySpace: sfKeyCode = 57;
pub const sfKeyCode_sfKeyEnter: sfKeyCode = 58;
pub const sfKeyCode_sfKeyBackspace: sfKeyCode = 59;
pub const sfKeyCode_sfKeyTab: sfKeyCode = 60;
pub const sfKeyCode_sfKeyPageUp: sfKeyCode = 61;
pub const sfKeyCode_sfKeyPageDown: sfKeyCode = 62;
pub const sfKeyCode_sfKeyEnd: sfKeyCode = 63;
pub const sfKeyCode_sfKeyHome: sfKeyCode = 64;
pub const sfKeyCode_sfKeyInsert: sfKeyCode = 65;
pub const sfKeyCode_sfKeyDelete: sfKeyCode = 66;
pub const sfKeyCode_sfKeyAdd: sfKeyCode = 67;
pub const sfKeyCode_sfKeySubtract: sfKeyCode = 68;
pub const sfKeyCode_sfKeyMultiply: sfKeyCode = 69;
pub const sfKeyCode_sfKeyDivide: sfKeyCode = 70;
pub const sfKeyCode_sfKeyLeft: sfKeyCode = 71;
pub const sfKeyCode_sfKeyRight: sfKeyCode = 72;
pub const sfKeyCode_sfKeyUp: sfKeyCode = 73;
pub const sfKeyCode_sfKeyDown: sfKeyCode = 74;
pub const sfKeyCode_sfKeyNumpad0: sfKeyCode = 75;
pub const sfKeyCode_sfKeyNumpad1: sfKeyCode = 76;
pub const sfKeyCode_sfKeyNumpad2: sfKeyCode = 77;
pub const sfKeyCode_sfKeyNumpad3: sfKeyCode = 78;
pub const sfKeyCode_sfKeyNumpad4: sfKeyCode = 79;
pub const sfKeyCode_sfKeyNumpad5: sfKeyCode = 80;
pub const sfKeyCode_sfKeyNumpad6: sfKeyCode = 81;
pub const sfKeyCode_sfKeyNumpad7: sfKeyCode = 82;
pub const sfKeyCode_sfKeyNumpad8: sfKeyCode = 83;
pub const sfKeyCode_sfKeyNumpad9: sfKeyCode = 84;
pub const sfKeyCode_sfKeyF1: sfKeyCode = 85;
pub const sfKeyCode_sfKeyF2: sfKeyCode = 86;
pub const sfKeyCode_sfKeyF3: sfKeyCode = 87;
pub const sfKeyCode_sfKeyF4: sfKeyCode = 88;
pub const sfKeyCode_sfKeyF5: sfKeyCode = 89;
pub const sfKeyCode_sfKeyF6: sfKeyCode = 90;
pub const sfKeyCode_sfKeyF7: sfKeyCode = 91;
pub const sfKeyCode_sfKeyF8: sfKeyCode = 92;
pub const sfKeyCode_sfKeyF9: sfKeyCode = 93;
pub const sfKeyCode_sfKeyF10: sfKeyCode = 94;
pub const sfKeyCode_sfKeyF11: sfKeyCode = 95;
pub const sfKeyCode_sfKeyF12: sfKeyCode = 96;
pub const sfKeyCode_sfKeyF13: sfKeyCode = 97;
pub const sfKeyCode_sfKeyF14: sfKeyCode = 98;
pub const sfKeyCode_sfKeyF15: sfKeyCode = 99;
pub const sfKeyCode_sfKeyPause: sfKeyCode = 100;
pub const sfKeyCode_sfKeyCount: sfKeyCode = 101;
pub const sfKeyCode_sfKeyDash: sfKeyCode = 56;
pub const sfKeyCode_sfKeyBack: sfKeyCode = 59;
pub const sfKeyCode_sfKeyBackSlash: sfKeyCode = 53;
pub const sfKeyCode_sfKeySemiColon: sfKeyCode = 48;
pub const sfKeyCode_sfKeyReturn: sfKeyCode = 58;
pub type sfKeyCode = ::std::os::raw::c_int;
extern "C" {
    pub fn sfKeyboard_isKeyPressed(key: sfKeyCode) -> sfBool;
}
extern "C" {
    pub fn sfKeyboard_setVirtualKeyboardVisible(visible: sfBool);
}
pub const sfMouseButton_sfMouseLeft: sfMouseButton = 0;
pub const sfMouseButton_sfMouseRight: sfMouseButton = 1;
pub const sfMouseButton_sfMouseMiddle: sfMouseButton = 2;
pub const sfMouseButton_sfMouseXButton1: sfMouseButton = 3;
pub const sfMouseButton_sfMouseXButton2: sfMouseButton = 4;
pub const sfMouseButton_sfMouseButtonCount: sfMouseButton = 5;
pub type sfMouseButton = ::std::os::raw::c_uint;
pub const sfMouseWheel_sfMouseVerticalWheel: sfMouseWheel = 0;
pub const sfMouseWheel_sfMouseHorizontalWheel: sfMouseWheel = 1;
pub type sfMouseWheel = ::std::os::raw::c_uint;
extern "C" {
    pub fn sfMouse_isButtonPressed(button: sfMouseButton) -> sfBool;
}
extern "C" {
    pub fn sfMouse_getPosition(relativeTo: *const sfWindow) -> sfVector2i;
}
extern "C" {
    pub fn sfMouse_setPosition(position: sfVector2i, relativeTo: *const sfWindow);
}
pub const sfSensorType_sfSensorAccelerometer: sfSensorType = 0;
pub const sfSensorType_sfSensorGyroscope: sfSensorType = 1;
pub const sfSensorType_sfSensorMagnetometer: sfSensorType = 2;
pub const sfSensorType_sfSensorGravity: sfSensorType = 3;
pub const sfSensorType_sfSensorUserAcceleration: sfSensorType = 4;
pub const sfSensorType_sfSensorOrientation: sfSensorType = 5;
pub const sfSensorType_sfSensorCount: sfSensorType = 6;
pub type sfSensorType = ::std::os::raw::c_uint;
extern "C" {
    pub fn sfSensor_isAvailable(sensor: sfSensorType) -> sfBool;
}
extern "C" {
    pub fn sfSensor_setEnabled(sensor: sfSensorType, enabled: sfBool);
}
extern "C" {
    pub fn sfSensor_getValue(sensor: sfSensorType) -> sfVector3f;
}
pub const sfEventType_sfEvtClosed: sfEventType = 0;
pub const sfEventType_sfEvtResized: sfEventType = 1;
pub const sfEventType_sfEvtLostFocus: sfEventType = 2;
pub const sfEventType_sfEvtGainedFocus: sfEventType = 3;
pub const sfEventType_sfEvtTextEntered: sfEventType = 4;
pub const sfEventType_sfEvtKeyPressed: sfEventType = 5;
pub const sfEventType_sfEvtKeyReleased: sfEventType = 6;
pub const sfEventType_sfEvtMouseWheelMoved: sfEventType = 7;
pub const sfEventType_sfEvtMouseWheelScrolled: sfEventType = 8;
pub const sfEventType_sfEvtMouseButtonPressed: sfEventType = 9;
pub const sfEventType_sfEvtMouseButtonReleased: sfEventType = 10;
pub const sfEventType_sfEvtMouseMoved: sfEventType = 11;
pub const sfEventType_sfEvtMouseEntered: sfEventType = 12;
pub const sfEventType_sfEvtMouseLeft: sfEventType = 13;
pub const sfEventType_sfEvtJoystickButtonPressed: sfEventType = 14;
pub const sfEventType_sfEvtJoystickButtonReleased: sfEventType = 15;
pub const sfEventType_sfEvtJoystickMoved: sfEventType = 16;
pub const sfEventType_sfEvtJoystickConnected: sfEventType = 17;
pub const sfEventType_sfEvtJoystickDisconnected: sfEventType = 18;
pub const sfEventType_sfEvtTouchBegan: sfEventType = 19;
pub const sfEventType_sfEvtTouchMoved: sfEventType = 20;
pub const sfEventType_sfEvtTouchEnded: sfEventType = 21;
pub const sfEventType_sfEvtSensorChanged: sfEventType = 22;
pub const sfEventType_sfEvtCount: sfEventType = 23;
pub type sfEventType = ::std::os::raw::c_uint;
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfKeyEvent {
    pub type_: sfEventType,
    pub code: sfKeyCode,
    pub alt: sfBool,
    pub control: sfBool,
    pub shift: sfBool,
    pub system: sfBool,
}
#[test]
fn bindgen_test_layout_sfKeyEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfKeyEvent>(),
        24usize,
        concat!("Size of: ", stringify!(sfKeyEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfKeyEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfKeyEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfKeyEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfKeyEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfKeyEvent>())).code as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfKeyEvent),
            "::",
            stringify!(code)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfKeyEvent>())).alt as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfKeyEvent),
            "::",
            stringify!(alt)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfKeyEvent>())).control as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(sfKeyEvent),
            "::",
            stringify!(control)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfKeyEvent>())).shift as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(sfKeyEvent),
            "::",
            stringify!(shift)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfKeyEvent>())).system as *const _ as usize },
        20usize,
        concat!(
            "Offset of field: ",
            stringify!(sfKeyEvent),
            "::",
            stringify!(system)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfTextEvent {
    pub type_: sfEventType,
    pub unicode: sfUint32,
}
#[test]
fn bindgen_test_layout_sfTextEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfTextEvent>(),
        8usize,
        concat!("Size of: ", stringify!(sfTextEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfTextEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfTextEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfTextEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfTextEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfTextEvent>())).unicode as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfTextEvent),
            "::",
            stringify!(unicode)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfMouseMoveEvent {
    pub type_: sfEventType,
    pub x: ::std::os::raw::c_int,
    pub y: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_sfMouseMoveEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfMouseMoveEvent>(),
        12usize,
        concat!("Size of: ", stringify!(sfMouseMoveEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfMouseMoveEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfMouseMoveEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseMoveEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseMoveEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseMoveEvent>())).x as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseMoveEvent),
            "::",
            stringify!(x)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseMoveEvent>())).y as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseMoveEvent),
            "::",
            stringify!(y)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfMouseButtonEvent {
    pub type_: sfEventType,
    pub button: sfMouseButton,
    pub x: ::std::os::raw::c_int,
    pub y: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_sfMouseButtonEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfMouseButtonEvent>(),
        16usize,
        concat!("Size of: ", stringify!(sfMouseButtonEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfMouseButtonEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfMouseButtonEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseButtonEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseButtonEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseButtonEvent>())).button as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseButtonEvent),
            "::",
            stringify!(button)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseButtonEvent>())).x as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseButtonEvent),
            "::",
            stringify!(x)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseButtonEvent>())).y as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseButtonEvent),
            "::",
            stringify!(y)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfMouseWheelEvent {
    pub type_: sfEventType,
    pub delta: ::std::os::raw::c_int,
    pub x: ::std::os::raw::c_int,
    pub y: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_sfMouseWheelEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfMouseWheelEvent>(),
        16usize,
        concat!("Size of: ", stringify!(sfMouseWheelEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfMouseWheelEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfMouseWheelEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseWheelEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseWheelEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseWheelEvent>())).delta as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseWheelEvent),
            "::",
            stringify!(delta)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseWheelEvent>())).x as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseWheelEvent),
            "::",
            stringify!(x)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseWheelEvent>())).y as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseWheelEvent),
            "::",
            stringify!(y)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialOrd, PartialEq)]
pub struct sfMouseWheelScrollEvent {
    pub type_: sfEventType,
    pub wheel: sfMouseWheel,
    pub delta: f32,
    pub x: ::std::os::raw::c_int,
    pub y: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_sfMouseWheelScrollEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfMouseWheelScrollEvent>(),
        20usize,
        concat!("Size of: ", stringify!(sfMouseWheelScrollEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfMouseWheelScrollEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfMouseWheelScrollEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseWheelScrollEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseWheelScrollEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseWheelScrollEvent>())).wheel as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseWheelScrollEvent),
            "::",
            stringify!(wheel)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseWheelScrollEvent>())).delta as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseWheelScrollEvent),
            "::",
            stringify!(delta)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseWheelScrollEvent>())).x as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseWheelScrollEvent),
            "::",
            stringify!(x)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfMouseWheelScrollEvent>())).y as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(sfMouseWheelScrollEvent),
            "::",
            stringify!(y)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialOrd, PartialEq)]
pub struct sfJoystickMoveEvent {
    pub type_: sfEventType,
    pub joystickId: ::std::os::raw::c_uint,
    pub axis: sfJoystickAxis,
    pub position: f32,
}
#[test]
fn bindgen_test_layout_sfJoystickMoveEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfJoystickMoveEvent>(),
        16usize,
        concat!("Size of: ", stringify!(sfJoystickMoveEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfJoystickMoveEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfJoystickMoveEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfJoystickMoveEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickMoveEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfJoystickMoveEvent>())).joystickId as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickMoveEvent),
            "::",
            stringify!(joystickId)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfJoystickMoveEvent>())).axis as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickMoveEvent),
            "::",
            stringify!(axis)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfJoystickMoveEvent>())).position as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickMoveEvent),
            "::",
            stringify!(position)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfJoystickButtonEvent {
    pub type_: sfEventType,
    pub joystickId: ::std::os::raw::c_uint,
    pub button: ::std::os::raw::c_uint,
}
#[test]
fn bindgen_test_layout_sfJoystickButtonEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfJoystickButtonEvent>(),
        12usize,
        concat!("Size of: ", stringify!(sfJoystickButtonEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfJoystickButtonEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfJoystickButtonEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfJoystickButtonEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickButtonEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<sfJoystickButtonEvent>())).joystickId as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickButtonEvent),
            "::",
            stringify!(joystickId)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfJoystickButtonEvent>())).button as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickButtonEvent),
            "::",
            stringify!(button)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfJoystickConnectEvent {
    pub type_: sfEventType,
    pub joystickId: ::std::os::raw::c_uint,
}
#[test]
fn bindgen_test_layout_sfJoystickConnectEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfJoystickConnectEvent>(),
        8usize,
        concat!("Size of: ", stringify!(sfJoystickConnectEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfJoystickConnectEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfJoystickConnectEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfJoystickConnectEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickConnectEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<sfJoystickConnectEvent>())).joystickId as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfJoystickConnectEvent),
            "::",
            stringify!(joystickId)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfSizeEvent {
    pub type_: sfEventType,
    pub width: ::std::os::raw::c_uint,
    pub height: ::std::os::raw::c_uint,
}
#[test]
fn bindgen_test_layout_sfSizeEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfSizeEvent>(),
        12usize,
        concat!("Size of: ", stringify!(sfSizeEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfSizeEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfSizeEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfSizeEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfSizeEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfSizeEvent>())).width as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfSizeEvent),
            "::",
            stringify!(width)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfSizeEvent>())).height as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfSizeEvent),
            "::",
            stringify!(height)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfTouchEvent {
    pub type_: sfEventType,
    pub finger: ::std::os::raw::c_uint,
    pub x: ::std::os::raw::c_int,
    pub y: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_sfTouchEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfTouchEvent>(),
        16usize,
        concat!("Size of: ", stringify!(sfTouchEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfTouchEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfTouchEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfTouchEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfTouchEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfTouchEvent>())).finger as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfTouchEvent),
            "::",
            stringify!(finger)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfTouchEvent>())).x as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfTouchEvent),
            "::",
            stringify!(x)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfTouchEvent>())).y as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(sfTouchEvent),
            "::",
            stringify!(y)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialOrd, PartialEq)]
pub struct sfSensorEvent {
    pub type_: sfEventType,
    pub sensorType: sfSensorType,
    pub x: f32,
    pub y: f32,
    pub z: f32,
}
#[test]
fn bindgen_test_layout_sfSensorEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfSensorEvent>(),
        20usize,
        concat!("Size of: ", stringify!(sfSensorEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfSensorEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfSensorEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfSensorEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfSensorEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfSensorEvent>())).sensorType as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfSensorEvent),
            "::",
            stringify!(sensorType)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfSensorEvent>())).x as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfSensorEvent),
            "::",
            stringify!(x)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfSensorEvent>())).y as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(sfSensorEvent),
            "::",
            stringify!(y)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfSensorEvent>())).z as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(sfSensorEvent),
            "::",
            stringify!(z)
        )
    );
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union sfEvent {
    pub type_: sfEventType,
    pub size: sfSizeEvent,
    pub key: sfKeyEvent,
    pub text: sfTextEvent,
    pub mouseMove: sfMouseMoveEvent,
    pub mouseButton: sfMouseButtonEvent,
    pub mouseWheel: sfMouseWheelEvent,
    pub mouseWheelScroll: sfMouseWheelScrollEvent,
    pub joystickMove: sfJoystickMoveEvent,
    pub joystickButton: sfJoystickButtonEvent,
    pub joystickConnect: sfJoystickConnectEvent,
    pub touch: sfTouchEvent,
    pub sensor: sfSensorEvent,
    _bindgen_union_align: [u32; 6usize],
}
#[test]
fn bindgen_test_layout_sfEvent() {
    assert_eq!(
        ::std::mem::size_of::<sfEvent>(),
        24usize,
        concat!("Size of: ", stringify!(sfEvent))
    );
    assert_eq!(
        ::std::mem::align_of::<sfEvent>(),
        4usize,
        concat!("Alignment of ", stringify!(sfEvent))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).type_ as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(type_)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).size as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(size)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).key as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(key)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).text as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(text)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).mouseMove as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(mouseMove)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).mouseButton as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(mouseButton)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).mouseWheel as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(mouseWheel)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).mouseWheelScroll as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(mouseWheelScroll)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).joystickMove as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(joystickMove)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).joystickButton as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(joystickButton)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).joystickConnect as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(joystickConnect)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).touch as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(touch)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfEvent>())).sensor as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfEvent),
            "::",
            stringify!(sensor)
        )
    );
}
pub type wchar_t = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfVideoMode {
    pub width: ::std::os::raw::c_uint,
    pub height: ::std::os::raw::c_uint,
    pub bitsPerPixel: ::std::os::raw::c_uint,
}
#[test]
fn bindgen_test_layout_sfVideoMode() {
    assert_eq!(
        ::std::mem::size_of::<sfVideoMode>(),
        12usize,
        concat!("Size of: ", stringify!(sfVideoMode))
    );
    assert_eq!(
        ::std::mem::align_of::<sfVideoMode>(),
        4usize,
        concat!("Alignment of ", stringify!(sfVideoMode))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfVideoMode>())).width as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfVideoMode),
            "::",
            stringify!(width)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfVideoMode>())).height as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfVideoMode),
            "::",
            stringify!(height)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfVideoMode>())).bitsPerPixel as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfVideoMode),
            "::",
            stringify!(bitsPerPixel)
        )
    );
}
extern "C" {
    pub fn sfVideoMode_getDesktopMode() -> sfVideoMode;
}
extern "C" {
    pub fn sfVideoMode_getFullscreenModes(count: *mut usize) -> *const sfVideoMode;
}
extern "C" {
    pub fn sfVideoMode_isValid(mode: sfVideoMode) -> sfBool;
}
pub type sfWindowHandle = ::std::os::raw::c_ulong;
pub const sfWindowStyle_sfNone: sfWindowStyle = 0;
pub const sfWindowStyle_sfTitlebar: sfWindowStyle = 1;
pub const sfWindowStyle_sfResize: sfWindowStyle = 2;
pub const sfWindowStyle_sfClose: sfWindowStyle = 4;
pub const sfWindowStyle_sfFullscreen: sfWindowStyle = 8;
pub const sfWindowStyle_sfDefaultStyle: sfWindowStyle = 7;
pub type sfWindowStyle = ::std::os::raw::c_uint;
pub const sfContextAttribute_sfContextDefault: sfContextAttribute = 0;
pub const sfContextAttribute_sfContextCore: sfContextAttribute = 1;
pub const sfContextAttribute_sfContextDebug: sfContextAttribute = 4;
pub type sfContextAttribute = ::std::os::raw::c_uint;
#[repr(C)]
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct sfContextSettings {
    pub depthBits: ::std::os::raw::c_uint,
    pub stencilBits: ::std::os::raw::c_uint,
    pub antialiasingLevel: ::std::os::raw::c_uint,
    pub majorVersion: ::std::os::raw::c_uint,
    pub minorVersion: ::std::os::raw::c_uint,
    pub attributeFlags: sfUint32,
    pub sRgbCapable: sfBool,
}
#[test]
fn bindgen_test_layout_sfContextSettings() {
    assert_eq!(
        ::std::mem::size_of::<sfContextSettings>(),
        28usize,
        concat!("Size of: ", stringify!(sfContextSettings))
    );
    assert_eq!(
        ::std::mem::align_of::<sfContextSettings>(),
        4usize,
        concat!("Alignment of ", stringify!(sfContextSettings))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfContextSettings>())).depthBits as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sfContextSettings),
            "::",
            stringify!(depthBits)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfContextSettings>())).stencilBits as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sfContextSettings),
            "::",
            stringify!(stencilBits)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<sfContextSettings>())).antialiasingLevel as *const _ as usize
        },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sfContextSettings),
            "::",
            stringify!(antialiasingLevel)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfContextSettings>())).majorVersion as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(sfContextSettings),
            "::",
            stringify!(majorVersion)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfContextSettings>())).minorVersion as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(sfContextSettings),
            "::",
            stringify!(minorVersion)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<sfContextSettings>())).attributeFlags as *const _ as usize
        },
        20usize,
        concat!(
            "Offset of field: ",
            stringify!(sfContextSettings),
            "::",
            stringify!(attributeFlags)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<sfContextSettings>())).sRgbCapable as *const _ as usize },
        24usize,
        concat!(
            "Offset of field: ",
            stringify!(sfContextSettings),
            "::",
            stringify!(sRgbCapable)
        )
    );
}
extern "C" {
    pub fn sfWindow_create(
        mode: sfVideoMode,
        title: *const ::std::os::raw::c_char,
        style: sfUint32,
        settings: *const sfContextSettings,
    ) -> *mut sfWindow;
}
extern "C" {
    pub fn sfWindow_createUnicode(
        mode: sfVideoMode,
        title: *const sfUint32,
        style: sfUint32,
        settings: *const sfContextSettings,
    ) -> *mut sfWindow;
}
extern "C" {
    pub fn sfWindow_createFromHandle(
        handle: sfWindowHandle,
        settings: *const sfContextSettings,
    ) -> *mut sfWindow;
}
extern "C" {
    pub fn sfWindow_destroy(window: *mut sfWindow);
}
extern "C" {
    pub fn sfWindow_close(window: *mut sfWindow);
}
extern "C" {
    pub fn sfWindow_isOpen(window: *const sfWindow) -> sfBool;
}
extern "C" {
    pub fn sfWindow_getSettings(window: *const sfWindow) -> sfContextSettings;
}
extern "C" {
    pub fn sfWindow_pollEvent(window: *mut sfWindow, event: *mut sfEvent) -> sfBool;
}
extern "C" {
    pub fn sfWindow_waitEvent(window: *mut sfWindow, event: *mut sfEvent) -> sfBool;
}
extern "C" {
    pub fn sfWindow_getPosition(window: *const sfWindow) -> sfVector2i;
}
extern "C" {
    pub fn sfWindow_setPosition(window: *mut sfWindow, position: sfVector2i);
}
extern "C" {
    pub fn sfWindow_getSize(window: *const sfWindow) -> sfVector2u;
}
extern "C" {
    pub fn sfWindow_setSize(window: *mut sfWindow, size: sfVector2u);
}
extern "C" {
    pub fn sfWindow_setTitle(window: *mut sfWindow, title: *const ::std::os::raw::c_char);
}
extern "C" {
    pub fn sfWindow_setUnicodeTitle(window: *mut sfWindow, title: *const sfUint32);
}
extern "C" {
    pub fn sfWindow_setIcon(
        window: *mut sfWindow,
        width: ::std::os::raw::c_uint,
        height: ::std::os::raw::c_uint,
        pixels: *const sfUint8,
    );
}
extern "C" {
    pub fn sfWindow_setVisible(window: *mut sfWindow, visible: sfBool);
}
extern "C" {
    pub fn sfWindow_setVerticalSyncEnabled(window: *mut sfWindow, enabled: sfBool);
}
extern "C" {
    pub fn sfWindow_setMouseCursorVisible(window: *mut sfWindow, visible: sfBool);
}
extern "C" {
    pub fn sfWindow_setMouseCursorGrabbed(window: *mut sfWindow, grabbed: sfBool);
}
extern "C" {
    pub fn sfWindow_setMouseCursor(window: *mut sfWindow, cursor: *const sfCursor);
}
extern "C" {
    pub fn sfWindow_setKeyRepeatEnabled(window: *mut sfWindow, enabled: sfBool);
}
extern "C" {
    pub fn sfWindow_setFramerateLimit(window: *mut sfWindow, limit: ::std::os::raw::c_uint);
}
extern "C" {
    pub fn sfWindow_setJoystickThreshold(window: *mut sfWindow, threshold: f32);
}
extern "C" {
    pub fn sfWindow_setActive(window: *mut sfWindow, active: sfBool) -> sfBool;
}
extern "C" {
    pub fn sfWindow_requestFocus(window: *mut sfWindow);
}
extern "C" {
    pub fn sfWindow_hasFocus(window: *const sfWindow) -> sfBool;
}
extern "C" {
    pub fn sfWindow_display(window: *mut sfWindow);
}
extern "C" {
    pub fn sfWindow_getSystemHandle(window: *const sfWindow) -> sfWindowHandle;
}
extern "C" {
    pub fn sfContext_create() -> *mut sfContext;
}
extern "C" {
    pub fn sfContext_destroy(context: *mut sfContext);
}
extern "C" {
    pub fn sfContext_setActive(context: *mut sfContext, active: sfBool) -> sfBool;
}
extern "C" {
    pub fn sfContext_getSettings(context: *const sfContext) -> sfContextSettings;
}
extern "C" {
    pub fn sfContext_getActiveContextId() -> sfUint64;
}
pub const sfCursorType_sfCursorArrow: sfCursorType = 0;
pub const sfCursorType_sfCursorArrowWait: sfCursorType = 1;
pub const sfCursorType_sfCursorWait: sfCursorType = 2;
pub const sfCursorType_sfCursorText: sfCursorType = 3;
pub const sfCursorType_sfCursorHand: sfCursorType = 4;
pub const sfCursorType_sfCursorSizeHorizontal: sfCursorType = 5;
pub const sfCursorType_sfCursorSizeVertical: sfCursorType = 6;
pub const sfCursorType_sfCursorSizeTopLeftBottomRight: sfCursorType = 7;
pub const sfCursorType_sfCursorSizeBottomLeftTopRight: sfCursorType = 8;
pub const sfCursorType_sfCursorSizeAll: sfCursorType = 9;
pub const sfCursorType_sfCursorCross: sfCursorType = 10;
pub const sfCursorType_sfCursorHelp: sfCursorType = 11;
pub const sfCursorType_sfCursorNotAllowed: sfCursorType = 12;
pub type sfCursorType = ::std::os::raw::c_uint;
extern "C" {
    pub fn sfCursor_createFromPixels(
        pixels: *const sfUint8,
        size: sfVector2u,
        hotspot: sfVector2u,
    ) -> *mut sfCursor;
}
extern "C" {
    pub fn sfCursor_createFromSystem(type_: sfCursorType) -> *mut sfCursor;
}
extern "C" {
    pub fn sfCursor_destroy(cursor: *mut sfCursor);
}
extern "C" {
    pub fn sfTouch_isDown(finger: ::std::os::raw::c_uint) -> sfBool;
}
extern "C" {
    pub fn sfTouch_getPosition(
        finger: ::std::os::raw::c_uint,
        relativeTo: *const sfWindow,
    ) -> sfVector2i;
}