librsmsx 0.3.21

a MSX emulator written in rust, a port from gomsx
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
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
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
!<arch>
/               -1                      0       67104     `
	w�����������.�.�x�x�z�z�����Z�Zպպ�&�&��������7^7^�:�:����ww����L^L^�����>�>&&�����f�f�t�tԒԒ�D�D���������v�v���������j�j�
�
�8�8������^^ݘݘ���������|�|�����F�F������bb������22bb����00ff����		����FF����
�
�
�
�vv
B
B	v	v������^^�6�6���R�R������VV٬٬�J�J::

��
j
jpp~~DDJJ��	�	������B�B��������VV4400���V�V���������d�d�.�.���������������V�V֐֐����׼׼������؂؂�@�@ۢۢ���l�l�����6�6�`�`�����$�$߆߆�����N�N**�������B�B���p�p���������&�&�^�^�������r�r�>�>��������������������\\�����������������>�>�t�tbBbBoo����o�o�p>p>b�b�,,qqFF����*N*N4�4�J�J�p�p�������#�#�����(�(��n�n1@1@0�0�.
.
o�o�q�q���.�.�p^p^r`r`.�.�o�o�q�q�w�w�w�w�==�$�$(�(�����>p>p3�3�'B'B�����������N�N�4�4y8y8t�t����������
�
����{X{X))]]N�N�D�D�EE����������v>v>ɬɬ����R�R��L�L�>�>&�&�<D<D&�&��j�j�,�,M�M�>�>�'�'�( ( �����J�J��O`O`@.@.P:P:�����.�.�:�:������66K�K�����$�$��d�d�����T�T�����&�&������:8:8,d,d�����Z�Z����ltlt�R�RF�F��.�.PP��a�a�#�#�#$#$j�j�jXjXM�M�I�I�K�K�G�G�KvKvGRGRL�L�H�H�LFLFH"H"M~M~IZIZMMH�H��,�,���$�$����ѼѼ͔͔��������ҌҌ�d�d����ϜϜ�\�\�4�4�B�Bt�t�����ununu�u�t"t"s@s@r�r�6�6�<<��=�=�e:e:s�s�p�p�*�*���DD�t�t��w@w@5858zzw�w�q�q�x$x$r r x�x�r�r�yyy�y�s�s�s�s�DDv�v�vZvZz|z|`|`|'X'X=�=�e�e�~~&&�N�Ns
s
tztzKK7676q8q8%�%�%2%23p3p/�/�t�t��F�F/p/p�.�.�r�rͺͺ�F�F<�<�����NN.�.�//�`�`����||���������������f�f�F�F�z�zՈՈA�A�A�A�P�P���������B`B`�b�b��pp�����&�&U�U�(�(�����"�"�"V"Vi�i�i�i������~�~�������������D�D�������.�.���������d�d``W�W�k(k(1�1�2$2$0�0�1@1@@|@|@�@�)x)x^b^b^�^�!�!�#�#�"p"p$8$8"�"�#N#N""/�/�/�/�J�J�KK�����H�HŲŲ|:|:�f�f��DD}�}�~b~b7�7�}�}�}}~�~�|�|�ppO O +&+&u�u���**�����.�.��ubub'�'��$�$������ɴɴ{�{�TTlldd��..����
"
"
�
�
�
���66���v�v����ʚʚ�:�:���������d�dоо�~�~�����������X�X�����L�L�d�d�t�t�����L�L�����0�0��������������HH��""
�
�F�F�==G�G�00��@@������
 
 �v�v�b�b���&�&^^���������������������V�V�@�@�J�J�\�\�6�6>>E�E�0Z0Z33d�d�� � �����X�X	>	>����	�	����t�tRVRV�������������D�D��bb�����������:�:��������������_�_�Q�Q�llZpZpS�S�f�f�e�e�YYiic�c�gZgZg�g�dPdPb�b�f�f�e0e0d�d�X�X�X0X0Y�Y�Y�Y�h8h8ffh�h�clcl�r�r�T�T��������k�k��4�4�x�x�����.�.�n�n��;;���������������X�X�~�~-6-6����&n&n�������.�.�����������������������
�
����:�:��z�z������S2S2�������\�\�����F�F����m�m����������l�l�L�L�t�t�b�b�J�J���������������j�j�B�B!!� � �����^�^�D�D��������!x!x���������2�2����������gjgjg�g���mHmH,�,������:�:����S�S��J�J�`�`����~~ff����$$�&�&���������������D�D�.�.�,�,ԚԚ����8�8������,�,�������������������*�*�v�v~�~������������F�F���r�r�����b�blDlD����}4}4l�l���������������������m$m$�����h�h�\�\m�m������T�T������ƒƒ�J�Jm�m�~�~�nlnl������f�f�f�f�}�}�l�l�+�+��$�$����88�*�*�J�J��������c�c�¦¦���������������.�.�t�t�����\�\���������^�^(6(6������``k�k����@�@�|�|�������`�`ضضʂʂ������vv&&6�6�5�5�B�B�v�v�����K�K��$�$��H,H,���������,�,�
�
A`A`>�>�����`�`�aRaR?�?��B�BƪƪA�A�x�x�����88TT_>_>x^x^]�]�N�N�jjz�z������f�f6�6�\�\�T�T�WW2�2�����
�
�����i�i�i�i�8�8�9 9 L�L��$�$�L�L��������8<8<9�9�:::�:�:�:�7�7�;^;^z�z�|X|XZZB�B�@@R:R:Q\Q\O�O�R�R�O�O�Q�Q�P�P���C�C�CCB0B0��ll|�|�{{z z {l{lRR���� � � 8 8����ttU�U�V�V�WJWJV\V\[�[���  ����TTT�T�Z�Z�.F.F����ff�����X�X3x3x33UrUrT�T�[P[Pn�n�!,!,�@�@����&z&zS S {�{�y�y��(�(VV�����t�t������%�%�dždž��DvDvPvPvjljlj�j�k^k^% % �J�J����8�8��������n�n��9�9���9R9R+�+������X�X�&�&ǀǀ��;�;��t�th�h���M<M<������pp>f>ff f ����FF��?8?8���������^�^�|�|���������H�H�����������d�d�������������|�|�h�h���6�6�����������N�Nc"c"c�c�������TzTz��EDED����D�D�jjiin4n4n�n�oXoX$�$�$`$`�����L�L��������d^d^�~�~*B*B---x-x+++�+�-�-�+t+t*�*�,@,@,�,��z�z�����2�2������1�1�2(2(2�2�<F<FΞΞ=�=�=�=�ҀҀF�F�ѤѤ��!�!��d�dN�N��(�(�f�fG>G>?H?H?�?�@�@����P�P���
�
ݸݸ�:�:CBCBC�C�D$D$�\�\�(�(�@�@�h�h�����v�v���������������������N�N�����,�,�����R�R)f)f)�)��F�F���������������N�NX�X�Y@Y@0V0V�p�p����a�a��*�*�t�t�*�*XVXV�*�*ޚޚ�����:�:ڀڀ��������ٚٚ�V�V��W�W�]"]"]�]�\P\P\�\�^�^�_8_8Z�Z�[[_�_�`�`�`~`~abab``[t[t[�[�^b^b]�]�QQO�O�b"b"�F�F���������t�tY�Y�Z&Z&;�;�<�<�88;n;n-�-�������J&J&�j�jAA]�]�URURW|W|4Z4Z�,�,��``�r�r�h�h�j�j���� � � @ @�V�V6P6P4�4�5T5T3�3�5�5�4T4T�����"�"����II�����$�$�(�(�����T�T�����T�T�\�\����InInI�I�J8J8��LLV<V<E�E���������E�E�FdFd���������x�xV�V����������2�2���������V�V����)�)�Q�Q��8�8���������������~�~����hJhJ\*\*NJNJ�&�&b�b�ÒÒ�������8�8����˜˜H�H�__IMPORT_DESCRIPTOR_SDL3__NULL_IMPORT_DESCRIPTORSDL3_NULL_THUNK_DATASDL_malloc__imp_SDL_mallocSDL_calloc__imp_SDL_callocSDL_realloc__imp_SDL_reallocSDL_free__imp_SDL_freeSDL_GetOriginalMemoryFunctions__imp_SDL_GetOriginalMemoryFunctionsSDL_GetMemoryFunctions__imp_SDL_GetMemoryFunctionsSDL_SetMemoryFunctions__imp_SDL_SetMemoryFunctionsSDL_aligned_alloc__imp_SDL_aligned_allocSDL_aligned_free__imp_SDL_aligned_freeSDL_GetNumAllocations__imp_SDL_GetNumAllocationsSDL_GetEnvironment__imp_SDL_GetEnvironmentSDL_CreateEnvironment__imp_SDL_CreateEnvironmentSDL_GetEnvironmentVariable__imp_SDL_GetEnvironmentVariableSDL_GetEnvironmentVariables__imp_SDL_GetEnvironmentVariablesSDL_SetEnvironmentVariable__imp_SDL_SetEnvironmentVariableSDL_UnsetEnvironmentVariable__imp_SDL_UnsetEnvironmentVariableSDL_DestroyEnvironment__imp_SDL_DestroyEnvironmentSDL_getenv__imp_SDL_getenvSDL_getenv_unsafe__imp_SDL_getenv_unsafeSDL_setenv_unsafe__imp_SDL_setenv_unsafeSDL_unsetenv_unsafe__imp_SDL_unsetenv_unsafeSDL_qsort__imp_SDL_qsortSDL_bsearch__imp_SDL_bsearchSDL_qsort_r__imp_SDL_qsort_rSDL_bsearch_r__imp_SDL_bsearch_rSDL_abs__imp_SDL_absSDL_isalpha__imp_SDL_isalphaSDL_isalnum__imp_SDL_isalnumSDL_isblank__imp_SDL_isblankSDL_iscntrl__imp_SDL_iscntrlSDL_isdigit__imp_SDL_isdigitSDL_isxdigit__imp_SDL_isxdigitSDL_ispunct__imp_SDL_ispunctSDL_isspace__imp_SDL_isspaceSDL_isupper__imp_SDL_isupperSDL_islower__imp_SDL_islowerSDL_isprint__imp_SDL_isprintSDL_isgraph__imp_SDL_isgraphSDL_toupper__imp_SDL_toupperSDL_tolower__imp_SDL_tolowerSDL_crc16__imp_SDL_crc16SDL_crc32__imp_SDL_crc32SDL_murmur3_32__imp_SDL_murmur3_32SDL_memcpy__imp_SDL_memcpySDL_memmove__imp_SDL_memmoveSDL_memset__imp_SDL_memsetSDL_memset4__imp_SDL_memset4SDL_memcmp__imp_SDL_memcmpSDL_wcslen__imp_SDL_wcslenSDL_wcsnlen__imp_SDL_wcsnlenSDL_wcslcpy__imp_SDL_wcslcpySDL_wcslcat__imp_SDL_wcslcatSDL_wcsdup__imp_SDL_wcsdupSDL_wcsstr__imp_SDL_wcsstrSDL_wcsnstr__imp_SDL_wcsnstrSDL_wcscmp__imp_SDL_wcscmpSDL_wcsncmp__imp_SDL_wcsncmpSDL_wcscasecmp__imp_SDL_wcscasecmpSDL_wcsncasecmp__imp_SDL_wcsncasecmpSDL_wcstol__imp_SDL_wcstolSDL_strlen__imp_SDL_strlenSDL_strnlen__imp_SDL_strnlenSDL_strlcpy__imp_SDL_strlcpySDL_utf8strlcpy__imp_SDL_utf8strlcpySDL_strlcat__imp_SDL_strlcatSDL_strdup__imp_SDL_strdupSDL_strndup__imp_SDL_strndupSDL_strrev__imp_SDL_strrevSDL_strupr__imp_SDL_struprSDL_strlwr__imp_SDL_strlwrSDL_strchr__imp_SDL_strchrSDL_strrchr__imp_SDL_strrchrSDL_strstr__imp_SDL_strstrSDL_strnstr__imp_SDL_strnstrSDL_strcasestr__imp_SDL_strcasestrSDL_strtok_r__imp_SDL_strtok_rSDL_utf8strlen__imp_SDL_utf8strlenSDL_utf8strnlen__imp_SDL_utf8strnlenSDL_itoa__imp_SDL_itoaSDL_uitoa__imp_SDL_uitoaSDL_ltoa__imp_SDL_ltoaSDL_ultoa__imp_SDL_ultoaSDL_lltoa__imp_SDL_lltoaSDL_ulltoa__imp_SDL_ulltoaSDL_atoi__imp_SDL_atoiSDL_atof__imp_SDL_atofSDL_strtol__imp_SDL_strtolSDL_strtoul__imp_SDL_strtoulSDL_strtoll__imp_SDL_strtollSDL_strtoull__imp_SDL_strtoullSDL_strtod__imp_SDL_strtodSDL_strcmp__imp_SDL_strcmpSDL_strncmp__imp_SDL_strncmpSDL_strcasecmp__imp_SDL_strcasecmpSDL_strncasecmp__imp_SDL_strncasecmpSDL_strpbrk__imp_SDL_strpbrkSDL_StepUTF8__imp_SDL_StepUTF8SDL_StepBackUTF8__imp_SDL_StepBackUTF8SDL_UCS4ToUTF8__imp_SDL_UCS4ToUTF8SDL_sscanf__imp_SDL_sscanfSDL_vsscanf__imp_SDL_vsscanfSDL_snprintf__imp_SDL_snprintfSDL_swprintf__imp_SDL_swprintfSDL_vsnprintf__imp_SDL_vsnprintfSDL_vswprintf__imp_SDL_vswprintfSDL_asprintf__imp_SDL_asprintfSDL_vasprintf__imp_SDL_vasprintfSDL_srand__imp_SDL_srandSDL_rand__imp_SDL_randSDL_randf__imp_SDL_randfSDL_rand_bits__imp_SDL_rand_bitsSDL_rand_r__imp_SDL_rand_rSDL_randf_r__imp_SDL_randf_rSDL_rand_bits_r__imp_SDL_rand_bits_rSDL_acos__imp_SDL_acosSDL_acosf__imp_SDL_acosfSDL_asin__imp_SDL_asinSDL_asinf__imp_SDL_asinfSDL_atan__imp_SDL_atanSDL_atanf__imp_SDL_atanfSDL_atan2__imp_SDL_atan2SDL_atan2f__imp_SDL_atan2fSDL_ceil__imp_SDL_ceilSDL_ceilf__imp_SDL_ceilfSDL_copysign__imp_SDL_copysignSDL_copysignf__imp_SDL_copysignfSDL_cos__imp_SDL_cosSDL_cosf__imp_SDL_cosfSDL_exp__imp_SDL_expSDL_expf__imp_SDL_expfSDL_fabs__imp_SDL_fabsSDL_fabsf__imp_SDL_fabsfSDL_floor__imp_SDL_floorSDL_floorf__imp_SDL_floorfSDL_trunc__imp_SDL_truncSDL_truncf__imp_SDL_truncfSDL_fmod__imp_SDL_fmodSDL_fmodf__imp_SDL_fmodfSDL_isinf__imp_SDL_isinfSDL_isinff__imp_SDL_isinffSDL_isnan__imp_SDL_isnanSDL_isnanf__imp_SDL_isnanfSDL_log__imp_SDL_logSDL_logf__imp_SDL_logfSDL_log10__imp_SDL_log10SDL_log10f__imp_SDL_log10fSDL_modf__imp_SDL_modfSDL_modff__imp_SDL_modffSDL_pow__imp_SDL_powSDL_powf__imp_SDL_powfSDL_round__imp_SDL_roundSDL_roundf__imp_SDL_roundfSDL_lround__imp_SDL_lroundSDL_lroundf__imp_SDL_lroundfSDL_scalbn__imp_SDL_scalbnSDL_scalbnf__imp_SDL_scalbnfSDL_sin__imp_SDL_sinSDL_sinf__imp_SDL_sinfSDL_sqrt__imp_SDL_sqrtSDL_sqrtf__imp_SDL_sqrtfSDL_tan__imp_SDL_tanSDL_tanf__imp_SDL_tanfSDL_iconv_open__imp_SDL_iconv_openSDL_iconv_close__imp_SDL_iconv_closeSDL_iconv__imp_SDL_iconvSDL_iconv_string__imp_SDL_iconv_stringSDL_ReportAssertion__imp_SDL_ReportAssertionSDL_SetAssertionHandler__imp_SDL_SetAssertionHandlerSDL_GetDefaultAssertionHandler__imp_SDL_GetDefaultAssertionHandlerSDL_GetAssertionHandler__imp_SDL_GetAssertionHandlerSDL_GetAssertionReport__imp_SDL_GetAssertionReportSDL_ResetAssertionReport__imp_SDL_ResetAssertionReportSDL_AsyncIOFromFile__imp_SDL_AsyncIOFromFileSDL_GetAsyncIOSize__imp_SDL_GetAsyncIOSizeSDL_ReadAsyncIO__imp_SDL_ReadAsyncIOSDL_WriteAsyncIO__imp_SDL_WriteAsyncIOSDL_CloseAsyncIO__imp_SDL_CloseAsyncIOSDL_CreateAsyncIOQueue__imp_SDL_CreateAsyncIOQueueSDL_DestroyAsyncIOQueue__imp_SDL_DestroyAsyncIOQueueSDL_GetAsyncIOResult__imp_SDL_GetAsyncIOResultSDL_WaitAsyncIOResult__imp_SDL_WaitAsyncIOResultSDL_SignalAsyncIOQueue__imp_SDL_SignalAsyncIOQueueSDL_LoadFileAsync__imp_SDL_LoadFileAsyncSDL_TryLockSpinlock__imp_SDL_TryLockSpinlockSDL_LockSpinlock__imp_SDL_LockSpinlockSDL_UnlockSpinlock__imp_SDL_UnlockSpinlockSDL_MemoryBarrierReleaseFunction__imp_SDL_MemoryBarrierReleaseFunctionSDL_MemoryBarrierAcquireFunction__imp_SDL_MemoryBarrierAcquireFunctionSDL_CompareAndSwapAtomicInt__imp_SDL_CompareAndSwapAtomicIntSDL_SetAtomicInt__imp_SDL_SetAtomicIntSDL_GetAtomicInt__imp_SDL_GetAtomicIntSDL_AddAtomicInt__imp_SDL_AddAtomicIntSDL_CompareAndSwapAtomicU32__imp_SDL_CompareAndSwapAtomicU32SDL_SetAtomicU32__imp_SDL_SetAtomicU32SDL_GetAtomicU32__imp_SDL_GetAtomicU32SDL_CompareAndSwapAtomicPointer__imp_SDL_CompareAndSwapAtomicPointerSDL_SetAtomicPointer__imp_SDL_SetAtomicPointerSDL_GetAtomicPointer__imp_SDL_GetAtomicPointerSDL_SetError__imp_SDL_SetErrorSDL_SetErrorV__imp_SDL_SetErrorVSDL_OutOfMemory__imp_SDL_OutOfMemorySDL_GetError__imp_SDL_GetErrorSDL_ClearError__imp_SDL_ClearErrorSDL_GetGlobalProperties__imp_SDL_GetGlobalPropertiesSDL_CreateProperties__imp_SDL_CreatePropertiesSDL_CopyProperties__imp_SDL_CopyPropertiesSDL_LockProperties__imp_SDL_LockPropertiesSDL_UnlockProperties__imp_SDL_UnlockPropertiesSDL_SetPointerPropertyWithCleanup__imp_SDL_SetPointerPropertyWithCleanupSDL_SetPointerProperty__imp_SDL_SetPointerPropertySDL_SetStringProperty__imp_SDL_SetStringPropertySDL_SetNumberProperty__imp_SDL_SetNumberPropertySDL_SetFloatProperty__imp_SDL_SetFloatPropertySDL_SetBooleanProperty__imp_SDL_SetBooleanPropertySDL_HasProperty__imp_SDL_HasPropertySDL_GetPropertyType__imp_SDL_GetPropertyTypeSDL_GetPointerProperty__imp_SDL_GetPointerPropertySDL_GetStringProperty__imp_SDL_GetStringPropertySDL_GetNumberProperty__imp_SDL_GetNumberPropertySDL_GetFloatProperty__imp_SDL_GetFloatPropertySDL_GetBooleanProperty__imp_SDL_GetBooleanPropertySDL_ClearProperty__imp_SDL_ClearPropertySDL_EnumerateProperties__imp_SDL_EnumeratePropertiesSDL_DestroyProperties__imp_SDL_DestroyPropertiesSDL_CreateThreadRuntime__imp_SDL_CreateThreadRuntimeSDL_CreateThreadWithPropertiesRuntime__imp_SDL_CreateThreadWithPropertiesRuntimeSDL_GetThreadName__imp_SDL_GetThreadNameSDL_GetCurrentThreadID__imp_SDL_GetCurrentThreadIDSDL_GetThreadID__imp_SDL_GetThreadIDSDL_SetCurrentThreadPriority__imp_SDL_SetCurrentThreadPrioritySDL_WaitThread__imp_SDL_WaitThreadSDL_GetThreadState__imp_SDL_GetThreadStateSDL_DetachThread__imp_SDL_DetachThreadSDL_GetTLS__imp_SDL_GetTLSSDL_SetTLS__imp_SDL_SetTLSSDL_CleanupTLS__imp_SDL_CleanupTLSSDL_CreateMutex__imp_SDL_CreateMutexSDL_LockMutex__imp_SDL_LockMutexSDL_TryLockMutex__imp_SDL_TryLockMutexSDL_UnlockMutex__imp_SDL_UnlockMutexSDL_DestroyMutex__imp_SDL_DestroyMutexSDL_CreateRWLock__imp_SDL_CreateRWLockSDL_LockRWLockForReading__imp_SDL_LockRWLockForReadingSDL_LockRWLockForWriting__imp_SDL_LockRWLockForWritingSDL_TryLockRWLockForReading__imp_SDL_TryLockRWLockForReadingSDL_TryLockRWLockForWriting__imp_SDL_TryLockRWLockForWritingSDL_UnlockRWLock__imp_SDL_UnlockRWLockSDL_DestroyRWLock__imp_SDL_DestroyRWLockSDL_CreateSemaphore__imp_SDL_CreateSemaphoreSDL_DestroySemaphore__imp_SDL_DestroySemaphoreSDL_WaitSemaphore__imp_SDL_WaitSemaphoreSDL_TryWaitSemaphore__imp_SDL_TryWaitSemaphoreSDL_WaitSemaphoreTimeout__imp_SDL_WaitSemaphoreTimeoutSDL_SignalSemaphore__imp_SDL_SignalSemaphoreSDL_GetSemaphoreValue__imp_SDL_GetSemaphoreValueSDL_CreateCondition__imp_SDL_CreateConditionSDL_DestroyCondition__imp_SDL_DestroyConditionSDL_SignalCondition__imp_SDL_SignalConditionSDL_BroadcastCondition__imp_SDL_BroadcastConditionSDL_WaitCondition__imp_SDL_WaitConditionSDL_WaitConditionTimeout__imp_SDL_WaitConditionTimeoutSDL_ShouldInit__imp_SDL_ShouldInitSDL_ShouldQuit__imp_SDL_ShouldQuitSDL_SetInitialized__imp_SDL_SetInitializedSDL_IOFromFile__imp_SDL_IOFromFileSDL_IOFromMem__imp_SDL_IOFromMemSDL_IOFromConstMem__imp_SDL_IOFromConstMemSDL_IOFromDynamicMem__imp_SDL_IOFromDynamicMemSDL_OpenIO__imp_SDL_OpenIOSDL_CloseIO__imp_SDL_CloseIOSDL_GetIOProperties__imp_SDL_GetIOPropertiesSDL_GetIOStatus__imp_SDL_GetIOStatusSDL_GetIOSize__imp_SDL_GetIOSizeSDL_SeekIO__imp_SDL_SeekIOSDL_TellIO__imp_SDL_TellIOSDL_ReadIO__imp_SDL_ReadIOSDL_WriteIO__imp_SDL_WriteIOSDL_IOprintf__imp_SDL_IOprintfSDL_IOvprintf__imp_SDL_IOvprintfSDL_FlushIO__imp_SDL_FlushIOSDL_LoadFile_IO__imp_SDL_LoadFile_IOSDL_LoadFile__imp_SDL_LoadFileSDL_SaveFile_IO__imp_SDL_SaveFile_IOSDL_SaveFile__imp_SDL_SaveFileSDL_ReadU8__imp_SDL_ReadU8SDL_ReadS8__imp_SDL_ReadS8SDL_ReadU16LE__imp_SDL_ReadU16LESDL_ReadS16LE__imp_SDL_ReadS16LESDL_ReadU16BE__imp_SDL_ReadU16BESDL_ReadS16BE__imp_SDL_ReadS16BESDL_ReadU32LE__imp_SDL_ReadU32LESDL_ReadS32LE__imp_SDL_ReadS32LESDL_ReadU32BE__imp_SDL_ReadU32BESDL_ReadS32BE__imp_SDL_ReadS32BESDL_ReadU64LE__imp_SDL_ReadU64LESDL_ReadS64LE__imp_SDL_ReadS64LESDL_ReadU64BE__imp_SDL_ReadU64BESDL_ReadS64BE__imp_SDL_ReadS64BESDL_WriteU8__imp_SDL_WriteU8SDL_WriteS8__imp_SDL_WriteS8SDL_WriteU16LE__imp_SDL_WriteU16LESDL_WriteS16LE__imp_SDL_WriteS16LESDL_WriteU16BE__imp_SDL_WriteU16BESDL_WriteS16BE__imp_SDL_WriteS16BESDL_WriteU32LE__imp_SDL_WriteU32LESDL_WriteS32LE__imp_SDL_WriteS32LESDL_WriteU32BE__imp_SDL_WriteU32BESDL_WriteS32BE__imp_SDL_WriteS32BESDL_WriteU64LE__imp_SDL_WriteU64LESDL_WriteS64LE__imp_SDL_WriteS64LESDL_WriteU64BE__imp_SDL_WriteU64BESDL_WriteS64BE__imp_SDL_WriteS64BESDL_GetNumAudioDrivers__imp_SDL_GetNumAudioDriversSDL_GetAudioDriver__imp_SDL_GetAudioDriverSDL_GetCurrentAudioDriver__imp_SDL_GetCurrentAudioDriverSDL_GetAudioPlaybackDevices__imp_SDL_GetAudioPlaybackDevicesSDL_GetAudioRecordingDevices__imp_SDL_GetAudioRecordingDevicesSDL_GetAudioDeviceName__imp_SDL_GetAudioDeviceNameSDL_GetAudioDeviceFormat__imp_SDL_GetAudioDeviceFormatSDL_GetAudioDeviceChannelMap__imp_SDL_GetAudioDeviceChannelMapSDL_OpenAudioDevice__imp_SDL_OpenAudioDeviceSDL_IsAudioDevicePhysical__imp_SDL_IsAudioDevicePhysicalSDL_IsAudioDevicePlayback__imp_SDL_IsAudioDevicePlaybackSDL_PauseAudioDevice__imp_SDL_PauseAudioDeviceSDL_ResumeAudioDevice__imp_SDL_ResumeAudioDeviceSDL_AudioDevicePaused__imp_SDL_AudioDevicePausedSDL_GetAudioDeviceGain__imp_SDL_GetAudioDeviceGainSDL_SetAudioDeviceGain__imp_SDL_SetAudioDeviceGainSDL_CloseAudioDevice__imp_SDL_CloseAudioDeviceSDL_BindAudioStreams__imp_SDL_BindAudioStreamsSDL_BindAudioStream__imp_SDL_BindAudioStreamSDL_UnbindAudioStreams__imp_SDL_UnbindAudioStreamsSDL_UnbindAudioStream__imp_SDL_UnbindAudioStreamSDL_GetAudioStreamDevice__imp_SDL_GetAudioStreamDeviceSDL_CreateAudioStream__imp_SDL_CreateAudioStreamSDL_GetAudioStreamProperties__imp_SDL_GetAudioStreamPropertiesSDL_GetAudioStreamFormat__imp_SDL_GetAudioStreamFormatSDL_SetAudioStreamFormat__imp_SDL_SetAudioStreamFormatSDL_GetAudioStreamFrequencyRatio__imp_SDL_GetAudioStreamFrequencyRatioSDL_SetAudioStreamFrequencyRatio__imp_SDL_SetAudioStreamFrequencyRatioSDL_GetAudioStreamGain__imp_SDL_GetAudioStreamGainSDL_SetAudioStreamGain__imp_SDL_SetAudioStreamGainSDL_GetAudioStreamInputChannelMap__imp_SDL_GetAudioStreamInputChannelMapSDL_GetAudioStreamOutputChannelMap__imp_SDL_GetAudioStreamOutputChannelMapSDL_SetAudioStreamInputChannelMap__imp_SDL_SetAudioStreamInputChannelMapSDL_SetAudioStreamOutputChannelMap__imp_SDL_SetAudioStreamOutputChannelMapSDL_PutAudioStreamData__imp_SDL_PutAudioStreamDataSDL_GetAudioStreamData__imp_SDL_GetAudioStreamDataSDL_GetAudioStreamAvailable__imp_SDL_GetAudioStreamAvailableSDL_GetAudioStreamQueued__imp_SDL_GetAudioStreamQueuedSDL_FlushAudioStream__imp_SDL_FlushAudioStreamSDL_ClearAudioStream__imp_SDL_ClearAudioStreamSDL_PauseAudioStreamDevice__imp_SDL_PauseAudioStreamDeviceSDL_ResumeAudioStreamDevice__imp_SDL_ResumeAudioStreamDeviceSDL_AudioStreamDevicePaused__imp_SDL_AudioStreamDevicePausedSDL_LockAudioStream__imp_SDL_LockAudioStreamSDL_UnlockAudioStream__imp_SDL_UnlockAudioStreamSDL_SetAudioStreamGetCallback__imp_SDL_SetAudioStreamGetCallbackSDL_SetAudioStreamPutCallback__imp_SDL_SetAudioStreamPutCallbackSDL_DestroyAudioStream__imp_SDL_DestroyAudioStreamSDL_OpenAudioDeviceStream__imp_SDL_OpenAudioDeviceStreamSDL_SetAudioPostmixCallback__imp_SDL_SetAudioPostmixCallbackSDL_LoadWAV_IO__imp_SDL_LoadWAV_IOSDL_LoadWAV__imp_SDL_LoadWAVSDL_MixAudio__imp_SDL_MixAudioSDL_ConvertAudioSamples__imp_SDL_ConvertAudioSamplesSDL_GetAudioFormatName__imp_SDL_GetAudioFormatNameSDL_GetSilenceValueForFormat__imp_SDL_GetSilenceValueForFormatSDL_ComposeCustomBlendMode__imp_SDL_ComposeCustomBlendModeSDL_GetPixelFormatName__imp_SDL_GetPixelFormatNameSDL_GetMasksForPixelFormat__imp_SDL_GetMasksForPixelFormatSDL_GetPixelFormatForMasks__imp_SDL_GetPixelFormatForMasksSDL_GetPixelFormatDetails__imp_SDL_GetPixelFormatDetailsSDL_CreatePalette__imp_SDL_CreatePaletteSDL_SetPaletteColors__imp_SDL_SetPaletteColorsSDL_DestroyPalette__imp_SDL_DestroyPaletteSDL_MapRGB__imp_SDL_MapRGBSDL_MapRGBA__imp_SDL_MapRGBASDL_GetRGB__imp_SDL_GetRGBSDL_GetRGBA__imp_SDL_GetRGBASDL_HasRectIntersection__imp_SDL_HasRectIntersectionSDL_GetRectIntersection__imp_SDL_GetRectIntersectionSDL_GetRectUnion__imp_SDL_GetRectUnionSDL_GetRectEnclosingPoints__imp_SDL_GetRectEnclosingPointsSDL_GetRectAndLineIntersection__imp_SDL_GetRectAndLineIntersectionSDL_HasRectIntersectionFloat__imp_SDL_HasRectIntersectionFloatSDL_GetRectIntersectionFloat__imp_SDL_GetRectIntersectionFloatSDL_GetRectUnionFloat__imp_SDL_GetRectUnionFloatSDL_GetRectEnclosingPointsFloat__imp_SDL_GetRectEnclosingPointsFloatSDL_GetRectAndLineIntersectionFloat__imp_SDL_GetRectAndLineIntersectionFloatSDL_CreateSurface__imp_SDL_CreateSurfaceSDL_CreateSurfaceFrom__imp_SDL_CreateSurfaceFromSDL_DestroySurface__imp_SDL_DestroySurfaceSDL_GetSurfaceProperties__imp_SDL_GetSurfacePropertiesSDL_SetSurfaceColorspace__imp_SDL_SetSurfaceColorspaceSDL_GetSurfaceColorspace__imp_SDL_GetSurfaceColorspaceSDL_CreateSurfacePalette__imp_SDL_CreateSurfacePaletteSDL_SetSurfacePalette__imp_SDL_SetSurfacePaletteSDL_GetSurfacePalette__imp_SDL_GetSurfacePaletteSDL_AddSurfaceAlternateImage__imp_SDL_AddSurfaceAlternateImageSDL_SurfaceHasAlternateImages__imp_SDL_SurfaceHasAlternateImagesSDL_GetSurfaceImages__imp_SDL_GetSurfaceImagesSDL_RemoveSurfaceAlternateImages__imp_SDL_RemoveSurfaceAlternateImagesSDL_LockSurface__imp_SDL_LockSurfaceSDL_UnlockSurface__imp_SDL_UnlockSurfaceSDL_LoadBMP_IO__imp_SDL_LoadBMP_IOSDL_LoadBMP__imp_SDL_LoadBMPSDL_SaveBMP_IO__imp_SDL_SaveBMP_IOSDL_SaveBMP__imp_SDL_SaveBMPSDL_SetSurfaceRLE__imp_SDL_SetSurfaceRLESDL_SurfaceHasRLE__imp_SDL_SurfaceHasRLESDL_SetSurfaceColorKey__imp_SDL_SetSurfaceColorKeySDL_SurfaceHasColorKey__imp_SDL_SurfaceHasColorKeySDL_GetSurfaceColorKey__imp_SDL_GetSurfaceColorKeySDL_SetSurfaceColorMod__imp_SDL_SetSurfaceColorModSDL_GetSurfaceColorMod__imp_SDL_GetSurfaceColorModSDL_SetSurfaceAlphaMod__imp_SDL_SetSurfaceAlphaModSDL_GetSurfaceAlphaMod__imp_SDL_GetSurfaceAlphaModSDL_SetSurfaceBlendMode__imp_SDL_SetSurfaceBlendModeSDL_GetSurfaceBlendMode__imp_SDL_GetSurfaceBlendModeSDL_SetSurfaceClipRect__imp_SDL_SetSurfaceClipRectSDL_GetSurfaceClipRect__imp_SDL_GetSurfaceClipRectSDL_FlipSurface__imp_SDL_FlipSurfaceSDL_DuplicateSurface__imp_SDL_DuplicateSurfaceSDL_ScaleSurface__imp_SDL_ScaleSurfaceSDL_ConvertSurface__imp_SDL_ConvertSurfaceSDL_ConvertSurfaceAndColorspace__imp_SDL_ConvertSurfaceAndColorspaceSDL_ConvertPixels__imp_SDL_ConvertPixelsSDL_ConvertPixelsAndColorspace__imp_SDL_ConvertPixelsAndColorspaceSDL_PremultiplyAlpha__imp_SDL_PremultiplyAlphaSDL_PremultiplySurfaceAlpha__imp_SDL_PremultiplySurfaceAlphaSDL_ClearSurface__imp_SDL_ClearSurfaceSDL_FillSurfaceRect__imp_SDL_FillSurfaceRectSDL_FillSurfaceRects__imp_SDL_FillSurfaceRectsSDL_BlitSurface__imp_SDL_BlitSurfaceSDL_BlitSurfaceUnchecked__imp_SDL_BlitSurfaceUncheckedSDL_BlitSurfaceScaled__imp_SDL_BlitSurfaceScaledSDL_BlitSurfaceUncheckedScaled__imp_SDL_BlitSurfaceUncheckedScaledSDL_BlitSurfaceTiled__imp_SDL_BlitSurfaceTiledSDL_BlitSurfaceTiledWithScale__imp_SDL_BlitSurfaceTiledWithScaleSDL_BlitSurface9Grid__imp_SDL_BlitSurface9GridSDL_MapSurfaceRGB__imp_SDL_MapSurfaceRGBSDL_MapSurfaceRGBA__imp_SDL_MapSurfaceRGBASDL_ReadSurfacePixel__imp_SDL_ReadSurfacePixelSDL_ReadSurfacePixelFloat__imp_SDL_ReadSurfacePixelFloatSDL_WriteSurfacePixel__imp_SDL_WriteSurfacePixelSDL_WriteSurfacePixelFloat__imp_SDL_WriteSurfacePixelFloatSDL_GetNumCameraDrivers__imp_SDL_GetNumCameraDriversSDL_GetCameraDriver__imp_SDL_GetCameraDriverSDL_GetCurrentCameraDriver__imp_SDL_GetCurrentCameraDriverSDL_GetCameras__imp_SDL_GetCamerasSDL_GetCameraSupportedFormats__imp_SDL_GetCameraSupportedFormatsSDL_GetCameraName__imp_SDL_GetCameraNameSDL_GetCameraPosition__imp_SDL_GetCameraPositionSDL_OpenCamera__imp_SDL_OpenCameraSDL_GetCameraPermissionState__imp_SDL_GetCameraPermissionStateSDL_GetCameraID__imp_SDL_GetCameraIDSDL_GetCameraProperties__imp_SDL_GetCameraPropertiesSDL_GetCameraFormat__imp_SDL_GetCameraFormatSDL_AcquireCameraFrame__imp_SDL_AcquireCameraFrameSDL_ReleaseCameraFrame__imp_SDL_ReleaseCameraFrameSDL_CloseCamera__imp_SDL_CloseCameraSDL_SetClipboardText__imp_SDL_SetClipboardTextSDL_GetClipboardText__imp_SDL_GetClipboardTextSDL_HasClipboardText__imp_SDL_HasClipboardTextSDL_SetPrimarySelectionText__imp_SDL_SetPrimarySelectionTextSDL_GetPrimarySelectionText__imp_SDL_GetPrimarySelectionTextSDL_HasPrimarySelectionText__imp_SDL_HasPrimarySelectionTextSDL_SetClipboardData__imp_SDL_SetClipboardDataSDL_ClearClipboardData__imp_SDL_ClearClipboardDataSDL_GetClipboardData__imp_SDL_GetClipboardDataSDL_HasClipboardData__imp_SDL_HasClipboardDataSDL_GetClipboardMimeTypes__imp_SDL_GetClipboardMimeTypesSDL_GetNumLogicalCPUCores__imp_SDL_GetNumLogicalCPUCoresSDL_GetCPUCacheLineSize__imp_SDL_GetCPUCacheLineSizeSDL_HasAltiVec__imp_SDL_HasAltiVecSDL_HasMMX__imp_SDL_HasMMXSDL_HasSSE__imp_SDL_HasSSESDL_HasSSE2__imp_SDL_HasSSE2SDL_HasSSE3__imp_SDL_HasSSE3SDL_HasSSE41__imp_SDL_HasSSE41SDL_HasSSE42__imp_SDL_HasSSE42SDL_HasAVX__imp_SDL_HasAVXSDL_HasAVX2__imp_SDL_HasAVX2SDL_HasAVX512F__imp_SDL_HasAVX512FSDL_HasARMSIMD__imp_SDL_HasARMSIMDSDL_HasNEON__imp_SDL_HasNEONSDL_HasLSX__imp_SDL_HasLSXSDL_HasLASX__imp_SDL_HasLASXSDL_GetSystemRAM__imp_SDL_GetSystemRAMSDL_GetSIMDAlignment__imp_SDL_GetSIMDAlignmentSDL_GetNumVideoDrivers__imp_SDL_GetNumVideoDriversSDL_GetVideoDriver__imp_SDL_GetVideoDriverSDL_GetCurrentVideoDriver__imp_SDL_GetCurrentVideoDriverSDL_GetSystemTheme__imp_SDL_GetSystemThemeSDL_GetDisplays__imp_SDL_GetDisplaysSDL_GetPrimaryDisplay__imp_SDL_GetPrimaryDisplaySDL_GetDisplayProperties__imp_SDL_GetDisplayPropertiesSDL_GetDisplayName__imp_SDL_GetDisplayNameSDL_GetDisplayBounds__imp_SDL_GetDisplayBoundsSDL_GetDisplayUsableBounds__imp_SDL_GetDisplayUsableBoundsSDL_GetNaturalDisplayOrientation__imp_SDL_GetNaturalDisplayOrientationSDL_GetCurrentDisplayOrientation__imp_SDL_GetCurrentDisplayOrientationSDL_GetDisplayContentScale__imp_SDL_GetDisplayContentScaleSDL_GetFullscreenDisplayModes__imp_SDL_GetFullscreenDisplayModesSDL_GetClosestFullscreenDisplayMode__imp_SDL_GetClosestFullscreenDisplayModeSDL_GetDesktopDisplayMode__imp_SDL_GetDesktopDisplayModeSDL_GetCurrentDisplayMode__imp_SDL_GetCurrentDisplayModeSDL_GetDisplayForPoint__imp_SDL_GetDisplayForPointSDL_GetDisplayForRect__imp_SDL_GetDisplayForRectSDL_GetDisplayForWindow__imp_SDL_GetDisplayForWindowSDL_GetWindowPixelDensity__imp_SDL_GetWindowPixelDensitySDL_GetWindowDisplayScale__imp_SDL_GetWindowDisplayScaleSDL_SetWindowFullscreenMode__imp_SDL_SetWindowFullscreenModeSDL_GetWindowFullscreenMode__imp_SDL_GetWindowFullscreenModeSDL_GetWindowICCProfile__imp_SDL_GetWindowICCProfileSDL_GetWindowPixelFormat__imp_SDL_GetWindowPixelFormatSDL_GetWindows__imp_SDL_GetWindowsSDL_CreateWindow__imp_SDL_CreateWindowSDL_CreatePopupWindow__imp_SDL_CreatePopupWindowSDL_CreateWindowWithProperties__imp_SDL_CreateWindowWithPropertiesSDL_GetWindowID__imp_SDL_GetWindowIDSDL_GetWindowFromID__imp_SDL_GetWindowFromIDSDL_GetWindowParent__imp_SDL_GetWindowParentSDL_GetWindowProperties__imp_SDL_GetWindowPropertiesSDL_GetWindowFlags__imp_SDL_GetWindowFlagsSDL_SetWindowTitle__imp_SDL_SetWindowTitleSDL_GetWindowTitle__imp_SDL_GetWindowTitleSDL_SetWindowIcon__imp_SDL_SetWindowIconSDL_SetWindowPosition__imp_SDL_SetWindowPositionSDL_GetWindowPosition__imp_SDL_GetWindowPositionSDL_SetWindowSize__imp_SDL_SetWindowSizeSDL_GetWindowSize__imp_SDL_GetWindowSizeSDL_GetWindowSafeArea__imp_SDL_GetWindowSafeAreaSDL_SetWindowAspectRatio__imp_SDL_SetWindowAspectRatioSDL_GetWindowAspectRatio__imp_SDL_GetWindowAspectRatioSDL_GetWindowBordersSize__imp_SDL_GetWindowBordersSizeSDL_GetWindowSizeInPixels__imp_SDL_GetWindowSizeInPixelsSDL_SetWindowMinimumSize__imp_SDL_SetWindowMinimumSizeSDL_GetWindowMinimumSize__imp_SDL_GetWindowMinimumSizeSDL_SetWindowMaximumSize__imp_SDL_SetWindowMaximumSizeSDL_GetWindowMaximumSize__imp_SDL_GetWindowMaximumSizeSDL_SetWindowBordered__imp_SDL_SetWindowBorderedSDL_SetWindowResizable__imp_SDL_SetWindowResizableSDL_SetWindowAlwaysOnTop__imp_SDL_SetWindowAlwaysOnTopSDL_ShowWindow__imp_SDL_ShowWindowSDL_HideWindow__imp_SDL_HideWindowSDL_RaiseWindow__imp_SDL_RaiseWindowSDL_MaximizeWindow__imp_SDL_MaximizeWindowSDL_MinimizeWindow__imp_SDL_MinimizeWindowSDL_RestoreWindow__imp_SDL_RestoreWindowSDL_SetWindowFullscreen__imp_SDL_SetWindowFullscreenSDL_SyncWindow__imp_SDL_SyncWindowSDL_WindowHasSurface__imp_SDL_WindowHasSurfaceSDL_GetWindowSurface__imp_SDL_GetWindowSurfaceSDL_SetWindowSurfaceVSync__imp_SDL_SetWindowSurfaceVSyncSDL_GetWindowSurfaceVSync__imp_SDL_GetWindowSurfaceVSyncSDL_UpdateWindowSurface__imp_SDL_UpdateWindowSurfaceSDL_UpdateWindowSurfaceRects__imp_SDL_UpdateWindowSurfaceRectsSDL_DestroyWindowSurface__imp_SDL_DestroyWindowSurfaceSDL_SetWindowKeyboardGrab__imp_SDL_SetWindowKeyboardGrabSDL_SetWindowMouseGrab__imp_SDL_SetWindowMouseGrabSDL_GetWindowKeyboardGrab__imp_SDL_GetWindowKeyboardGrabSDL_GetWindowMouseGrab__imp_SDL_GetWindowMouseGrabSDL_GetGrabbedWindow__imp_SDL_GetGrabbedWindowSDL_SetWindowMouseRect__imp_SDL_SetWindowMouseRectSDL_GetWindowMouseRect__imp_SDL_GetWindowMouseRectSDL_SetWindowOpacity__imp_SDL_SetWindowOpacitySDL_GetWindowOpacity__imp_SDL_GetWindowOpacitySDL_SetWindowParent__imp_SDL_SetWindowParentSDL_SetWindowModal__imp_SDL_SetWindowModalSDL_SetWindowFocusable__imp_SDL_SetWindowFocusableSDL_ShowWindowSystemMenu__imp_SDL_ShowWindowSystemMenuSDL_SetWindowHitTest__imp_SDL_SetWindowHitTestSDL_SetWindowShape__imp_SDL_SetWindowShapeSDL_FlashWindow__imp_SDL_FlashWindowSDL_DestroyWindow__imp_SDL_DestroyWindowSDL_ScreenSaverEnabled__imp_SDL_ScreenSaverEnabledSDL_EnableScreenSaver__imp_SDL_EnableScreenSaverSDL_DisableScreenSaver__imp_SDL_DisableScreenSaverSDL_GL_LoadLibrary__imp_SDL_GL_LoadLibrarySDL_GL_GetProcAddress__imp_SDL_GL_GetProcAddressSDL_EGL_GetProcAddress__imp_SDL_EGL_GetProcAddressSDL_GL_UnloadLibrary__imp_SDL_GL_UnloadLibrarySDL_GL_ExtensionSupported__imp_SDL_GL_ExtensionSupportedSDL_GL_ResetAttributes__imp_SDL_GL_ResetAttributesSDL_GL_SetAttribute__imp_SDL_GL_SetAttributeSDL_GL_GetAttribute__imp_SDL_GL_GetAttributeSDL_GL_CreateContext__imp_SDL_GL_CreateContextSDL_GL_MakeCurrent__imp_SDL_GL_MakeCurrentSDL_GL_GetCurrentWindow__imp_SDL_GL_GetCurrentWindowSDL_GL_GetCurrentContext__imp_SDL_GL_GetCurrentContextSDL_EGL_GetCurrentDisplay__imp_SDL_EGL_GetCurrentDisplaySDL_EGL_GetCurrentConfig__imp_SDL_EGL_GetCurrentConfigSDL_EGL_GetWindowSurface__imp_SDL_EGL_GetWindowSurfaceSDL_EGL_SetAttributeCallbacks__imp_SDL_EGL_SetAttributeCallbacksSDL_GL_SetSwapInterval__imp_SDL_GL_SetSwapIntervalSDL_GL_GetSwapInterval__imp_SDL_GL_GetSwapIntervalSDL_GL_SwapWindow__imp_SDL_GL_SwapWindowSDL_GL_DestroyContext__imp_SDL_GL_DestroyContextSDL_ShowOpenFileDialog__imp_SDL_ShowOpenFileDialogSDL_ShowSaveFileDialog__imp_SDL_ShowSaveFileDialogSDL_ShowOpenFolderDialog__imp_SDL_ShowOpenFolderDialogSDL_ShowFileDialogWithProperties__imp_SDL_ShowFileDialogWithPropertiesSDL_GUIDToString__imp_SDL_GUIDToStringSDL_StringToGUID__imp_SDL_StringToGUIDSDL_GetPowerInfo__imp_SDL_GetPowerInfoSDL_GetSensors__imp_SDL_GetSensorsSDL_GetSensorNameForID__imp_SDL_GetSensorNameForIDSDL_GetSensorTypeForID__imp_SDL_GetSensorTypeForIDSDL_GetSensorNonPortableTypeForID__imp_SDL_GetSensorNonPortableTypeForIDSDL_OpenSensor__imp_SDL_OpenSensorSDL_GetSensorFromID__imp_SDL_GetSensorFromIDSDL_GetSensorProperties__imp_SDL_GetSensorPropertiesSDL_GetSensorName__imp_SDL_GetSensorNameSDL_GetSensorType__imp_SDL_GetSensorTypeSDL_GetSensorNonPortableType__imp_SDL_GetSensorNonPortableTypeSDL_GetSensorID__imp_SDL_GetSensorIDSDL_GetSensorData__imp_SDL_GetSensorDataSDL_CloseSensor__imp_SDL_CloseSensorSDL_UpdateSensors__imp_SDL_UpdateSensorsSDL_LockJoysticks__imp_SDL_LockJoysticksSDL_UnlockJoysticks__imp_SDL_UnlockJoysticksSDL_HasJoystick__imp_SDL_HasJoystickSDL_GetJoysticks__imp_SDL_GetJoysticksSDL_GetJoystickNameForID__imp_SDL_GetJoystickNameForIDSDL_GetJoystickPathForID__imp_SDL_GetJoystickPathForIDSDL_GetJoystickPlayerIndexForID__imp_SDL_GetJoystickPlayerIndexForIDSDL_GetJoystickGUIDForID__imp_SDL_GetJoystickGUIDForIDSDL_GetJoystickVendorForID__imp_SDL_GetJoystickVendorForIDSDL_GetJoystickProductForID__imp_SDL_GetJoystickProductForIDSDL_GetJoystickProductVersionForID__imp_SDL_GetJoystickProductVersionForIDSDL_GetJoystickTypeForID__imp_SDL_GetJoystickTypeForIDSDL_OpenJoystick__imp_SDL_OpenJoystickSDL_GetJoystickFromID__imp_SDL_GetJoystickFromIDSDL_GetJoystickFromPlayerIndex__imp_SDL_GetJoystickFromPlayerIndexSDL_AttachVirtualJoystick__imp_SDL_AttachVirtualJoystickSDL_DetachVirtualJoystick__imp_SDL_DetachVirtualJoystickSDL_IsJoystickVirtual__imp_SDL_IsJoystickVirtualSDL_SetJoystickVirtualAxis__imp_SDL_SetJoystickVirtualAxisSDL_SetJoystickVirtualBall__imp_SDL_SetJoystickVirtualBallSDL_SetJoystickVirtualButton__imp_SDL_SetJoystickVirtualButtonSDL_SetJoystickVirtualHat__imp_SDL_SetJoystickVirtualHatSDL_SetJoystickVirtualTouchpad__imp_SDL_SetJoystickVirtualTouchpadSDL_SendJoystickVirtualSensorData__imp_SDL_SendJoystickVirtualSensorDataSDL_GetJoystickProperties__imp_SDL_GetJoystickPropertiesSDL_GetJoystickName__imp_SDL_GetJoystickNameSDL_GetJoystickPath__imp_SDL_GetJoystickPathSDL_GetJoystickPlayerIndex__imp_SDL_GetJoystickPlayerIndexSDL_SetJoystickPlayerIndex__imp_SDL_SetJoystickPlayerIndexSDL_GetJoystickGUID__imp_SDL_GetJoystickGUIDSDL_GetJoystickVendor__imp_SDL_GetJoystickVendorSDL_GetJoystickProduct__imp_SDL_GetJoystickProductSDL_GetJoystickProductVersion__imp_SDL_GetJoystickProductVersionSDL_GetJoystickFirmwareVersion__imp_SDL_GetJoystickFirmwareVersionSDL_GetJoystickSerial__imp_SDL_GetJoystickSerialSDL_GetJoystickType__imp_SDL_GetJoystickTypeSDL_GetJoystickGUIDInfo__imp_SDL_GetJoystickGUIDInfoSDL_JoystickConnected__imp_SDL_JoystickConnectedSDL_GetJoystickID__imp_SDL_GetJoystickIDSDL_GetNumJoystickAxes__imp_SDL_GetNumJoystickAxesSDL_GetNumJoystickBalls__imp_SDL_GetNumJoystickBallsSDL_GetNumJoystickHats__imp_SDL_GetNumJoystickHatsSDL_GetNumJoystickButtons__imp_SDL_GetNumJoystickButtonsSDL_SetJoystickEventsEnabled__imp_SDL_SetJoystickEventsEnabledSDL_JoystickEventsEnabled__imp_SDL_JoystickEventsEnabledSDL_UpdateJoysticks__imp_SDL_UpdateJoysticksSDL_GetJoystickAxis__imp_SDL_GetJoystickAxisSDL_GetJoystickAxisInitialState__imp_SDL_GetJoystickAxisInitialStateSDL_GetJoystickBall__imp_SDL_GetJoystickBallSDL_GetJoystickHat__imp_SDL_GetJoystickHatSDL_GetJoystickButton__imp_SDL_GetJoystickButtonSDL_RumbleJoystick__imp_SDL_RumbleJoystickSDL_RumbleJoystickTriggers__imp_SDL_RumbleJoystickTriggersSDL_SetJoystickLED__imp_SDL_SetJoystickLEDSDL_SendJoystickEffect__imp_SDL_SendJoystickEffectSDL_CloseJoystick__imp_SDL_CloseJoystickSDL_GetJoystickConnectionState__imp_SDL_GetJoystickConnectionStateSDL_GetJoystickPowerInfo__imp_SDL_GetJoystickPowerInfoSDL_AddGamepadMapping__imp_SDL_AddGamepadMappingSDL_AddGamepadMappingsFromIO__imp_SDL_AddGamepadMappingsFromIOSDL_AddGamepadMappingsFromFile__imp_SDL_AddGamepadMappingsFromFileSDL_ReloadGamepadMappings__imp_SDL_ReloadGamepadMappingsSDL_GetGamepadMappings__imp_SDL_GetGamepadMappingsSDL_GetGamepadMappingForGUID__imp_SDL_GetGamepadMappingForGUIDSDL_GetGamepadMapping__imp_SDL_GetGamepadMappingSDL_SetGamepadMapping__imp_SDL_SetGamepadMappingSDL_HasGamepad__imp_SDL_HasGamepadSDL_GetGamepads__imp_SDL_GetGamepadsSDL_IsGamepad__imp_SDL_IsGamepadSDL_GetGamepadNameForID__imp_SDL_GetGamepadNameForIDSDL_GetGamepadPathForID__imp_SDL_GetGamepadPathForIDSDL_GetGamepadPlayerIndexForID__imp_SDL_GetGamepadPlayerIndexForIDSDL_GetGamepadGUIDForID__imp_SDL_GetGamepadGUIDForIDSDL_GetGamepadVendorForID__imp_SDL_GetGamepadVendorForIDSDL_GetGamepadProductForID__imp_SDL_GetGamepadProductForIDSDL_GetGamepadProductVersionForID__imp_SDL_GetGamepadProductVersionForIDSDL_GetGamepadTypeForID__imp_SDL_GetGamepadTypeForIDSDL_GetRealGamepadTypeForID__imp_SDL_GetRealGamepadTypeForIDSDL_GetGamepadMappingForID__imp_SDL_GetGamepadMappingForIDSDL_OpenGamepad__imp_SDL_OpenGamepadSDL_GetGamepadFromID__imp_SDL_GetGamepadFromIDSDL_GetGamepadFromPlayerIndex__imp_SDL_GetGamepadFromPlayerIndexSDL_GetGamepadProperties__imp_SDL_GetGamepadPropertiesSDL_GetGamepadID__imp_SDL_GetGamepadIDSDL_GetGamepadName__imp_SDL_GetGamepadNameSDL_GetGamepadPath__imp_SDL_GetGamepadPathSDL_GetGamepadType__imp_SDL_GetGamepadTypeSDL_GetRealGamepadType__imp_SDL_GetRealGamepadTypeSDL_GetGamepadPlayerIndex__imp_SDL_GetGamepadPlayerIndexSDL_SetGamepadPlayerIndex__imp_SDL_SetGamepadPlayerIndexSDL_GetGamepadVendor__imp_SDL_GetGamepadVendorSDL_GetGamepadProduct__imp_SDL_GetGamepadProductSDL_GetGamepadProductVersion__imp_SDL_GetGamepadProductVersionSDL_GetGamepadFirmwareVersion__imp_SDL_GetGamepadFirmwareVersionSDL_GetGamepadSerial__imp_SDL_GetGamepadSerialSDL_GetGamepadSteamHandle__imp_SDL_GetGamepadSteamHandleSDL_GetGamepadConnectionState__imp_SDL_GetGamepadConnectionStateSDL_GetGamepadPowerInfo__imp_SDL_GetGamepadPowerInfoSDL_GamepadConnected__imp_SDL_GamepadConnectedSDL_GetGamepadJoystick__imp_SDL_GetGamepadJoystickSDL_SetGamepadEventsEnabled__imp_SDL_SetGamepadEventsEnabledSDL_GamepadEventsEnabled__imp_SDL_GamepadEventsEnabledSDL_GetGamepadBindings__imp_SDL_GetGamepadBindingsSDL_UpdateGamepads__imp_SDL_UpdateGamepadsSDL_GetGamepadTypeFromString__imp_SDL_GetGamepadTypeFromStringSDL_GetGamepadStringForType__imp_SDL_GetGamepadStringForTypeSDL_GetGamepadAxisFromString__imp_SDL_GetGamepadAxisFromStringSDL_GetGamepadStringForAxis__imp_SDL_GetGamepadStringForAxisSDL_GamepadHasAxis__imp_SDL_GamepadHasAxisSDL_GetGamepadAxis__imp_SDL_GetGamepadAxisSDL_GetGamepadButtonFromString__imp_SDL_GetGamepadButtonFromStringSDL_GetGamepadStringForButton__imp_SDL_GetGamepadStringForButtonSDL_GamepadHasButton__imp_SDL_GamepadHasButtonSDL_GetGamepadButton__imp_SDL_GetGamepadButtonSDL_GetGamepadButtonLabelForType__imp_SDL_GetGamepadButtonLabelForTypeSDL_GetGamepadButtonLabel__imp_SDL_GetGamepadButtonLabelSDL_GetNumGamepadTouchpads__imp_SDL_GetNumGamepadTouchpadsSDL_GetNumGamepadTouchpadFingers__imp_SDL_GetNumGamepadTouchpadFingersSDL_GetGamepadTouchpadFinger__imp_SDL_GetGamepadTouchpadFingerSDL_GamepadHasSensor__imp_SDL_GamepadHasSensorSDL_SetGamepadSensorEnabled__imp_SDL_SetGamepadSensorEnabledSDL_GamepadSensorEnabled__imp_SDL_GamepadSensorEnabledSDL_GetGamepadSensorDataRate__imp_SDL_GetGamepadSensorDataRateSDL_GetGamepadSensorData__imp_SDL_GetGamepadSensorDataSDL_RumbleGamepad__imp_SDL_RumbleGamepadSDL_RumbleGamepadTriggers__imp_SDL_RumbleGamepadTriggersSDL_SetGamepadLED__imp_SDL_SetGamepadLEDSDL_SendGamepadEffect__imp_SDL_SendGamepadEffectSDL_CloseGamepad__imp_SDL_CloseGamepadSDL_GetGamepadAppleSFSymbolsNameForButton__imp_SDL_GetGamepadAppleSFSymbolsNameForButtonSDL_GetGamepadAppleSFSymbolsNameForAxis__imp_SDL_GetGamepadAppleSFSymbolsNameForAxisSDL_HasKeyboard__imp_SDL_HasKeyboardSDL_GetKeyboards__imp_SDL_GetKeyboardsSDL_GetKeyboardNameForID__imp_SDL_GetKeyboardNameForIDSDL_GetKeyboardFocus__imp_SDL_GetKeyboardFocusSDL_GetKeyboardState__imp_SDL_GetKeyboardStateSDL_ResetKeyboard__imp_SDL_ResetKeyboardSDL_GetModState__imp_SDL_GetModStateSDL_SetModState__imp_SDL_SetModStateSDL_GetKeyFromScancode__imp_SDL_GetKeyFromScancodeSDL_GetScancodeFromKey__imp_SDL_GetScancodeFromKeySDL_SetScancodeName__imp_SDL_SetScancodeNameSDL_GetScancodeName__imp_SDL_GetScancodeNameSDL_GetScancodeFromName__imp_SDL_GetScancodeFromNameSDL_GetKeyName__imp_SDL_GetKeyNameSDL_GetKeyFromName__imp_SDL_GetKeyFromNameSDL_StartTextInput__imp_SDL_StartTextInputSDL_StartTextInputWithProperties__imp_SDL_StartTextInputWithPropertiesSDL_TextInputActive__imp_SDL_TextInputActiveSDL_StopTextInput__imp_SDL_StopTextInputSDL_ClearComposition__imp_SDL_ClearCompositionSDL_SetTextInputArea__imp_SDL_SetTextInputAreaSDL_GetTextInputArea__imp_SDL_GetTextInputAreaSDL_HasScreenKeyboardSupport__imp_SDL_HasScreenKeyboardSupportSDL_ScreenKeyboardShown__imp_SDL_ScreenKeyboardShownSDL_HasMouse__imp_SDL_HasMouseSDL_GetMice__imp_SDL_GetMiceSDL_GetMouseNameForID__imp_SDL_GetMouseNameForIDSDL_GetMouseFocus__imp_SDL_GetMouseFocusSDL_GetMouseState__imp_SDL_GetMouseStateSDL_GetGlobalMouseState__imp_SDL_GetGlobalMouseStateSDL_GetRelativeMouseState__imp_SDL_GetRelativeMouseStateSDL_WarpMouseInWindow__imp_SDL_WarpMouseInWindowSDL_WarpMouseGlobal__imp_SDL_WarpMouseGlobalSDL_SetWindowRelativeMouseMode__imp_SDL_SetWindowRelativeMouseModeSDL_GetWindowRelativeMouseMode__imp_SDL_GetWindowRelativeMouseModeSDL_CaptureMouse__imp_SDL_CaptureMouseSDL_CreateCursor__imp_SDL_CreateCursorSDL_CreateColorCursor__imp_SDL_CreateColorCursorSDL_CreateSystemCursor__imp_SDL_CreateSystemCursorSDL_SetCursor__imp_SDL_SetCursorSDL_GetCursor__imp_SDL_GetCursorSDL_GetDefaultCursor__imp_SDL_GetDefaultCursorSDL_DestroyCursor__imp_SDL_DestroyCursorSDL_ShowCursor__imp_SDL_ShowCursorSDL_HideCursor__imp_SDL_HideCursorSDL_CursorVisible__imp_SDL_CursorVisibleSDL_GetTouchDevices__imp_SDL_GetTouchDevicesSDL_GetTouchDeviceName__imp_SDL_GetTouchDeviceNameSDL_GetTouchDeviceType__imp_SDL_GetTouchDeviceTypeSDL_GetTouchFingers__imp_SDL_GetTouchFingersSDL_PumpEvents__imp_SDL_PumpEventsSDL_PeepEvents__imp_SDL_PeepEventsSDL_HasEvent__imp_SDL_HasEventSDL_HasEvents__imp_SDL_HasEventsSDL_FlushEvent__imp_SDL_FlushEventSDL_FlushEvents__imp_SDL_FlushEventsSDL_PollEvent__imp_SDL_PollEventSDL_WaitEvent__imp_SDL_WaitEventSDL_WaitEventTimeout__imp_SDL_WaitEventTimeoutSDL_PushEvent__imp_SDL_PushEventSDL_SetEventFilter__imp_SDL_SetEventFilterSDL_GetEventFilter__imp_SDL_GetEventFilterSDL_AddEventWatch__imp_SDL_AddEventWatchSDL_RemoveEventWatch__imp_SDL_RemoveEventWatchSDL_FilterEvents__imp_SDL_FilterEventsSDL_SetEventEnabled__imp_SDL_SetEventEnabledSDL_EventEnabled__imp_SDL_EventEnabledSDL_RegisterEvents__imp_SDL_RegisterEventsSDL_GetWindowFromEvent__imp_SDL_GetWindowFromEventSDL_GetBasePath__imp_SDL_GetBasePathSDL_GetPrefPath__imp_SDL_GetPrefPathSDL_GetUserFolder__imp_SDL_GetUserFolderSDL_CreateDirectory__imp_SDL_CreateDirectorySDL_EnumerateDirectory__imp_SDL_EnumerateDirectorySDL_RemovePath__imp_SDL_RemovePathSDL_RenamePath__imp_SDL_RenamePathSDL_CopyFile__imp_SDL_CopyFileSDL_GetPathInfo__imp_SDL_GetPathInfoSDL_GlobDirectory__imp_SDL_GlobDirectorySDL_GetCurrentDirectory__imp_SDL_GetCurrentDirectorySDL_GPUSupportsShaderFormats__imp_SDL_GPUSupportsShaderFormatsSDL_GPUSupportsProperties__imp_SDL_GPUSupportsPropertiesSDL_CreateGPUDevice__imp_SDL_CreateGPUDeviceSDL_CreateGPUDeviceWithProperties__imp_SDL_CreateGPUDeviceWithPropertiesSDL_DestroyGPUDevice__imp_SDL_DestroyGPUDeviceSDL_GetNumGPUDrivers__imp_SDL_GetNumGPUDriversSDL_GetGPUDriver__imp_SDL_GetGPUDriverSDL_GetGPUDeviceDriver__imp_SDL_GetGPUDeviceDriverSDL_GetGPUShaderFormats__imp_SDL_GetGPUShaderFormatsSDL_CreateGPUComputePipeline__imp_SDL_CreateGPUComputePipelineSDL_CreateGPUGraphicsPipeline__imp_SDL_CreateGPUGraphicsPipelineSDL_CreateGPUSampler__imp_SDL_CreateGPUSamplerSDL_CreateGPUShader__imp_SDL_CreateGPUShaderSDL_CreateGPUTexture__imp_SDL_CreateGPUTextureSDL_CreateGPUBuffer__imp_SDL_CreateGPUBufferSDL_CreateGPUTransferBuffer__imp_SDL_CreateGPUTransferBufferSDL_SetGPUBufferName__imp_SDL_SetGPUBufferNameSDL_SetGPUTextureName__imp_SDL_SetGPUTextureNameSDL_InsertGPUDebugLabel__imp_SDL_InsertGPUDebugLabelSDL_PushGPUDebugGroup__imp_SDL_PushGPUDebugGroupSDL_PopGPUDebugGroup__imp_SDL_PopGPUDebugGroupSDL_ReleaseGPUTexture__imp_SDL_ReleaseGPUTextureSDL_ReleaseGPUSampler__imp_SDL_ReleaseGPUSamplerSDL_ReleaseGPUBuffer__imp_SDL_ReleaseGPUBufferSDL_ReleaseGPUTransferBuffer__imp_SDL_ReleaseGPUTransferBufferSDL_ReleaseGPUComputePipeline__imp_SDL_ReleaseGPUComputePipelineSDL_ReleaseGPUShader__imp_SDL_ReleaseGPUShaderSDL_ReleaseGPUGraphicsPipeline__imp_SDL_ReleaseGPUGraphicsPipelineSDL_AcquireGPUCommandBuffer__imp_SDL_AcquireGPUCommandBufferSDL_PushGPUVertexUniformData__imp_SDL_PushGPUVertexUniformDataSDL_PushGPUFragmentUniformData__imp_SDL_PushGPUFragmentUniformDataSDL_PushGPUComputeUniformData__imp_SDL_PushGPUComputeUniformDataSDL_BeginGPURenderPass__imp_SDL_BeginGPURenderPassSDL_BindGPUGraphicsPipeline__imp_SDL_BindGPUGraphicsPipelineSDL_SetGPUViewport__imp_SDL_SetGPUViewportSDL_SetGPUScissor__imp_SDL_SetGPUScissorSDL_SetGPUBlendConstants__imp_SDL_SetGPUBlendConstantsSDL_SetGPUStencilReference__imp_SDL_SetGPUStencilReferenceSDL_BindGPUVertexBuffers__imp_SDL_BindGPUVertexBuffersSDL_BindGPUIndexBuffer__imp_SDL_BindGPUIndexBufferSDL_BindGPUVertexSamplers__imp_SDL_BindGPUVertexSamplersSDL_BindGPUVertexStorageTextures__imp_SDL_BindGPUVertexStorageTexturesSDL_BindGPUVertexStorageBuffers__imp_SDL_BindGPUVertexStorageBuffersSDL_BindGPUFragmentSamplers__imp_SDL_BindGPUFragmentSamplersSDL_BindGPUFragmentStorageTextures__imp_SDL_BindGPUFragmentStorageTexturesSDL_BindGPUFragmentStorageBuffers__imp_SDL_BindGPUFragmentStorageBuffersSDL_DrawGPUIndexedPrimitives__imp_SDL_DrawGPUIndexedPrimitivesSDL_DrawGPUPrimitives__imp_SDL_DrawGPUPrimitivesSDL_DrawGPUPrimitivesIndirect__imp_SDL_DrawGPUPrimitivesIndirectSDL_DrawGPUIndexedPrimitivesIndirect__imp_SDL_DrawGPUIndexedPrimitivesIndirectSDL_EndGPURenderPass__imp_SDL_EndGPURenderPassSDL_BeginGPUComputePass__imp_SDL_BeginGPUComputePassSDL_BindGPUComputePipeline__imp_SDL_BindGPUComputePipelineSDL_BindGPUComputeSamplers__imp_SDL_BindGPUComputeSamplersSDL_BindGPUComputeStorageTextures__imp_SDL_BindGPUComputeStorageTexturesSDL_BindGPUComputeStorageBuffers__imp_SDL_BindGPUComputeStorageBuffersSDL_DispatchGPUCompute__imp_SDL_DispatchGPUComputeSDL_DispatchGPUComputeIndirect__imp_SDL_DispatchGPUComputeIndirectSDL_EndGPUComputePass__imp_SDL_EndGPUComputePassSDL_MapGPUTransferBuffer__imp_SDL_MapGPUTransferBufferSDL_UnmapGPUTransferBuffer__imp_SDL_UnmapGPUTransferBufferSDL_BeginGPUCopyPass__imp_SDL_BeginGPUCopyPassSDL_UploadToGPUTexture__imp_SDL_UploadToGPUTextureSDL_UploadToGPUBuffer__imp_SDL_UploadToGPUBufferSDL_CopyGPUTextureToTexture__imp_SDL_CopyGPUTextureToTextureSDL_CopyGPUBufferToBuffer__imp_SDL_CopyGPUBufferToBufferSDL_DownloadFromGPUTexture__imp_SDL_DownloadFromGPUTextureSDL_DownloadFromGPUBuffer__imp_SDL_DownloadFromGPUBufferSDL_EndGPUCopyPass__imp_SDL_EndGPUCopyPassSDL_GenerateMipmapsForGPUTexture__imp_SDL_GenerateMipmapsForGPUTextureSDL_BlitGPUTexture__imp_SDL_BlitGPUTextureSDL_WindowSupportsGPUSwapchainComposition__imp_SDL_WindowSupportsGPUSwapchainCompositionSDL_WindowSupportsGPUPresentMode__imp_SDL_WindowSupportsGPUPresentModeSDL_ClaimWindowForGPUDevice__imp_SDL_ClaimWindowForGPUDeviceSDL_ReleaseWindowFromGPUDevice__imp_SDL_ReleaseWindowFromGPUDeviceSDL_SetGPUSwapchainParameters__imp_SDL_SetGPUSwapchainParametersSDL_SetGPUAllowedFramesInFlight__imp_SDL_SetGPUAllowedFramesInFlightSDL_GetGPUSwapchainTextureFormat__imp_SDL_GetGPUSwapchainTextureFormatSDL_AcquireGPUSwapchainTexture__imp_SDL_AcquireGPUSwapchainTextureSDL_WaitForGPUSwapchain__imp_SDL_WaitForGPUSwapchainSDL_WaitAndAcquireGPUSwapchainTexture__imp_SDL_WaitAndAcquireGPUSwapchainTextureSDL_SubmitGPUCommandBuffer__imp_SDL_SubmitGPUCommandBufferSDL_SubmitGPUCommandBufferAndAcquireFence__imp_SDL_SubmitGPUCommandBufferAndAcquireFenceSDL_CancelGPUCommandBuffer__imp_SDL_CancelGPUCommandBufferSDL_WaitForGPUIdle__imp_SDL_WaitForGPUIdleSDL_WaitForGPUFences__imp_SDL_WaitForGPUFencesSDL_QueryGPUFence__imp_SDL_QueryGPUFenceSDL_ReleaseGPUFence__imp_SDL_ReleaseGPUFenceSDL_GPUTextureFormatTexelBlockSize__imp_SDL_GPUTextureFormatTexelBlockSizeSDL_GPUTextureSupportsFormat__imp_SDL_GPUTextureSupportsFormatSDL_GPUTextureSupportsSampleCount__imp_SDL_GPUTextureSupportsSampleCountSDL_CalculateGPUTextureFormatSize__imp_SDL_CalculateGPUTextureFormatSizeSDL_GetHaptics__imp_SDL_GetHapticsSDL_GetHapticNameForID__imp_SDL_GetHapticNameForIDSDL_OpenHaptic__imp_SDL_OpenHapticSDL_GetHapticFromID__imp_SDL_GetHapticFromIDSDL_GetHapticID__imp_SDL_GetHapticIDSDL_GetHapticName__imp_SDL_GetHapticNameSDL_IsMouseHaptic__imp_SDL_IsMouseHapticSDL_OpenHapticFromMouse__imp_SDL_OpenHapticFromMouseSDL_IsJoystickHaptic__imp_SDL_IsJoystickHapticSDL_OpenHapticFromJoystick__imp_SDL_OpenHapticFromJoystickSDL_CloseHaptic__imp_SDL_CloseHapticSDL_GetMaxHapticEffects__imp_SDL_GetMaxHapticEffectsSDL_GetMaxHapticEffectsPlaying__imp_SDL_GetMaxHapticEffectsPlayingSDL_GetHapticFeatures__imp_SDL_GetHapticFeaturesSDL_GetNumHapticAxes__imp_SDL_GetNumHapticAxesSDL_HapticEffectSupported__imp_SDL_HapticEffectSupportedSDL_CreateHapticEffect__imp_SDL_CreateHapticEffectSDL_UpdateHapticEffect__imp_SDL_UpdateHapticEffectSDL_RunHapticEffect__imp_SDL_RunHapticEffectSDL_StopHapticEffect__imp_SDL_StopHapticEffectSDL_DestroyHapticEffect__imp_SDL_DestroyHapticEffectSDL_GetHapticEffectStatus__imp_SDL_GetHapticEffectStatusSDL_SetHapticGain__imp_SDL_SetHapticGainSDL_SetHapticAutocenter__imp_SDL_SetHapticAutocenterSDL_PauseHaptic__imp_SDL_PauseHapticSDL_ResumeHaptic__imp_SDL_ResumeHapticSDL_StopHapticEffects__imp_SDL_StopHapticEffectsSDL_HapticRumbleSupported__imp_SDL_HapticRumbleSupportedSDL_InitHapticRumble__imp_SDL_InitHapticRumbleSDL_PlayHapticRumble__imp_SDL_PlayHapticRumbleSDL_StopHapticRumble__imp_SDL_StopHapticRumbleSDL_hid_init__imp_SDL_hid_initSDL_hid_exit__imp_SDL_hid_exitSDL_hid_device_change_count__imp_SDL_hid_device_change_countSDL_hid_enumerate__imp_SDL_hid_enumerateSDL_hid_free_enumeration__imp_SDL_hid_free_enumerationSDL_hid_open__imp_SDL_hid_openSDL_hid_open_path__imp_SDL_hid_open_pathSDL_hid_write__imp_SDL_hid_writeSDL_hid_read_timeout__imp_SDL_hid_read_timeoutSDL_hid_read__imp_SDL_hid_readSDL_hid_set_nonblocking__imp_SDL_hid_set_nonblockingSDL_hid_send_feature_report__imp_SDL_hid_send_feature_reportSDL_hid_get_feature_report__imp_SDL_hid_get_feature_reportSDL_hid_get_input_report__imp_SDL_hid_get_input_reportSDL_hid_close__imp_SDL_hid_closeSDL_hid_get_manufacturer_string__imp_SDL_hid_get_manufacturer_stringSDL_hid_get_product_string__imp_SDL_hid_get_product_stringSDL_hid_get_serial_number_string__imp_SDL_hid_get_serial_number_stringSDL_hid_get_indexed_string__imp_SDL_hid_get_indexed_stringSDL_hid_get_device_info__imp_SDL_hid_get_device_infoSDL_hid_get_report_descriptor__imp_SDL_hid_get_report_descriptorSDL_hid_ble_scan__imp_SDL_hid_ble_scanSDL_SetHintWithPriority__imp_SDL_SetHintWithPrioritySDL_SetHint__imp_SDL_SetHintSDL_ResetHint__imp_SDL_ResetHintSDL_ResetHints__imp_SDL_ResetHintsSDL_GetHint__imp_SDL_GetHintSDL_GetHintBoolean__imp_SDL_GetHintBooleanSDL_AddHintCallback__imp_SDL_AddHintCallbackSDL_RemoveHintCallback__imp_SDL_RemoveHintCallbackSDL_Init__imp_SDL_InitSDL_InitSubSystem__imp_SDL_InitSubSystemSDL_QuitSubSystem__imp_SDL_QuitSubSystemSDL_WasInit__imp_SDL_WasInitSDL_Quit__imp_SDL_QuitSDL_IsMainThread__imp_SDL_IsMainThreadSDL_RunOnMainThread__imp_SDL_RunOnMainThreadSDL_SetAppMetadata__imp_SDL_SetAppMetadataSDL_SetAppMetadataProperty__imp_SDL_SetAppMetadataPropertySDL_GetAppMetadataProperty__imp_SDL_GetAppMetadataPropertySDL_LoadObject__imp_SDL_LoadObjectSDL_LoadFunction__imp_SDL_LoadFunctionSDL_UnloadObject__imp_SDL_UnloadObjectSDL_GetPreferredLocales__imp_SDL_GetPreferredLocalesSDL_SetLogPriorities__imp_SDL_SetLogPrioritiesSDL_SetLogPriority__imp_SDL_SetLogPrioritySDL_GetLogPriority__imp_SDL_GetLogPrioritySDL_ResetLogPriorities__imp_SDL_ResetLogPrioritiesSDL_SetLogPriorityPrefix__imp_SDL_SetLogPriorityPrefixSDL_Log__imp_SDL_LogSDL_LogTrace__imp_SDL_LogTraceSDL_LogVerbose__imp_SDL_LogVerboseSDL_LogDebug__imp_SDL_LogDebugSDL_LogInfo__imp_SDL_LogInfoSDL_LogWarn__imp_SDL_LogWarnSDL_LogError__imp_SDL_LogErrorSDL_LogCritical__imp_SDL_LogCriticalSDL_LogMessage__imp_SDL_LogMessageSDL_LogMessageV__imp_SDL_LogMessageVSDL_GetDefaultLogOutputFunction__imp_SDL_GetDefaultLogOutputFunctionSDL_GetLogOutputFunction__imp_SDL_GetLogOutputFunctionSDL_SetLogOutputFunction__imp_SDL_SetLogOutputFunctionSDL_ShowMessageBox__imp_SDL_ShowMessageBoxSDL_ShowSimpleMessageBox__imp_SDL_ShowSimpleMessageBoxSDL_Metal_CreateView__imp_SDL_Metal_CreateViewSDL_Metal_DestroyView__imp_SDL_Metal_DestroyViewSDL_Metal_GetLayer__imp_SDL_Metal_GetLayerSDL_OpenURL__imp_SDL_OpenURLSDL_GetPlatform__imp_SDL_GetPlatformSDL_CreateProcess__imp_SDL_CreateProcessSDL_CreateProcessWithProperties__imp_SDL_CreateProcessWithPropertiesSDL_GetProcessProperties__imp_SDL_GetProcessPropertiesSDL_ReadProcess__imp_SDL_ReadProcessSDL_GetProcessInput__imp_SDL_GetProcessInputSDL_GetProcessOutput__imp_SDL_GetProcessOutputSDL_KillProcess__imp_SDL_KillProcessSDL_WaitProcess__imp_SDL_WaitProcessSDL_DestroyProcess__imp_SDL_DestroyProcessSDL_GetNumRenderDrivers__imp_SDL_GetNumRenderDriversSDL_GetRenderDriver__imp_SDL_GetRenderDriverSDL_CreateWindowAndRenderer__imp_SDL_CreateWindowAndRendererSDL_CreateRenderer__imp_SDL_CreateRendererSDL_CreateRendererWithProperties__imp_SDL_CreateRendererWithPropertiesSDL_CreateSoftwareRenderer__imp_SDL_CreateSoftwareRendererSDL_GetRenderer__imp_SDL_GetRendererSDL_GetRenderWindow__imp_SDL_GetRenderWindowSDL_GetRendererName__imp_SDL_GetRendererNameSDL_GetRendererProperties__imp_SDL_GetRendererPropertiesSDL_GetRenderOutputSize__imp_SDL_GetRenderOutputSizeSDL_GetCurrentRenderOutputSize__imp_SDL_GetCurrentRenderOutputSizeSDL_CreateTexture__imp_SDL_CreateTextureSDL_CreateTextureFromSurface__imp_SDL_CreateTextureFromSurfaceSDL_CreateTextureWithProperties__imp_SDL_CreateTextureWithPropertiesSDL_GetTextureProperties__imp_SDL_GetTexturePropertiesSDL_GetRendererFromTexture__imp_SDL_GetRendererFromTextureSDL_GetTextureSize__imp_SDL_GetTextureSizeSDL_SetTextureColorMod__imp_SDL_SetTextureColorModSDL_SetTextureColorModFloat__imp_SDL_SetTextureColorModFloatSDL_GetTextureColorMod__imp_SDL_GetTextureColorModSDL_GetTextureColorModFloat__imp_SDL_GetTextureColorModFloatSDL_SetTextureAlphaMod__imp_SDL_SetTextureAlphaModSDL_SetTextureAlphaModFloat__imp_SDL_SetTextureAlphaModFloatSDL_GetTextureAlphaMod__imp_SDL_GetTextureAlphaModSDL_GetTextureAlphaModFloat__imp_SDL_GetTextureAlphaModFloatSDL_SetTextureBlendMode__imp_SDL_SetTextureBlendModeSDL_GetTextureBlendMode__imp_SDL_GetTextureBlendModeSDL_SetTextureScaleMode__imp_SDL_SetTextureScaleModeSDL_GetTextureScaleMode__imp_SDL_GetTextureScaleModeSDL_UpdateTexture__imp_SDL_UpdateTextureSDL_UpdateYUVTexture__imp_SDL_UpdateYUVTextureSDL_UpdateNVTexture__imp_SDL_UpdateNVTextureSDL_LockTexture__imp_SDL_LockTextureSDL_LockTextureToSurface__imp_SDL_LockTextureToSurfaceSDL_UnlockTexture__imp_SDL_UnlockTextureSDL_SetRenderTarget__imp_SDL_SetRenderTargetSDL_GetRenderTarget__imp_SDL_GetRenderTargetSDL_SetRenderLogicalPresentation__imp_SDL_SetRenderLogicalPresentationSDL_GetRenderLogicalPresentation__imp_SDL_GetRenderLogicalPresentationSDL_GetRenderLogicalPresentationRect__imp_SDL_GetRenderLogicalPresentationRectSDL_RenderCoordinatesFromWindow__imp_SDL_RenderCoordinatesFromWindowSDL_RenderCoordinatesToWindow__imp_SDL_RenderCoordinatesToWindowSDL_ConvertEventToRenderCoordinates__imp_SDL_ConvertEventToRenderCoordinatesSDL_SetRenderViewport__imp_SDL_SetRenderViewportSDL_GetRenderViewport__imp_SDL_GetRenderViewportSDL_RenderViewportSet__imp_SDL_RenderViewportSetSDL_GetRenderSafeArea__imp_SDL_GetRenderSafeAreaSDL_SetRenderClipRect__imp_SDL_SetRenderClipRectSDL_GetRenderClipRect__imp_SDL_GetRenderClipRectSDL_RenderClipEnabled__imp_SDL_RenderClipEnabledSDL_SetRenderScale__imp_SDL_SetRenderScaleSDL_GetRenderScale__imp_SDL_GetRenderScaleSDL_SetRenderDrawColor__imp_SDL_SetRenderDrawColorSDL_SetRenderDrawColorFloat__imp_SDL_SetRenderDrawColorFloatSDL_GetRenderDrawColor__imp_SDL_GetRenderDrawColorSDL_GetRenderDrawColorFloat__imp_SDL_GetRenderDrawColorFloatSDL_SetRenderColorScale__imp_SDL_SetRenderColorScaleSDL_GetRenderColorScale__imp_SDL_GetRenderColorScaleSDL_SetRenderDrawBlendMode__imp_SDL_SetRenderDrawBlendModeSDL_GetRenderDrawBlendMode__imp_SDL_GetRenderDrawBlendModeSDL_RenderClear__imp_SDL_RenderClearSDL_RenderPoint__imp_SDL_RenderPointSDL_RenderPoints__imp_SDL_RenderPointsSDL_RenderLine__imp_SDL_RenderLineSDL_RenderLines__imp_SDL_RenderLinesSDL_RenderRect__imp_SDL_RenderRectSDL_RenderRects__imp_SDL_RenderRectsSDL_RenderFillRect__imp_SDL_RenderFillRectSDL_RenderFillRects__imp_SDL_RenderFillRectsSDL_RenderTexture__imp_SDL_RenderTextureSDL_RenderTextureRotated__imp_SDL_RenderTextureRotatedSDL_RenderTextureAffine__imp_SDL_RenderTextureAffineSDL_RenderTextureTiled__imp_SDL_RenderTextureTiledSDL_RenderTexture9Grid__imp_SDL_RenderTexture9GridSDL_RenderGeometry__imp_SDL_RenderGeometrySDL_RenderGeometryRaw__imp_SDL_RenderGeometryRawSDL_RenderReadPixels__imp_SDL_RenderReadPixelsSDL_RenderPresent__imp_SDL_RenderPresentSDL_DestroyTexture__imp_SDL_DestroyTextureSDL_DestroyRenderer__imp_SDL_DestroyRendererSDL_FlushRenderer__imp_SDL_FlushRendererSDL_GetRenderMetalLayer__imp_SDL_GetRenderMetalLayerSDL_GetRenderMetalCommandEncoder__imp_SDL_GetRenderMetalCommandEncoderSDL_AddVulkanRenderSemaphores__imp_SDL_AddVulkanRenderSemaphoresSDL_SetRenderVSync__imp_SDL_SetRenderVSyncSDL_GetRenderVSync__imp_SDL_GetRenderVSyncSDL_RenderDebugText__imp_SDL_RenderDebugTextSDL_RenderDebugTextFormat__imp_SDL_RenderDebugTextFormatSDL_OpenTitleStorage__imp_SDL_OpenTitleStorageSDL_OpenUserStorage__imp_SDL_OpenUserStorageSDL_OpenFileStorage__imp_SDL_OpenFileStorageSDL_OpenStorage__imp_SDL_OpenStorageSDL_CloseStorage__imp_SDL_CloseStorageSDL_StorageReady__imp_SDL_StorageReadySDL_GetStorageFileSize__imp_SDL_GetStorageFileSizeSDL_ReadStorageFile__imp_SDL_ReadStorageFileSDL_WriteStorageFile__imp_SDL_WriteStorageFileSDL_CreateStorageDirectory__imp_SDL_CreateStorageDirectorySDL_EnumerateStorageDirectory__imp_SDL_EnumerateStorageDirectorySDL_RemoveStoragePath__imp_SDL_RemoveStoragePathSDL_RenameStoragePath__imp_SDL_RenameStoragePathSDL_CopyStorageFile__imp_SDL_CopyStorageFileSDL_GetStoragePathInfo__imp_SDL_GetStoragePathInfoSDL_GetStorageSpaceRemaining__imp_SDL_GetStorageSpaceRemainingSDL_GlobStorageDirectory__imp_SDL_GlobStorageDirectorySDL_SetWindowsMessageHook__imp_SDL_SetWindowsMessageHookSDL_GetDirect3D9AdapterIndex__imp_SDL_GetDirect3D9AdapterIndexSDL_GetDXGIOutputInfo__imp_SDL_GetDXGIOutputInfoSDL_SetX11EventHook__imp_SDL_SetX11EventHookSDL_IsTablet__imp_SDL_IsTabletSDL_IsTV__imp_SDL_IsTVSDL_GetSandbox__imp_SDL_GetSandboxSDL_OnApplicationWillTerminate__imp_SDL_OnApplicationWillTerminateSDL_OnApplicationDidReceiveMemoryWarning__imp_SDL_OnApplicationDidReceiveMemoryWarningSDL_OnApplicationWillEnterBackground__imp_SDL_OnApplicationWillEnterBackgroundSDL_OnApplicationDidEnterBackground__imp_SDL_OnApplicationDidEnterBackgroundSDL_OnApplicationWillEnterForeground__imp_SDL_OnApplicationWillEnterForegroundSDL_OnApplicationDidEnterForeground__imp_SDL_OnApplicationDidEnterForegroundSDL_GetDateTimeLocalePreferences__imp_SDL_GetDateTimeLocalePreferencesSDL_GetCurrentTime__imp_SDL_GetCurrentTimeSDL_TimeToDateTime__imp_SDL_TimeToDateTimeSDL_DateTimeToTime__imp_SDL_DateTimeToTimeSDL_TimeToWindows__imp_SDL_TimeToWindowsSDL_TimeFromWindows__imp_SDL_TimeFromWindowsSDL_GetDaysInMonth__imp_SDL_GetDaysInMonthSDL_GetDayOfYear__imp_SDL_GetDayOfYearSDL_GetDayOfWeek__imp_SDL_GetDayOfWeekSDL_GetTicks__imp_SDL_GetTicksSDL_GetTicksNS__imp_SDL_GetTicksNSSDL_GetPerformanceCounter__imp_SDL_GetPerformanceCounterSDL_GetPerformanceFrequency__imp_SDL_GetPerformanceFrequencySDL_Delay__imp_SDL_DelaySDL_DelayNS__imp_SDL_DelayNSSDL_DelayPrecise__imp_SDL_DelayPreciseSDL_AddTimer__imp_SDL_AddTimerSDL_AddTimerNS__imp_SDL_AddTimerNSSDL_RemoveTimer__imp_SDL_RemoveTimerSDL_CreateTray__imp_SDL_CreateTraySDL_SetTrayIcon__imp_SDL_SetTrayIconSDL_SetTrayTooltip__imp_SDL_SetTrayTooltipSDL_CreateTrayMenu__imp_SDL_CreateTrayMenuSDL_CreateTraySubmenu__imp_SDL_CreateTraySubmenuSDL_GetTrayMenu__imp_SDL_GetTrayMenuSDL_GetTraySubmenu__imp_SDL_GetTraySubmenuSDL_GetTrayEntries__imp_SDL_GetTrayEntriesSDL_RemoveTrayEntry__imp_SDL_RemoveTrayEntrySDL_InsertTrayEntryAt__imp_SDL_InsertTrayEntryAtSDL_SetTrayEntryLabel__imp_SDL_SetTrayEntryLabelSDL_GetTrayEntryLabel__imp_SDL_GetTrayEntryLabelSDL_SetTrayEntryChecked__imp_SDL_SetTrayEntryCheckedSDL_GetTrayEntryChecked__imp_SDL_GetTrayEntryCheckedSDL_SetTrayEntryEnabled__imp_SDL_SetTrayEntryEnabledSDL_GetTrayEntryEnabled__imp_SDL_GetTrayEntryEnabledSDL_SetTrayEntryCallback__imp_SDL_SetTrayEntryCallbackSDL_ClickTrayEntry__imp_SDL_ClickTrayEntrySDL_DestroyTray__imp_SDL_DestroyTraySDL_GetTrayEntryParent__imp_SDL_GetTrayEntryParentSDL_GetTrayMenuParentEntry__imp_SDL_GetTrayMenuParentEntrySDL_GetTrayMenuParentTray__imp_SDL_GetTrayMenuParentTraySDL_UpdateTrays__imp_SDL_UpdateTraysSDL_GetVersion__imp_SDL_GetVersionSDL_GetRevision__imp_SDL_GetRevisionSDL_SetMainReady__imp_SDL_SetMainReadySDL_RunApp__imp_SDL_RunAppSDL_EnterAppMainCallbacks__imp_SDL_EnterAppMainCallbacksSDL_RegisterApp__imp_SDL_RegisterAppSDL_UnregisterApp__imp_SDL_UnregisterAppSDL_GDKSuspendComplete__imp_SDL_GDKSuspendCompleteSDL_Vulkan_LoadLibrary__imp_SDL_Vulkan_LoadLibrarySDL_Vulkan_GetVkGetInstanceProcAddr__imp_SDL_Vulkan_GetVkGetInstanceProcAddrSDL_Vulkan_UnloadLibrary__imp_SDL_Vulkan_UnloadLibrarySDL_Vulkan_GetInstanceExtensions__imp_SDL_Vulkan_GetInstanceExtensionsSDL_Vulkan_CreateSurface__imp_SDL_Vulkan_CreateSurfaceSDL_Vulkan_DestroySurface__imp_SDL_Vulkan_DestroySurfaceSDL_Vulkan_GetPresentationSupport__imp_SDL_Vulkan_GetPresentationSupportSDL_DYNAPI_entry__imp_SDL_DYNAPI_entry/               -1                      0       67114     `
�������.�x�z���Z���&���Ύ^7:���w��^L��>�&��f�t���D������v������j�
�8����^������|���F����b���2b��0f��	��F���
�
vB
v	���^6��R����V��J�:
�j
p~DJ��	��B�����V40�V�����d�.��������V������������@����l���6�`���$�����N�*����B���p�����&�^����r�>�����������\���������>�t�Bbo���o>p�b,qF��N*�4�J�p����#���(n�@1�0
.�o�q��.^p`r�.�o�q�w�w=$��(Ҩp>�3B'�����N�4�8y�t����
���X{)]�N�DE�����>v�����RL�>��&D<�&j�,��M�>�' (ԳJ��`O.@:P��.�:���6�K���$d���T���&����8:d,��Z��tlR��F.�P��a�#$#�jXj�M�I�K�GvKRG�L�HFL"H~MZIM�H,��$�������������d�����\�4�B��t�nu�u"t@s�r�6<��=:e�s�p�*�Dt��@w85z�w�q$x r�x�ry�y�s�sD�vZv|z|`X'�=�e~&N�
sztK678q�%2%p3�/�tF�p/.�r���F��<��N�./`���|�������f�F�z����A�A�P����`Bb���p��&��U�(ڹ�"V"�i�iҒ~�������D�����.�����d�`�W(k�1$2�0@1|@�@x)b^�^�!�#p"8$�"N#"�/�/�JK��H���:|f��D�}b~�7�}}�~�|p O&+�u�*��.��bu�'$�������{Tld�.��"
�
�
�6�v�����:�����d���~��ފ��X���L�d�t��L���0��������H�"�
�F=�G0�@��� 
v�b��&�^�Ι����ȝ�V�@�J�\�6�>�EZ03�d ��X�>	���	�t�VR�����D��b�����:���������_�QlpZ�S�f�eYi�cZg�gPd�b�f0e�d�X0X�Y�Y8hf�hlcr�T�����k4�x���.�n��;���������X�~�6-��n&���.���ڵ��в���
�غ�:z���2S��\�ЃF����m����l�L�t�b�J��������j�B�! ���^�D�����x!�Į2������jg�g�Hm�,��:����SJ�`��~f��$&�������D�.�,���֛�8��,����������*�v��~�ԟ��F��r�Ηb�Dl��4}�l�����Ԥ��$m��h�\��m��T������J��m�~ln����f�f�}�l�+$���8*�J�ܽ���c��ʇ�������.�t���\�Ȫ��^�6(����`�k�@�|����`������Ҡv&�6�5�B�v���K$��,H����,�
�`A�>���`Ra�?B����A�x��8T>_^x�]�Nj�z��f��6�\�TW�2���
ڂ�i�i�8 9�L$�L�ܑ��<8�9:�:�:�7^;�zX|Z�B@:R\Q�O�R�O�Q�P��CC0B�l�|{ zl{R��� 8 ��t�U�VJW\V�[� ��T�T�ZF.��f��X�x33rU�TP[�n,!@���z& S�{�y(�V��t�����%���vDvPlj�j^k %J�ګ�8���n���9�R9�+��X�&�����;t��h�<M���pf> f��F�8?���^�|�����H��������d���������|�h��6�������N�"c�c���zT�DE���Dji4n�nXo�$`$�L�����^d~�B*-x-+�+�-t+�*@,�,z���2��ħ�1(2�2F<���=�=���F����!d��N(�f�>GH?�?�@��P���
���:�BC�C$D\�(�@�h�ؕv������������N���,��R�f)�)F��������N��X@YV0p����a*�t�*�VX*���ʋ:��������V���W"]�]P\�\�^8_�Z[�_�`~`ba`t[�[b^�]Q�O"bF�����t��Y&Z�;�<8n;�-ʭ��&Jj�A�]RU|WZ4,���`r�h�j��� @ V�P6�4T5�3�5T4چ"���I��$�(���T���T�\���nI�I8J�L<V�E����EdF����x��V����2�����V����)�Q8��������~���Jh*\JN&��b�����8������Hw	�`��2�������a��Ifw�dNMxy{zoqpekjlnm������������c������L����oj���tq8����@���s�R<RMFGNOPQS��y���o��������
!������kH��{��]��\�D3��G|}��rust�UTJVWF~�v�=�p6��4C�b*+^�P[LOSRIYHQMNXZKED���`���������������CBJA=r?@`_QTVXZ[Sa9���������������>�C�����y�������x�������1��KJL������������������������������������������������8���������������~�x����u�v�w��z�{���|�yt�������v��	
��
<�I��������
��A��xwu�b:���	�~����������>GIDE45`_<A2c:��}��nhmjdlfikecsltu�������������	%&(!"*�����#$"%���������;��8
6!7:<.0	Bv���������()�s��������������
 &
���V�EF�����|{��
�����ongq������./����������|}��(���)p����~Dl�h����}gifg�Gd�'�,X��&/cWba^���'�%#)'-+!m��$"(&,* �7�[]�_Z^Y\��3�>q���?rJ?67deQRXYMNKL[ZOPSWUTV;������*He�����������E���������KmUWYi\]j������50��hTgi�Uf����������������������
��z���=FHBC3@1b9�����������#$' )������$"?+A4 >59;=#B/wz	
_�\^]�%@�ed���ka�����,��������fPO�hr�����0�����-p+�12,�����������-.������-���3175;9/n��2064:8.vwxymz|}{YX~����,-���������������������������������� !")��'��($%&#RV������T3/012��.��prusqt������i��ogaNJ_EDB@Ib`FAMcKGL^OZ\[]Hj��+*��SWUCPQnkhl=;8764><5:9?�`��2�������a��Ifw�dNMxy{zoqpekjlnm������������c������L����oj���tq8����@���s�R<RMFGNOPQS��y���o��������
!������kH��{��]��\�D3��G|}��rust�UTJVWF~�v�=�p6��4C�b*+^�P[LOSRIYHQMNXZKED���`���������������CBJA=r?@`_QTVXZ[Sa9���������������>�C�����y�������x�������1��KJL������������������������������������������������8���������������~�x����u�v�w��z�{���|�yt�������v��	
��
<�I��������
��A��xwu�b:���	�~����������>GIDE45`_<A2c:��}��nhmjdlfikecsltu�������������	%&(!"*�����#$"%���������;��8
6!7:<.0	Bv���������()�s��������������
 &
���V�EF�����|{��
�����ongq������./����������|}��(���)p����~Dl�h����}gifg�Gd�'�,X��&/cWba^���'�%#)'-+!m��$"(&,* �7�[]�_Z^Y\��3�>q���?rJ?67deQRXYMNKL[ZOPSWUTV;������*He�����������E���������KmUWYi\]j������50��hTgi�Uf����������������������
��z���=FHBC3@1b9�����������#$' )������$"?+A4 >59;=#B/wz	
_�\^]�%@�ed���ka�����,��������fPO�hr�����0�����-p+�12,�����������-.������-���3175;9/n��2064:8.vwxymz|}{YX~����,-���������������������������������� !")��'��($%&#RV������T3/012��.��prusqt������i��ogaNJ_EDB@Ib`FAMcKGL^OZ\[]Hj��+*��SWUCPQnkhl=;8764><5:9?SDL_AcquireCameraFrameSDL_AcquireGPUCommandBufferSDL_AcquireGPUSwapchainTextureSDL_AddAtomicIntSDL_AddEventWatchSDL_AddGamepadMappingSDL_AddGamepadMappingsFromFileSDL_AddGamepadMappingsFromIOSDL_AddHintCallbackSDL_AddSurfaceAlternateImageSDL_AddTimerSDL_AddTimerNSSDL_AddVulkanRenderSemaphoresSDL_AsyncIOFromFileSDL_AttachVirtualJoystickSDL_AudioDevicePausedSDL_AudioStreamDevicePausedSDL_BeginGPUComputePassSDL_BeginGPUCopyPassSDL_BeginGPURenderPassSDL_BindAudioStreamSDL_BindAudioStreamsSDL_BindGPUComputePipelineSDL_BindGPUComputeSamplersSDL_BindGPUComputeStorageBuffersSDL_BindGPUComputeStorageTexturesSDL_BindGPUFragmentSamplersSDL_BindGPUFragmentStorageBuffersSDL_BindGPUFragmentStorageTexturesSDL_BindGPUGraphicsPipelineSDL_BindGPUIndexBufferSDL_BindGPUVertexBuffersSDL_BindGPUVertexSamplersSDL_BindGPUVertexStorageBuffersSDL_BindGPUVertexStorageTexturesSDL_BlitGPUTextureSDL_BlitSurfaceSDL_BlitSurface9GridSDL_BlitSurfaceScaledSDL_BlitSurfaceTiledSDL_BlitSurfaceTiledWithScaleSDL_BlitSurfaceUncheckedSDL_BlitSurfaceUncheckedScaledSDL_BroadcastConditionSDL_CalculateGPUTextureFormatSizeSDL_CancelGPUCommandBufferSDL_CaptureMouseSDL_ClaimWindowForGPUDeviceSDL_CleanupTLSSDL_ClearAudioStreamSDL_ClearClipboardDataSDL_ClearCompositionSDL_ClearErrorSDL_ClearPropertySDL_ClearSurfaceSDL_ClickTrayEntrySDL_CloseAsyncIOSDL_CloseAudioDeviceSDL_CloseCameraSDL_CloseGamepadSDL_CloseHapticSDL_CloseIOSDL_CloseJoystickSDL_CloseSensorSDL_CloseStorageSDL_CompareAndSwapAtomicIntSDL_CompareAndSwapAtomicPointerSDL_CompareAndSwapAtomicU32SDL_ComposeCustomBlendModeSDL_ConvertAudioSamplesSDL_ConvertEventToRenderCoordinatesSDL_ConvertPixelsSDL_ConvertPixelsAndColorspaceSDL_ConvertSurfaceSDL_ConvertSurfaceAndColorspaceSDL_CopyFileSDL_CopyGPUBufferToBufferSDL_CopyGPUTextureToTextureSDL_CopyPropertiesSDL_CopyStorageFileSDL_CreateAsyncIOQueueSDL_CreateAudioStreamSDL_CreateColorCursorSDL_CreateConditionSDL_CreateCursorSDL_CreateDirectorySDL_CreateEnvironmentSDL_CreateGPUBufferSDL_CreateGPUComputePipelineSDL_CreateGPUDeviceSDL_CreateGPUDeviceWithPropertiesSDL_CreateGPUGraphicsPipelineSDL_CreateGPUSamplerSDL_CreateGPUShaderSDL_CreateGPUTextureSDL_CreateGPUTransferBufferSDL_CreateHapticEffectSDL_CreateMutexSDL_CreatePaletteSDL_CreatePopupWindowSDL_CreateProcessSDL_CreateProcessWithPropertiesSDL_CreatePropertiesSDL_CreateRWLockSDL_CreateRendererSDL_CreateRendererWithPropertiesSDL_CreateSemaphoreSDL_CreateSoftwareRendererSDL_CreateStorageDirectorySDL_CreateSurfaceSDL_CreateSurfaceFromSDL_CreateSurfacePaletteSDL_CreateSystemCursorSDL_CreateTextureSDL_CreateTextureFromSurfaceSDL_CreateTextureWithPropertiesSDL_CreateThreadRuntimeSDL_CreateThreadWithPropertiesRuntimeSDL_CreateTraySDL_CreateTrayMenuSDL_CreateTraySubmenuSDL_CreateWindowSDL_CreateWindowAndRendererSDL_CreateWindowWithPropertiesSDL_CursorVisibleSDL_DYNAPI_entrySDL_DateTimeToTimeSDL_DelaySDL_DelayNSSDL_DelayPreciseSDL_DestroyAsyncIOQueueSDL_DestroyAudioStreamSDL_DestroyConditionSDL_DestroyCursorSDL_DestroyEnvironmentSDL_DestroyGPUDeviceSDL_DestroyHapticEffectSDL_DestroyMutexSDL_DestroyPaletteSDL_DestroyProcessSDL_DestroyPropertiesSDL_DestroyRWLockSDL_DestroyRendererSDL_DestroySemaphoreSDL_DestroySurfaceSDL_DestroyTextureSDL_DestroyTraySDL_DestroyWindowSDL_DestroyWindowSurfaceSDL_DetachThreadSDL_DetachVirtualJoystickSDL_DisableScreenSaverSDL_DispatchGPUComputeSDL_DispatchGPUComputeIndirectSDL_DownloadFromGPUBufferSDL_DownloadFromGPUTextureSDL_DrawGPUIndexedPrimitivesSDL_DrawGPUIndexedPrimitivesIndirectSDL_DrawGPUPrimitivesSDL_DrawGPUPrimitivesIndirectSDL_DuplicateSurfaceSDL_EGL_GetCurrentConfigSDL_EGL_GetCurrentDisplaySDL_EGL_GetProcAddressSDL_EGL_GetWindowSurfaceSDL_EGL_SetAttributeCallbacksSDL_EnableScreenSaverSDL_EndGPUComputePassSDL_EndGPUCopyPassSDL_EndGPURenderPassSDL_EnterAppMainCallbacksSDL_EnumerateDirectorySDL_EnumeratePropertiesSDL_EnumerateStorageDirectorySDL_EventEnabledSDL_FillSurfaceRectSDL_FillSurfaceRectsSDL_FilterEventsSDL_FlashWindowSDL_FlipSurfaceSDL_FlushAudioStreamSDL_FlushEventSDL_FlushEventsSDL_FlushIOSDL_FlushRendererSDL_GDKSuspendCompleteSDL_GL_CreateContextSDL_GL_DestroyContextSDL_GL_ExtensionSupportedSDL_GL_GetAttributeSDL_GL_GetCurrentContextSDL_GL_GetCurrentWindowSDL_GL_GetProcAddressSDL_GL_GetSwapIntervalSDL_GL_LoadLibrarySDL_GL_MakeCurrentSDL_GL_ResetAttributesSDL_GL_SetAttributeSDL_GL_SetSwapIntervalSDL_GL_SwapWindowSDL_GL_UnloadLibrarySDL_GPUSupportsPropertiesSDL_GPUSupportsShaderFormatsSDL_GPUTextureFormatTexelBlockSizeSDL_GPUTextureSupportsFormatSDL_GPUTextureSupportsSampleCountSDL_GUIDToStringSDL_GamepadConnectedSDL_GamepadEventsEnabledSDL_GamepadHasAxisSDL_GamepadHasButtonSDL_GamepadHasSensorSDL_GamepadSensorEnabledSDL_GenerateMipmapsForGPUTextureSDL_GetAppMetadataPropertySDL_GetAssertionHandlerSDL_GetAssertionReportSDL_GetAsyncIOResultSDL_GetAsyncIOSizeSDL_GetAtomicIntSDL_GetAtomicPointerSDL_GetAtomicU32SDL_GetAudioDeviceChannelMapSDL_GetAudioDeviceFormatSDL_GetAudioDeviceGainSDL_GetAudioDeviceNameSDL_GetAudioDriverSDL_GetAudioFormatNameSDL_GetAudioPlaybackDevicesSDL_GetAudioRecordingDevicesSDL_GetAudioStreamAvailableSDL_GetAudioStreamDataSDL_GetAudioStreamDeviceSDL_GetAudioStreamFormatSDL_GetAudioStreamFrequencyRatioSDL_GetAudioStreamGainSDL_GetAudioStreamInputChannelMapSDL_GetAudioStreamOutputChannelMapSDL_GetAudioStreamPropertiesSDL_GetAudioStreamQueuedSDL_GetBasePathSDL_GetBooleanPropertySDL_GetCPUCacheLineSizeSDL_GetCameraDriverSDL_GetCameraFormatSDL_GetCameraIDSDL_GetCameraNameSDL_GetCameraPermissionStateSDL_GetCameraPositionSDL_GetCameraPropertiesSDL_GetCameraSupportedFormatsSDL_GetCamerasSDL_GetClipboardDataSDL_GetClipboardMimeTypesSDL_GetClipboardTextSDL_GetClosestFullscreenDisplayModeSDL_GetCurrentAudioDriverSDL_GetCurrentCameraDriverSDL_GetCurrentDirectorySDL_GetCurrentDisplayModeSDL_GetCurrentDisplayOrientationSDL_GetCurrentRenderOutputSizeSDL_GetCurrentThreadIDSDL_GetCurrentTimeSDL_GetCurrentVideoDriverSDL_GetCursorSDL_GetDXGIOutputInfoSDL_GetDateTimeLocalePreferencesSDL_GetDayOfWeekSDL_GetDayOfYearSDL_GetDaysInMonthSDL_GetDefaultAssertionHandlerSDL_GetDefaultCursorSDL_GetDefaultLogOutputFunctionSDL_GetDesktopDisplayModeSDL_GetDirect3D9AdapterIndexSDL_GetDisplayBoundsSDL_GetDisplayContentScaleSDL_GetDisplayForPointSDL_GetDisplayForRectSDL_GetDisplayForWindowSDL_GetDisplayNameSDL_GetDisplayPropertiesSDL_GetDisplayUsableBoundsSDL_GetDisplaysSDL_GetEnvironmentSDL_GetEnvironmentVariableSDL_GetEnvironmentVariablesSDL_GetErrorSDL_GetEventFilterSDL_GetFloatPropertySDL_GetFullscreenDisplayModesSDL_GetGPUDeviceDriverSDL_GetGPUDriverSDL_GetGPUShaderFormatsSDL_GetGPUSwapchainTextureFormatSDL_GetGamepadAppleSFSymbolsNameForAxisSDL_GetGamepadAppleSFSymbolsNameForButtonSDL_GetGamepadAxisSDL_GetGamepadAxisFromStringSDL_GetGamepadBindingsSDL_GetGamepadButtonSDL_GetGamepadButtonFromStringSDL_GetGamepadButtonLabelSDL_GetGamepadButtonLabelForTypeSDL_GetGamepadConnectionStateSDL_GetGamepadFirmwareVersionSDL_GetGamepadFromIDSDL_GetGamepadFromPlayerIndexSDL_GetGamepadGUIDForIDSDL_GetGamepadIDSDL_GetGamepadJoystickSDL_GetGamepadMappingSDL_GetGamepadMappingForGUIDSDL_GetGamepadMappingForIDSDL_GetGamepadMappingsSDL_GetGamepadNameSDL_GetGamepadNameForIDSDL_GetGamepadPathSDL_GetGamepadPathForIDSDL_GetGamepadPlayerIndexSDL_GetGamepadPlayerIndexForIDSDL_GetGamepadPowerInfoSDL_GetGamepadProductSDL_GetGamepadProductForIDSDL_GetGamepadProductVersionSDL_GetGamepadProductVersionForIDSDL_GetGamepadPropertiesSDL_GetGamepadSensorDataSDL_GetGamepadSensorDataRateSDL_GetGamepadSerialSDL_GetGamepadSteamHandleSDL_GetGamepadStringForAxisSDL_GetGamepadStringForButtonSDL_GetGamepadStringForTypeSDL_GetGamepadTouchpadFingerSDL_GetGamepadTypeSDL_GetGamepadTypeForIDSDL_GetGamepadTypeFromStringSDL_GetGamepadVendorSDL_GetGamepadVendorForIDSDL_GetGamepadsSDL_GetGlobalMouseStateSDL_GetGlobalPropertiesSDL_GetGrabbedWindowSDL_GetHapticEffectStatusSDL_GetHapticFeaturesSDL_GetHapticFromIDSDL_GetHapticIDSDL_GetHapticNameSDL_GetHapticNameForIDSDL_GetHapticsSDL_GetHintSDL_GetHintBooleanSDL_GetIOPropertiesSDL_GetIOSizeSDL_GetIOStatusSDL_GetJoystickAxisSDL_GetJoystickAxisInitialStateSDL_GetJoystickBallSDL_GetJoystickButtonSDL_GetJoystickConnectionStateSDL_GetJoystickFirmwareVersionSDL_GetJoystickFromIDSDL_GetJoystickFromPlayerIndexSDL_GetJoystickGUIDSDL_GetJoystickGUIDForIDSDL_GetJoystickGUIDInfoSDL_GetJoystickHatSDL_GetJoystickIDSDL_GetJoystickNameSDL_GetJoystickNameForIDSDL_GetJoystickPathSDL_GetJoystickPathForIDSDL_GetJoystickPlayerIndexSDL_GetJoystickPlayerIndexForIDSDL_GetJoystickPowerInfoSDL_GetJoystickProductSDL_GetJoystickProductForIDSDL_GetJoystickProductVersionSDL_GetJoystickProductVersionForIDSDL_GetJoystickPropertiesSDL_GetJoystickSerialSDL_GetJoystickTypeSDL_GetJoystickTypeForIDSDL_GetJoystickVendorSDL_GetJoystickVendorForIDSDL_GetJoysticksSDL_GetKeyFromNameSDL_GetKeyFromScancodeSDL_GetKeyNameSDL_GetKeyboardFocusSDL_GetKeyboardNameForIDSDL_GetKeyboardStateSDL_GetKeyboardsSDL_GetLogOutputFunctionSDL_GetLogPrioritySDL_GetMasksForPixelFormatSDL_GetMaxHapticEffectsSDL_GetMaxHapticEffectsPlayingSDL_GetMemoryFunctionsSDL_GetMiceSDL_GetModStateSDL_GetMouseFocusSDL_GetMouseNameForIDSDL_GetMouseStateSDL_GetNaturalDisplayOrientationSDL_GetNumAllocationsSDL_GetNumAudioDriversSDL_GetNumCameraDriversSDL_GetNumGPUDriversSDL_GetNumGamepadTouchpadFingersSDL_GetNumGamepadTouchpadsSDL_GetNumHapticAxesSDL_GetNumJoystickAxesSDL_GetNumJoystickBallsSDL_GetNumJoystickButtonsSDL_GetNumJoystickHatsSDL_GetNumLogicalCPUCoresSDL_GetNumRenderDriversSDL_GetNumVideoDriversSDL_GetNumberPropertySDL_GetOriginalMemoryFunctionsSDL_GetPathInfoSDL_GetPerformanceCounterSDL_GetPerformanceFrequencySDL_GetPixelFormatDetailsSDL_GetPixelFormatForMasksSDL_GetPixelFormatNameSDL_GetPlatformSDL_GetPointerPropertySDL_GetPowerInfoSDL_GetPrefPathSDL_GetPreferredLocalesSDL_GetPrimaryDisplaySDL_GetPrimarySelectionTextSDL_GetProcessInputSDL_GetProcessOutputSDL_GetProcessPropertiesSDL_GetPropertyTypeSDL_GetRGBSDL_GetRGBASDL_GetRealGamepadTypeSDL_GetRealGamepadTypeForIDSDL_GetRectAndLineIntersectionSDL_GetRectAndLineIntersectionFloatSDL_GetRectEnclosingPointsSDL_GetRectEnclosingPointsFloatSDL_GetRectIntersectionSDL_GetRectIntersectionFloatSDL_GetRectUnionSDL_GetRectUnionFloatSDL_GetRelativeMouseStateSDL_GetRenderClipRectSDL_GetRenderColorScaleSDL_GetRenderDrawBlendModeSDL_GetRenderDrawColorSDL_GetRenderDrawColorFloatSDL_GetRenderDriverSDL_GetRenderLogicalPresentationSDL_GetRenderLogicalPresentationRectSDL_GetRenderMetalCommandEncoderSDL_GetRenderMetalLayerSDL_GetRenderOutputSizeSDL_GetRenderSafeAreaSDL_GetRenderScaleSDL_GetRenderTargetSDL_GetRenderVSyncSDL_GetRenderViewportSDL_GetRenderWindowSDL_GetRendererSDL_GetRendererFromTextureSDL_GetRendererNameSDL_GetRendererPropertiesSDL_GetRevisionSDL_GetSIMDAlignmentSDL_GetSandboxSDL_GetScancodeFromKeySDL_GetScancodeFromNameSDL_GetScancodeNameSDL_GetSemaphoreValueSDL_GetSensorDataSDL_GetSensorFromIDSDL_GetSensorIDSDL_GetSensorNameSDL_GetSensorNameForIDSDL_GetSensorNonPortableTypeSDL_GetSensorNonPortableTypeForIDSDL_GetSensorPropertiesSDL_GetSensorTypeSDL_GetSensorTypeForIDSDL_GetSensorsSDL_GetSilenceValueForFormatSDL_GetStorageFileSizeSDL_GetStoragePathInfoSDL_GetStorageSpaceRemainingSDL_GetStringPropertySDL_GetSurfaceAlphaModSDL_GetSurfaceBlendModeSDL_GetSurfaceClipRectSDL_GetSurfaceColorKeySDL_GetSurfaceColorModSDL_GetSurfaceColorspaceSDL_GetSurfaceImagesSDL_GetSurfacePaletteSDL_GetSurfacePropertiesSDL_GetSystemRAMSDL_GetSystemThemeSDL_GetTLSSDL_GetTextInputAreaSDL_GetTextureAlphaModSDL_GetTextureAlphaModFloatSDL_GetTextureBlendModeSDL_GetTextureColorModSDL_GetTextureColorModFloatSDL_GetTexturePropertiesSDL_GetTextureScaleModeSDL_GetTextureSizeSDL_GetThreadIDSDL_GetThreadNameSDL_GetThreadStateSDL_GetTicksSDL_GetTicksNSSDL_GetTouchDeviceNameSDL_GetTouchDeviceTypeSDL_GetTouchDevicesSDL_GetTouchFingersSDL_GetTrayEntriesSDL_GetTrayEntryCheckedSDL_GetTrayEntryEnabledSDL_GetTrayEntryLabelSDL_GetTrayEntryParentSDL_GetTrayMenuSDL_GetTrayMenuParentEntrySDL_GetTrayMenuParentTraySDL_GetTraySubmenuSDL_GetUserFolderSDL_GetVersionSDL_GetVideoDriverSDL_GetWindowAspectRatioSDL_GetWindowBordersSizeSDL_GetWindowDisplayScaleSDL_GetWindowFlagsSDL_GetWindowFromEventSDL_GetWindowFromIDSDL_GetWindowFullscreenModeSDL_GetWindowICCProfileSDL_GetWindowIDSDL_GetWindowKeyboardGrabSDL_GetWindowMaximumSizeSDL_GetWindowMinimumSizeSDL_GetWindowMouseGrabSDL_GetWindowMouseRectSDL_GetWindowOpacitySDL_GetWindowParentSDL_GetWindowPixelDensitySDL_GetWindowPixelFormatSDL_GetWindowPositionSDL_GetWindowPropertiesSDL_GetWindowRelativeMouseModeSDL_GetWindowSafeAreaSDL_GetWindowSizeSDL_GetWindowSizeInPixelsSDL_GetWindowSurfaceSDL_GetWindowSurfaceVSyncSDL_GetWindowTitleSDL_GetWindowsSDL_GlobDirectorySDL_GlobStorageDirectorySDL_HapticEffectSupportedSDL_HapticRumbleSupportedSDL_HasARMSIMDSDL_HasAVXSDL_HasAVX2SDL_HasAVX512FSDL_HasAltiVecSDL_HasClipboardDataSDL_HasClipboardTextSDL_HasEventSDL_HasEventsSDL_HasGamepadSDL_HasJoystickSDL_HasKeyboardSDL_HasLASXSDL_HasLSXSDL_HasMMXSDL_HasMouseSDL_HasNEONSDL_HasPrimarySelectionTextSDL_HasPropertySDL_HasRectIntersectionSDL_HasRectIntersectionFloatSDL_HasSSESDL_HasSSE2SDL_HasSSE3SDL_HasSSE41SDL_HasSSE42SDL_HasScreenKeyboardSupportSDL_HideCursorSDL_HideWindowSDL_IOFromConstMemSDL_IOFromDynamicMemSDL_IOFromFileSDL_IOFromMemSDL_IOprintfSDL_IOvprintfSDL_InitSDL_InitHapticRumbleSDL_InitSubSystemSDL_InsertGPUDebugLabelSDL_InsertTrayEntryAtSDL_IsAudioDevicePhysicalSDL_IsAudioDevicePlaybackSDL_IsGamepadSDL_IsJoystickHapticSDL_IsJoystickVirtualSDL_IsMainThreadSDL_IsMouseHapticSDL_IsTVSDL_IsTabletSDL_JoystickConnectedSDL_JoystickEventsEnabledSDL_KillProcessSDL_LoadBMPSDL_LoadBMP_IOSDL_LoadFileSDL_LoadFileAsyncSDL_LoadFile_IOSDL_LoadFunctionSDL_LoadObjectSDL_LoadWAVSDL_LoadWAV_IOSDL_LockAudioStreamSDL_LockJoysticksSDL_LockMutexSDL_LockPropertiesSDL_LockRWLockForReadingSDL_LockRWLockForWritingSDL_LockSpinlockSDL_LockSurfaceSDL_LockTextureSDL_LockTextureToSurfaceSDL_LogSDL_LogCriticalSDL_LogDebugSDL_LogErrorSDL_LogInfoSDL_LogMessageSDL_LogMessageVSDL_LogTraceSDL_LogVerboseSDL_LogWarnSDL_MapGPUTransferBufferSDL_MapRGBSDL_MapRGBASDL_MapSurfaceRGBSDL_MapSurfaceRGBASDL_MaximizeWindowSDL_MemoryBarrierAcquireFunctionSDL_MemoryBarrierReleaseFunctionSDL_Metal_CreateViewSDL_Metal_DestroyViewSDL_Metal_GetLayerSDL_MinimizeWindowSDL_MixAudioSDL_OnApplicationDidEnterBackgroundSDL_OnApplicationDidEnterForegroundSDL_OnApplicationDidReceiveMemoryWarningSDL_OnApplicationWillEnterBackgroundSDL_OnApplicationWillEnterForegroundSDL_OnApplicationWillTerminateSDL_OpenAudioDeviceSDL_OpenAudioDeviceStreamSDL_OpenCameraSDL_OpenFileStorageSDL_OpenGamepadSDL_OpenHapticSDL_OpenHapticFromJoystickSDL_OpenHapticFromMouseSDL_OpenIOSDL_OpenJoystickSDL_OpenSensorSDL_OpenStorageSDL_OpenTitleStorageSDL_OpenURLSDL_OpenUserStorageSDL_OutOfMemorySDL_PauseAudioDeviceSDL_PauseAudioStreamDeviceSDL_PauseHapticSDL_PeepEventsSDL_PlayHapticRumbleSDL_PollEventSDL_PopGPUDebugGroupSDL_PremultiplyAlphaSDL_PremultiplySurfaceAlphaSDL_PumpEventsSDL_PushEventSDL_PushGPUComputeUniformDataSDL_PushGPUDebugGroupSDL_PushGPUFragmentUniformDataSDL_PushGPUVertexUniformDataSDL_PutAudioStreamDataSDL_QueryGPUFenceSDL_QuitSDL_QuitSubSystemSDL_RaiseWindowSDL_ReadAsyncIOSDL_ReadIOSDL_ReadProcessSDL_ReadS16BESDL_ReadS16LESDL_ReadS32BESDL_ReadS32LESDL_ReadS64BESDL_ReadS64LESDL_ReadS8SDL_ReadStorageFileSDL_ReadSurfacePixelSDL_ReadSurfacePixelFloatSDL_ReadU16BESDL_ReadU16LESDL_ReadU32BESDL_ReadU32LESDL_ReadU64BESDL_ReadU64LESDL_ReadU8SDL_RegisterAppSDL_RegisterEventsSDL_ReleaseCameraFrameSDL_ReleaseGPUBufferSDL_ReleaseGPUComputePipelineSDL_ReleaseGPUFenceSDL_ReleaseGPUGraphicsPipelineSDL_ReleaseGPUSamplerSDL_ReleaseGPUShaderSDL_ReleaseGPUTextureSDL_ReleaseGPUTransferBufferSDL_ReleaseWindowFromGPUDeviceSDL_ReloadGamepadMappingsSDL_RemoveEventWatchSDL_RemoveHintCallbackSDL_RemovePathSDL_RemoveStoragePathSDL_RemoveSurfaceAlternateImagesSDL_RemoveTimerSDL_RemoveTrayEntrySDL_RenamePathSDL_RenameStoragePathSDL_RenderClearSDL_RenderClipEnabledSDL_RenderCoordinatesFromWindowSDL_RenderCoordinatesToWindowSDL_RenderDebugTextSDL_RenderDebugTextFormatSDL_RenderFillRectSDL_RenderFillRectsSDL_RenderGeometrySDL_RenderGeometryRawSDL_RenderLineSDL_RenderLinesSDL_RenderPointSDL_RenderPointsSDL_RenderPresentSDL_RenderReadPixelsSDL_RenderRectSDL_RenderRectsSDL_RenderTextureSDL_RenderTexture9GridSDL_RenderTextureAffineSDL_RenderTextureRotatedSDL_RenderTextureTiledSDL_RenderViewportSetSDL_ReportAssertionSDL_ResetAssertionReportSDL_ResetHintSDL_ResetHintsSDL_ResetKeyboardSDL_ResetLogPrioritiesSDL_RestoreWindowSDL_ResumeAudioDeviceSDL_ResumeAudioStreamDeviceSDL_ResumeHapticSDL_RumbleGamepadSDL_RumbleGamepadTriggersSDL_RumbleJoystickSDL_RumbleJoystickTriggersSDL_RunAppSDL_RunHapticEffectSDL_RunOnMainThreadSDL_SaveBMPSDL_SaveBMP_IOSDL_SaveFileSDL_SaveFile_IOSDL_ScaleSurfaceSDL_ScreenKeyboardShownSDL_ScreenSaverEnabledSDL_SeekIOSDL_SendGamepadEffectSDL_SendJoystickEffectSDL_SendJoystickVirtualSensorDataSDL_SetAppMetadataSDL_SetAppMetadataPropertySDL_SetAssertionHandlerSDL_SetAtomicIntSDL_SetAtomicPointerSDL_SetAtomicU32SDL_SetAudioDeviceGainSDL_SetAudioPostmixCallbackSDL_SetAudioStreamFormatSDL_SetAudioStreamFrequencyRatioSDL_SetAudioStreamGainSDL_SetAudioStreamGetCallbackSDL_SetAudioStreamInputChannelMapSDL_SetAudioStreamOutputChannelMapSDL_SetAudioStreamPutCallbackSDL_SetBooleanPropertySDL_SetClipboardDataSDL_SetClipboardTextSDL_SetCurrentThreadPrioritySDL_SetCursorSDL_SetEnvironmentVariableSDL_SetErrorSDL_SetErrorVSDL_SetEventEnabledSDL_SetEventFilterSDL_SetFloatPropertySDL_SetGPUAllowedFramesInFlightSDL_SetGPUBlendConstantsSDL_SetGPUBufferNameSDL_SetGPUScissorSDL_SetGPUStencilReferenceSDL_SetGPUSwapchainParametersSDL_SetGPUTextureNameSDL_SetGPUViewportSDL_SetGamepadEventsEnabledSDL_SetGamepadLEDSDL_SetGamepadMappingSDL_SetGamepadPlayerIndexSDL_SetGamepadSensorEnabledSDL_SetHapticAutocenterSDL_SetHapticGainSDL_SetHintSDL_SetHintWithPrioritySDL_SetInitializedSDL_SetJoystickEventsEnabledSDL_SetJoystickLEDSDL_SetJoystickPlayerIndexSDL_SetJoystickVirtualAxisSDL_SetJoystickVirtualBallSDL_SetJoystickVirtualButtonSDL_SetJoystickVirtualHatSDL_SetJoystickVirtualTouchpadSDL_SetLogOutputFunctionSDL_SetLogPrioritiesSDL_SetLogPrioritySDL_SetLogPriorityPrefixSDL_SetMainReadySDL_SetMemoryFunctionsSDL_SetModStateSDL_SetNumberPropertySDL_SetPaletteColorsSDL_SetPointerPropertySDL_SetPointerPropertyWithCleanupSDL_SetPrimarySelectionTextSDL_SetRenderClipRectSDL_SetRenderColorScaleSDL_SetRenderDrawBlendModeSDL_SetRenderDrawColorSDL_SetRenderDrawColorFloatSDL_SetRenderLogicalPresentationSDL_SetRenderScaleSDL_SetRenderTargetSDL_SetRenderVSyncSDL_SetRenderViewportSDL_SetScancodeNameSDL_SetStringPropertySDL_SetSurfaceAlphaModSDL_SetSurfaceBlendModeSDL_SetSurfaceClipRectSDL_SetSurfaceColorKeySDL_SetSurfaceColorModSDL_SetSurfaceColorspaceSDL_SetSurfacePaletteSDL_SetSurfaceRLESDL_SetTLSSDL_SetTextInputAreaSDL_SetTextureAlphaModSDL_SetTextureAlphaModFloatSDL_SetTextureBlendModeSDL_SetTextureColorModSDL_SetTextureColorModFloatSDL_SetTextureScaleModeSDL_SetTrayEntryCallbackSDL_SetTrayEntryCheckedSDL_SetTrayEntryEnabledSDL_SetTrayEntryLabelSDL_SetTrayIconSDL_SetTrayTooltipSDL_SetWindowAlwaysOnTopSDL_SetWindowAspectRatioSDL_SetWindowBorderedSDL_SetWindowFocusableSDL_SetWindowFullscreenSDL_SetWindowFullscreenModeSDL_SetWindowHitTestSDL_SetWindowIconSDL_SetWindowKeyboardGrabSDL_SetWindowMaximumSizeSDL_SetWindowMinimumSizeSDL_SetWindowModalSDL_SetWindowMouseGrabSDL_SetWindowMouseRectSDL_SetWindowOpacitySDL_SetWindowParentSDL_SetWindowPositionSDL_SetWindowRelativeMouseModeSDL_SetWindowResizableSDL_SetWindowShapeSDL_SetWindowSizeSDL_SetWindowSurfaceVSyncSDL_SetWindowTitleSDL_SetWindowsMessageHookSDL_SetX11EventHookSDL_ShouldInitSDL_ShouldQuitSDL_ShowCursorSDL_ShowFileDialogWithPropertiesSDL_ShowMessageBoxSDL_ShowOpenFileDialogSDL_ShowOpenFolderDialogSDL_ShowSaveFileDialogSDL_ShowSimpleMessageBoxSDL_ShowWindowSDL_ShowWindowSystemMenuSDL_SignalAsyncIOQueueSDL_SignalConditionSDL_SignalSemaphoreSDL_StartTextInputSDL_StartTextInputWithPropertiesSDL_StepBackUTF8SDL_StepUTF8SDL_StopHapticEffectSDL_StopHapticEffectsSDL_StopHapticRumbleSDL_StopTextInputSDL_StorageReadySDL_StringToGUIDSDL_SubmitGPUCommandBufferSDL_SubmitGPUCommandBufferAndAcquireFenceSDL_SurfaceHasAlternateImagesSDL_SurfaceHasColorKeySDL_SurfaceHasRLESDL_SyncWindowSDL_TellIOSDL_TextInputActiveSDL_TimeFromWindowsSDL_TimeToDateTimeSDL_TimeToWindowsSDL_TryLockMutexSDL_TryLockRWLockForReadingSDL_TryLockRWLockForWritingSDL_TryLockSpinlockSDL_TryWaitSemaphoreSDL_UCS4ToUTF8SDL_UnbindAudioStreamSDL_UnbindAudioStreamsSDL_UnloadObjectSDL_UnlockAudioStreamSDL_UnlockJoysticksSDL_UnlockMutexSDL_UnlockPropertiesSDL_UnlockRWLockSDL_UnlockSpinlockSDL_UnlockSurfaceSDL_UnlockTextureSDL_UnmapGPUTransferBufferSDL_UnregisterAppSDL_UnsetEnvironmentVariableSDL_UpdateGamepadsSDL_UpdateHapticEffectSDL_UpdateJoysticksSDL_UpdateNVTextureSDL_UpdateSensorsSDL_UpdateTextureSDL_UpdateTraysSDL_UpdateWindowSurfaceSDL_UpdateWindowSurfaceRectsSDL_UpdateYUVTextureSDL_UploadToGPUBufferSDL_UploadToGPUTextureSDL_Vulkan_CreateSurfaceSDL_Vulkan_DestroySurfaceSDL_Vulkan_GetInstanceExtensionsSDL_Vulkan_GetPresentationSupportSDL_Vulkan_GetVkGetInstanceProcAddrSDL_Vulkan_LoadLibrarySDL_Vulkan_UnloadLibrarySDL_WaitAndAcquireGPUSwapchainTextureSDL_WaitAsyncIOResultSDL_WaitConditionSDL_WaitConditionTimeoutSDL_WaitEventSDL_WaitEventTimeoutSDL_WaitForGPUFencesSDL_WaitForGPUIdleSDL_WaitForGPUSwapchainSDL_WaitProcessSDL_WaitSemaphoreSDL_WaitSemaphoreTimeoutSDL_WaitThreadSDL_WarpMouseGlobalSDL_WarpMouseInWindowSDL_WasInitSDL_WindowHasSurfaceSDL_WindowSupportsGPUPresentModeSDL_WindowSupportsGPUSwapchainCompositionSDL_WriteAsyncIOSDL_WriteIOSDL_WriteS16BESDL_WriteS16LESDL_WriteS32BESDL_WriteS32LESDL_WriteS64BESDL_WriteS64LESDL_WriteS8SDL_WriteStorageFileSDL_WriteSurfacePixelSDL_WriteSurfacePixelFloatSDL_WriteU16BESDL_WriteU16LESDL_WriteU32BESDL_WriteU32LESDL_WriteU64BESDL_WriteU64LESDL_WriteU8SDL_absSDL_acosSDL_acosfSDL_aligned_allocSDL_aligned_freeSDL_asinSDL_asinfSDL_asprintfSDL_atanSDL_atan2SDL_atan2fSDL_atanfSDL_atofSDL_atoiSDL_bsearchSDL_bsearch_rSDL_callocSDL_ceilSDL_ceilfSDL_copysignSDL_copysignfSDL_cosSDL_cosfSDL_crc16SDL_crc32SDL_expSDL_expfSDL_fabsSDL_fabsfSDL_floorSDL_floorfSDL_fmodSDL_fmodfSDL_freeSDL_getenvSDL_getenv_unsafeSDL_hid_ble_scanSDL_hid_closeSDL_hid_device_change_countSDL_hid_enumerateSDL_hid_exitSDL_hid_free_enumerationSDL_hid_get_device_infoSDL_hid_get_feature_reportSDL_hid_get_indexed_stringSDL_hid_get_input_reportSDL_hid_get_manufacturer_stringSDL_hid_get_product_stringSDL_hid_get_report_descriptorSDL_hid_get_serial_number_stringSDL_hid_initSDL_hid_openSDL_hid_open_pathSDL_hid_readSDL_hid_read_timeoutSDL_hid_send_feature_reportSDL_hid_set_nonblockingSDL_hid_writeSDL_iconvSDL_iconv_closeSDL_iconv_openSDL_iconv_stringSDL_isalnumSDL_isalphaSDL_isblankSDL_iscntrlSDL_isdigitSDL_isgraphSDL_isinfSDL_isinffSDL_islowerSDL_isnanSDL_isnanfSDL_isprintSDL_ispunctSDL_isspaceSDL_isupperSDL_isxdigitSDL_itoaSDL_lltoaSDL_logSDL_log10SDL_log10fSDL_logfSDL_lroundSDL_lroundfSDL_ltoaSDL_mallocSDL_memcmpSDL_memcpySDL_memmoveSDL_memsetSDL_memset4SDL_modfSDL_modffSDL_murmur3_32SDL_powSDL_powfSDL_qsortSDL_qsort_rSDL_randSDL_rand_bitsSDL_rand_bits_rSDL_rand_rSDL_randfSDL_randf_rSDL_reallocSDL_roundSDL_roundfSDL_scalbnSDL_scalbnfSDL_setenv_unsafeSDL_sinSDL_sinfSDL_snprintfSDL_sqrtSDL_sqrtfSDL_srandSDL_sscanfSDL_strcasecmpSDL_strcasestrSDL_strchrSDL_strcmpSDL_strdupSDL_strlcatSDL_strlcpySDL_strlenSDL_strlwrSDL_strncasecmpSDL_strncmpSDL_strndupSDL_strnlenSDL_strnstrSDL_strpbrkSDL_strrchrSDL_strrevSDL_strstrSDL_strtodSDL_strtok_rSDL_strtolSDL_strtollSDL_strtoulSDL_strtoullSDL_struprSDL_swprintfSDL_tanSDL_tanfSDL_tolowerSDL_toupperSDL_truncSDL_truncfSDL_uitoaSDL_ulltoaSDL_ultoaSDL_unsetenv_unsafeSDL_utf8strlcpySDL_utf8strlenSDL_utf8strnlenSDL_vasprintfSDL_vsnprintfSDL_vsscanfSDL_vswprintfSDL_wcscasecmpSDL_wcscmpSDL_wcsdupSDL_wcslcatSDL_wcslcpySDL_wcslenSDL_wcsncasecmpSDL_wcsncmpSDL_wcsnlenSDL_wcsnstrSDL_wcsstrSDL_wcstol__IMPORT_DESCRIPTOR_SDL3__NULL_IMPORT_DESCRIPTOR__imp_SDL_AcquireCameraFrame__imp_SDL_AcquireGPUCommandBuffer__imp_SDL_AcquireGPUSwapchainTexture__imp_SDL_AddAtomicInt__imp_SDL_AddEventWatch__imp_SDL_AddGamepadMapping__imp_SDL_AddGamepadMappingsFromFile__imp_SDL_AddGamepadMappingsFromIO__imp_SDL_AddHintCallback__imp_SDL_AddSurfaceAlternateImage__imp_SDL_AddTimer__imp_SDL_AddTimerNS__imp_SDL_AddVulkanRenderSemaphores__imp_SDL_AsyncIOFromFile__imp_SDL_AttachVirtualJoystick__imp_SDL_AudioDevicePaused__imp_SDL_AudioStreamDevicePaused__imp_SDL_BeginGPUComputePass__imp_SDL_BeginGPUCopyPass__imp_SDL_BeginGPURenderPass__imp_SDL_BindAudioStream__imp_SDL_BindAudioStreams__imp_SDL_BindGPUComputePipeline__imp_SDL_BindGPUComputeSamplers__imp_SDL_BindGPUComputeStorageBuffers__imp_SDL_BindGPUComputeStorageTextures__imp_SDL_BindGPUFragmentSamplers__imp_SDL_BindGPUFragmentStorageBuffers__imp_SDL_BindGPUFragmentStorageTextures__imp_SDL_BindGPUGraphicsPipeline__imp_SDL_BindGPUIndexBuffer__imp_SDL_BindGPUVertexBuffers__imp_SDL_BindGPUVertexSamplers__imp_SDL_BindGPUVertexStorageBuffers__imp_SDL_BindGPUVertexStorageTextures__imp_SDL_BlitGPUTexture__imp_SDL_BlitSurface__imp_SDL_BlitSurface9Grid__imp_SDL_BlitSurfaceScaled__imp_SDL_BlitSurfaceTiled__imp_SDL_BlitSurfaceTiledWithScale__imp_SDL_BlitSurfaceUnchecked__imp_SDL_BlitSurfaceUncheckedScaled__imp_SDL_BroadcastCondition__imp_SDL_CalculateGPUTextureFormatSize__imp_SDL_CancelGPUCommandBuffer__imp_SDL_CaptureMouse__imp_SDL_ClaimWindowForGPUDevice__imp_SDL_CleanupTLS__imp_SDL_ClearAudioStream__imp_SDL_ClearClipboardData__imp_SDL_ClearComposition__imp_SDL_ClearError__imp_SDL_ClearProperty__imp_SDL_ClearSurface__imp_SDL_ClickTrayEntry__imp_SDL_CloseAsyncIO__imp_SDL_CloseAudioDevice__imp_SDL_CloseCamera__imp_SDL_CloseGamepad__imp_SDL_CloseHaptic__imp_SDL_CloseIO__imp_SDL_CloseJoystick__imp_SDL_CloseSensor__imp_SDL_CloseStorage__imp_SDL_CompareAndSwapAtomicInt__imp_SDL_CompareAndSwapAtomicPointer__imp_SDL_CompareAndSwapAtomicU32__imp_SDL_ComposeCustomBlendMode__imp_SDL_ConvertAudioSamples__imp_SDL_ConvertEventToRenderCoordinates__imp_SDL_ConvertPixels__imp_SDL_ConvertPixelsAndColorspace__imp_SDL_ConvertSurface__imp_SDL_ConvertSurfaceAndColorspace__imp_SDL_CopyFile__imp_SDL_CopyGPUBufferToBuffer__imp_SDL_CopyGPUTextureToTexture__imp_SDL_CopyProperties__imp_SDL_CopyStorageFile__imp_SDL_CreateAsyncIOQueue__imp_SDL_CreateAudioStream__imp_SDL_CreateColorCursor__imp_SDL_CreateCondition__imp_SDL_CreateCursor__imp_SDL_CreateDirectory__imp_SDL_CreateEnvironment__imp_SDL_CreateGPUBuffer__imp_SDL_CreateGPUComputePipeline__imp_SDL_CreateGPUDevice__imp_SDL_CreateGPUDeviceWithProperties__imp_SDL_CreateGPUGraphicsPipeline__imp_SDL_CreateGPUSampler__imp_SDL_CreateGPUShader__imp_SDL_CreateGPUTexture__imp_SDL_CreateGPUTransferBuffer__imp_SDL_CreateHapticEffect__imp_SDL_CreateMutex__imp_SDL_CreatePalette__imp_SDL_CreatePopupWindow__imp_SDL_CreateProcess__imp_SDL_CreateProcessWithProperties__imp_SDL_CreateProperties__imp_SDL_CreateRWLock__imp_SDL_CreateRenderer__imp_SDL_CreateRendererWithProperties__imp_SDL_CreateSemaphore__imp_SDL_CreateSoftwareRenderer__imp_SDL_CreateStorageDirectory__imp_SDL_CreateSurface__imp_SDL_CreateSurfaceFrom__imp_SDL_CreateSurfacePalette__imp_SDL_CreateSystemCursor__imp_SDL_CreateTexture__imp_SDL_CreateTextureFromSurface__imp_SDL_CreateTextureWithProperties__imp_SDL_CreateThreadRuntime__imp_SDL_CreateThreadWithPropertiesRuntime__imp_SDL_CreateTray__imp_SDL_CreateTrayMenu__imp_SDL_CreateTraySubmenu__imp_SDL_CreateWindow__imp_SDL_CreateWindowAndRenderer__imp_SDL_CreateWindowWithProperties__imp_SDL_CursorVisible__imp_SDL_DYNAPI_entry__imp_SDL_DateTimeToTime__imp_SDL_Delay__imp_SDL_DelayNS__imp_SDL_DelayPrecise__imp_SDL_DestroyAsyncIOQueue__imp_SDL_DestroyAudioStream__imp_SDL_DestroyCondition__imp_SDL_DestroyCursor__imp_SDL_DestroyEnvironment__imp_SDL_DestroyGPUDevice__imp_SDL_DestroyHapticEffect__imp_SDL_DestroyMutex__imp_SDL_DestroyPalette__imp_SDL_DestroyProcess__imp_SDL_DestroyProperties__imp_SDL_DestroyRWLock__imp_SDL_DestroyRenderer__imp_SDL_DestroySemaphore__imp_SDL_DestroySurface__imp_SDL_DestroyTexture__imp_SDL_DestroyTray__imp_SDL_DestroyWindow__imp_SDL_DestroyWindowSurface__imp_SDL_DetachThread__imp_SDL_DetachVirtualJoystick__imp_SDL_DisableScreenSaver__imp_SDL_DispatchGPUCompute__imp_SDL_DispatchGPUComputeIndirect__imp_SDL_DownloadFromGPUBuffer__imp_SDL_DownloadFromGPUTexture__imp_SDL_DrawGPUIndexedPrimitives__imp_SDL_DrawGPUIndexedPrimitivesIndirect__imp_SDL_DrawGPUPrimitives__imp_SDL_DrawGPUPrimitivesIndirect__imp_SDL_DuplicateSurface__imp_SDL_EGL_GetCurrentConfig__imp_SDL_EGL_GetCurrentDisplay__imp_SDL_EGL_GetProcAddress__imp_SDL_EGL_GetWindowSurface__imp_SDL_EGL_SetAttributeCallbacks__imp_SDL_EnableScreenSaver__imp_SDL_EndGPUComputePass__imp_SDL_EndGPUCopyPass__imp_SDL_EndGPURenderPass__imp_SDL_EnterAppMainCallbacks__imp_SDL_EnumerateDirectory__imp_SDL_EnumerateProperties__imp_SDL_EnumerateStorageDirectory__imp_SDL_EventEnabled__imp_SDL_FillSurfaceRect__imp_SDL_FillSurfaceRects__imp_SDL_FilterEvents__imp_SDL_FlashWindow__imp_SDL_FlipSurface__imp_SDL_FlushAudioStream__imp_SDL_FlushEvent__imp_SDL_FlushEvents__imp_SDL_FlushIO__imp_SDL_FlushRenderer__imp_SDL_GDKSuspendComplete__imp_SDL_GL_CreateContext__imp_SDL_GL_DestroyContext__imp_SDL_GL_ExtensionSupported__imp_SDL_GL_GetAttribute__imp_SDL_GL_GetCurrentContext__imp_SDL_GL_GetCurrentWindow__imp_SDL_GL_GetProcAddress__imp_SDL_GL_GetSwapInterval__imp_SDL_GL_LoadLibrary__imp_SDL_GL_MakeCurrent__imp_SDL_GL_ResetAttributes__imp_SDL_GL_SetAttribute__imp_SDL_GL_SetSwapInterval__imp_SDL_GL_SwapWindow__imp_SDL_GL_UnloadLibrary__imp_SDL_GPUSupportsProperties__imp_SDL_GPUSupportsShaderFormats__imp_SDL_GPUTextureFormatTexelBlockSize__imp_SDL_GPUTextureSupportsFormat__imp_SDL_GPUTextureSupportsSampleCount__imp_SDL_GUIDToString__imp_SDL_GamepadConnected__imp_SDL_GamepadEventsEnabled__imp_SDL_GamepadHasAxis__imp_SDL_GamepadHasButton__imp_SDL_GamepadHasSensor__imp_SDL_GamepadSensorEnabled__imp_SDL_GenerateMipmapsForGPUTexture__imp_SDL_GetAppMetadataProperty__imp_SDL_GetAssertionHandler__imp_SDL_GetAssertionReport__imp_SDL_GetAsyncIOResult__imp_SDL_GetAsyncIOSize__imp_SDL_GetAtomicInt__imp_SDL_GetAtomicPointer__imp_SDL_GetAtomicU32__imp_SDL_GetAudioDeviceChannelMap__imp_SDL_GetAudioDeviceFormat__imp_SDL_GetAudioDeviceGain__imp_SDL_GetAudioDeviceName__imp_SDL_GetAudioDriver__imp_SDL_GetAudioFormatName__imp_SDL_GetAudioPlaybackDevices__imp_SDL_GetAudioRecordingDevices__imp_SDL_GetAudioStreamAvailable__imp_SDL_GetAudioStreamData__imp_SDL_GetAudioStreamDevice__imp_SDL_GetAudioStreamFormat__imp_SDL_GetAudioStreamFrequencyRatio__imp_SDL_GetAudioStreamGain__imp_SDL_GetAudioStreamInputChannelMap__imp_SDL_GetAudioStreamOutputChannelMap__imp_SDL_GetAudioStreamProperties__imp_SDL_GetAudioStreamQueued__imp_SDL_GetBasePath__imp_SDL_GetBooleanProperty__imp_SDL_GetCPUCacheLineSize__imp_SDL_GetCameraDriver__imp_SDL_GetCameraFormat__imp_SDL_GetCameraID__imp_SDL_GetCameraName__imp_SDL_GetCameraPermissionState__imp_SDL_GetCameraPosition__imp_SDL_GetCameraProperties__imp_SDL_GetCameraSupportedFormats__imp_SDL_GetCameras__imp_SDL_GetClipboardData__imp_SDL_GetClipboardMimeTypes__imp_SDL_GetClipboardText__imp_SDL_GetClosestFullscreenDisplayMode__imp_SDL_GetCurrentAudioDriver__imp_SDL_GetCurrentCameraDriver__imp_SDL_GetCurrentDirectory__imp_SDL_GetCurrentDisplayMode__imp_SDL_GetCurrentDisplayOrientation__imp_SDL_GetCurrentRenderOutputSize__imp_SDL_GetCurrentThreadID__imp_SDL_GetCurrentTime__imp_SDL_GetCurrentVideoDriver__imp_SDL_GetCursor__imp_SDL_GetDXGIOutputInfo__imp_SDL_GetDateTimeLocalePreferences__imp_SDL_GetDayOfWeek__imp_SDL_GetDayOfYear__imp_SDL_GetDaysInMonth__imp_SDL_GetDefaultAssertionHandler__imp_SDL_GetDefaultCursor__imp_SDL_GetDefaultLogOutputFunction__imp_SDL_GetDesktopDisplayMode__imp_SDL_GetDirect3D9AdapterIndex__imp_SDL_GetDisplayBounds__imp_SDL_GetDisplayContentScale__imp_SDL_GetDisplayForPoint__imp_SDL_GetDisplayForRect__imp_SDL_GetDisplayForWindow__imp_SDL_GetDisplayName__imp_SDL_GetDisplayProperties__imp_SDL_GetDisplayUsableBounds__imp_SDL_GetDisplays__imp_SDL_GetEnvironment__imp_SDL_GetEnvironmentVariable__imp_SDL_GetEnvironmentVariables__imp_SDL_GetError__imp_SDL_GetEventFilter__imp_SDL_GetFloatProperty__imp_SDL_GetFullscreenDisplayModes__imp_SDL_GetGPUDeviceDriver__imp_SDL_GetGPUDriver__imp_SDL_GetGPUShaderFormats__imp_SDL_GetGPUSwapchainTextureFormat__imp_SDL_GetGamepadAppleSFSymbolsNameForAxis__imp_SDL_GetGamepadAppleSFSymbolsNameForButton__imp_SDL_GetGamepadAxis__imp_SDL_GetGamepadAxisFromString__imp_SDL_GetGamepadBindings__imp_SDL_GetGamepadButton__imp_SDL_GetGamepadButtonFromString__imp_SDL_GetGamepadButtonLabel__imp_SDL_GetGamepadButtonLabelForType__imp_SDL_GetGamepadConnectionState__imp_SDL_GetGamepadFirmwareVersion__imp_SDL_GetGamepadFromID__imp_SDL_GetGamepadFromPlayerIndex__imp_SDL_GetGamepadGUIDForID__imp_SDL_GetGamepadID__imp_SDL_GetGamepadJoystick__imp_SDL_GetGamepadMapping__imp_SDL_GetGamepadMappingForGUID__imp_SDL_GetGamepadMappingForID__imp_SDL_GetGamepadMappings__imp_SDL_GetGamepadName__imp_SDL_GetGamepadNameForID__imp_SDL_GetGamepadPath__imp_SDL_GetGamepadPathForID__imp_SDL_GetGamepadPlayerIndex__imp_SDL_GetGamepadPlayerIndexForID__imp_SDL_GetGamepadPowerInfo__imp_SDL_GetGamepadProduct__imp_SDL_GetGamepadProductForID__imp_SDL_GetGamepadProductVersion__imp_SDL_GetGamepadProductVersionForID__imp_SDL_GetGamepadProperties__imp_SDL_GetGamepadSensorData__imp_SDL_GetGamepadSensorDataRate__imp_SDL_GetGamepadSerial__imp_SDL_GetGamepadSteamHandle__imp_SDL_GetGamepadStringForAxis__imp_SDL_GetGamepadStringForButton__imp_SDL_GetGamepadStringForType__imp_SDL_GetGamepadTouchpadFinger__imp_SDL_GetGamepadType__imp_SDL_GetGamepadTypeForID__imp_SDL_GetGamepadTypeFromString__imp_SDL_GetGamepadVendor__imp_SDL_GetGamepadVendorForID__imp_SDL_GetGamepads__imp_SDL_GetGlobalMouseState__imp_SDL_GetGlobalProperties__imp_SDL_GetGrabbedWindow__imp_SDL_GetHapticEffectStatus__imp_SDL_GetHapticFeatures__imp_SDL_GetHapticFromID__imp_SDL_GetHapticID__imp_SDL_GetHapticName__imp_SDL_GetHapticNameForID__imp_SDL_GetHaptics__imp_SDL_GetHint__imp_SDL_GetHintBoolean__imp_SDL_GetIOProperties__imp_SDL_GetIOSize__imp_SDL_GetIOStatus__imp_SDL_GetJoystickAxis__imp_SDL_GetJoystickAxisInitialState__imp_SDL_GetJoystickBall__imp_SDL_GetJoystickButton__imp_SDL_GetJoystickConnectionState__imp_SDL_GetJoystickFirmwareVersion__imp_SDL_GetJoystickFromID__imp_SDL_GetJoystickFromPlayerIndex__imp_SDL_GetJoystickGUID__imp_SDL_GetJoystickGUIDForID__imp_SDL_GetJoystickGUIDInfo__imp_SDL_GetJoystickHat__imp_SDL_GetJoystickID__imp_SDL_GetJoystickName__imp_SDL_GetJoystickNameForID__imp_SDL_GetJoystickPath__imp_SDL_GetJoystickPathForID__imp_SDL_GetJoystickPlayerIndex__imp_SDL_GetJoystickPlayerIndexForID__imp_SDL_GetJoystickPowerInfo__imp_SDL_GetJoystickProduct__imp_SDL_GetJoystickProductForID__imp_SDL_GetJoystickProductVersion__imp_SDL_GetJoystickProductVersionForID__imp_SDL_GetJoystickProperties__imp_SDL_GetJoystickSerial__imp_SDL_GetJoystickType__imp_SDL_GetJoystickTypeForID__imp_SDL_GetJoystickVendor__imp_SDL_GetJoystickVendorForID__imp_SDL_GetJoysticks__imp_SDL_GetKeyFromName__imp_SDL_GetKeyFromScancode__imp_SDL_GetKeyName__imp_SDL_GetKeyboardFocus__imp_SDL_GetKeyboardNameForID__imp_SDL_GetKeyboardState__imp_SDL_GetKeyboards__imp_SDL_GetLogOutputFunction__imp_SDL_GetLogPriority__imp_SDL_GetMasksForPixelFormat__imp_SDL_GetMaxHapticEffects__imp_SDL_GetMaxHapticEffectsPlaying__imp_SDL_GetMemoryFunctions__imp_SDL_GetMice__imp_SDL_GetModState__imp_SDL_GetMouseFocus__imp_SDL_GetMouseNameForID__imp_SDL_GetMouseState__imp_SDL_GetNaturalDisplayOrientation__imp_SDL_GetNumAllocations__imp_SDL_GetNumAudioDrivers__imp_SDL_GetNumCameraDrivers__imp_SDL_GetNumGPUDrivers__imp_SDL_GetNumGamepadTouchpadFingers__imp_SDL_GetNumGamepadTouchpads__imp_SDL_GetNumHapticAxes__imp_SDL_GetNumJoystickAxes__imp_SDL_GetNumJoystickBalls__imp_SDL_GetNumJoystickButtons__imp_SDL_GetNumJoystickHats__imp_SDL_GetNumLogicalCPUCores__imp_SDL_GetNumRenderDrivers__imp_SDL_GetNumVideoDrivers__imp_SDL_GetNumberProperty__imp_SDL_GetOriginalMemoryFunctions__imp_SDL_GetPathInfo__imp_SDL_GetPerformanceCounter__imp_SDL_GetPerformanceFrequency__imp_SDL_GetPixelFormatDetails__imp_SDL_GetPixelFormatForMasks__imp_SDL_GetPixelFormatName__imp_SDL_GetPlatform__imp_SDL_GetPointerProperty__imp_SDL_GetPowerInfo__imp_SDL_GetPrefPath__imp_SDL_GetPreferredLocales__imp_SDL_GetPrimaryDisplay__imp_SDL_GetPrimarySelectionText__imp_SDL_GetProcessInput__imp_SDL_GetProcessOutput__imp_SDL_GetProcessProperties__imp_SDL_GetPropertyType__imp_SDL_GetRGB__imp_SDL_GetRGBA__imp_SDL_GetRealGamepadType__imp_SDL_GetRealGamepadTypeForID__imp_SDL_GetRectAndLineIntersection__imp_SDL_GetRectAndLineIntersectionFloat__imp_SDL_GetRectEnclosingPoints__imp_SDL_GetRectEnclosingPointsFloat__imp_SDL_GetRectIntersection__imp_SDL_GetRectIntersectionFloat__imp_SDL_GetRectUnion__imp_SDL_GetRectUnionFloat__imp_SDL_GetRelativeMouseState__imp_SDL_GetRenderClipRect__imp_SDL_GetRenderColorScale__imp_SDL_GetRenderDrawBlendMode__imp_SDL_GetRenderDrawColor__imp_SDL_GetRenderDrawColorFloat__imp_SDL_GetRenderDriver__imp_SDL_GetRenderLogicalPresentation__imp_SDL_GetRenderLogicalPresentationRect__imp_SDL_GetRenderMetalCommandEncoder__imp_SDL_GetRenderMetalLayer__imp_SDL_GetRenderOutputSize__imp_SDL_GetRenderSafeArea__imp_SDL_GetRenderScale__imp_SDL_GetRenderTarget__imp_SDL_GetRenderVSync__imp_SDL_GetRenderViewport__imp_SDL_GetRenderWindow__imp_SDL_GetRenderer__imp_SDL_GetRendererFromTexture__imp_SDL_GetRendererName__imp_SDL_GetRendererProperties__imp_SDL_GetRevision__imp_SDL_GetSIMDAlignment__imp_SDL_GetSandbox__imp_SDL_GetScancodeFromKey__imp_SDL_GetScancodeFromName__imp_SDL_GetScancodeName__imp_SDL_GetSemaphoreValue__imp_SDL_GetSensorData__imp_SDL_GetSensorFromID__imp_SDL_GetSensorID__imp_SDL_GetSensorName__imp_SDL_GetSensorNameForID__imp_SDL_GetSensorNonPortableType__imp_SDL_GetSensorNonPortableTypeForID__imp_SDL_GetSensorProperties__imp_SDL_GetSensorType__imp_SDL_GetSensorTypeForID__imp_SDL_GetSensors__imp_SDL_GetSilenceValueForFormat__imp_SDL_GetStorageFileSize__imp_SDL_GetStoragePathInfo__imp_SDL_GetStorageSpaceRemaining__imp_SDL_GetStringProperty__imp_SDL_GetSurfaceAlphaMod__imp_SDL_GetSurfaceBlendMode__imp_SDL_GetSurfaceClipRect__imp_SDL_GetSurfaceColorKey__imp_SDL_GetSurfaceColorMod__imp_SDL_GetSurfaceColorspace__imp_SDL_GetSurfaceImages__imp_SDL_GetSurfacePalette__imp_SDL_GetSurfaceProperties__imp_SDL_GetSystemRAM__imp_SDL_GetSystemTheme__imp_SDL_GetTLS__imp_SDL_GetTextInputArea__imp_SDL_GetTextureAlphaMod__imp_SDL_GetTextureAlphaModFloat__imp_SDL_GetTextureBlendMode__imp_SDL_GetTextureColorMod__imp_SDL_GetTextureColorModFloat__imp_SDL_GetTextureProperties__imp_SDL_GetTextureScaleMode__imp_SDL_GetTextureSize__imp_SDL_GetThreadID__imp_SDL_GetThreadName__imp_SDL_GetThreadState__imp_SDL_GetTicks__imp_SDL_GetTicksNS__imp_SDL_GetTouchDeviceName__imp_SDL_GetTouchDeviceType__imp_SDL_GetTouchDevices__imp_SDL_GetTouchFingers__imp_SDL_GetTrayEntries__imp_SDL_GetTrayEntryChecked__imp_SDL_GetTrayEntryEnabled__imp_SDL_GetTrayEntryLabel__imp_SDL_GetTrayEntryParent__imp_SDL_GetTrayMenu__imp_SDL_GetTrayMenuParentEntry__imp_SDL_GetTrayMenuParentTray__imp_SDL_GetTraySubmenu__imp_SDL_GetUserFolder__imp_SDL_GetVersion__imp_SDL_GetVideoDriver__imp_SDL_GetWindowAspectRatio__imp_SDL_GetWindowBordersSize__imp_SDL_GetWindowDisplayScale__imp_SDL_GetWindowFlags__imp_SDL_GetWindowFromEvent__imp_SDL_GetWindowFromID__imp_SDL_GetWindowFullscreenMode__imp_SDL_GetWindowICCProfile__imp_SDL_GetWindowID__imp_SDL_GetWindowKeyboardGrab__imp_SDL_GetWindowMaximumSize__imp_SDL_GetWindowMinimumSize__imp_SDL_GetWindowMouseGrab__imp_SDL_GetWindowMouseRect__imp_SDL_GetWindowOpacity__imp_SDL_GetWindowParent__imp_SDL_GetWindowPixelDensity__imp_SDL_GetWindowPixelFormat__imp_SDL_GetWindowPosition__imp_SDL_GetWindowProperties__imp_SDL_GetWindowRelativeMouseMode__imp_SDL_GetWindowSafeArea__imp_SDL_GetWindowSize__imp_SDL_GetWindowSizeInPixels__imp_SDL_GetWindowSurface__imp_SDL_GetWindowSurfaceVSync__imp_SDL_GetWindowTitle__imp_SDL_GetWindows__imp_SDL_GlobDirectory__imp_SDL_GlobStorageDirectory__imp_SDL_HapticEffectSupported__imp_SDL_HapticRumbleSupported__imp_SDL_HasARMSIMD__imp_SDL_HasAVX__imp_SDL_HasAVX2__imp_SDL_HasAVX512F__imp_SDL_HasAltiVec__imp_SDL_HasClipboardData__imp_SDL_HasClipboardText__imp_SDL_HasEvent__imp_SDL_HasEvents__imp_SDL_HasGamepad__imp_SDL_HasJoystick__imp_SDL_HasKeyboard__imp_SDL_HasLASX__imp_SDL_HasLSX__imp_SDL_HasMMX__imp_SDL_HasMouse__imp_SDL_HasNEON__imp_SDL_HasPrimarySelectionText__imp_SDL_HasProperty__imp_SDL_HasRectIntersection__imp_SDL_HasRectIntersectionFloat__imp_SDL_HasSSE__imp_SDL_HasSSE2__imp_SDL_HasSSE3__imp_SDL_HasSSE41__imp_SDL_HasSSE42__imp_SDL_HasScreenKeyboardSupport__imp_SDL_HideCursor__imp_SDL_HideWindow__imp_SDL_IOFromConstMem__imp_SDL_IOFromDynamicMem__imp_SDL_IOFromFile__imp_SDL_IOFromMem__imp_SDL_IOprintf__imp_SDL_IOvprintf__imp_SDL_Init__imp_SDL_InitHapticRumble__imp_SDL_InitSubSystem__imp_SDL_InsertGPUDebugLabel__imp_SDL_InsertTrayEntryAt__imp_SDL_IsAudioDevicePhysical__imp_SDL_IsAudioDevicePlayback__imp_SDL_IsGamepad__imp_SDL_IsJoystickHaptic__imp_SDL_IsJoystickVirtual__imp_SDL_IsMainThread__imp_SDL_IsMouseHaptic__imp_SDL_IsTV__imp_SDL_IsTablet__imp_SDL_JoystickConnected__imp_SDL_JoystickEventsEnabled__imp_SDL_KillProcess__imp_SDL_LoadBMP__imp_SDL_LoadBMP_IO__imp_SDL_LoadFile__imp_SDL_LoadFileAsync__imp_SDL_LoadFile_IO__imp_SDL_LoadFunction__imp_SDL_LoadObject__imp_SDL_LoadWAV__imp_SDL_LoadWAV_IO__imp_SDL_LockAudioStream__imp_SDL_LockJoysticks__imp_SDL_LockMutex__imp_SDL_LockProperties__imp_SDL_LockRWLockForReading__imp_SDL_LockRWLockForWriting__imp_SDL_LockSpinlock__imp_SDL_LockSurface__imp_SDL_LockTexture__imp_SDL_LockTextureToSurface__imp_SDL_Log__imp_SDL_LogCritical__imp_SDL_LogDebug__imp_SDL_LogError__imp_SDL_LogInfo__imp_SDL_LogMessage__imp_SDL_LogMessageV__imp_SDL_LogTrace__imp_SDL_LogVerbose__imp_SDL_LogWarn__imp_SDL_MapGPUTransferBuffer__imp_SDL_MapRGB__imp_SDL_MapRGBA__imp_SDL_MapSurfaceRGB__imp_SDL_MapSurfaceRGBA__imp_SDL_MaximizeWindow__imp_SDL_MemoryBarrierAcquireFunction__imp_SDL_MemoryBarrierReleaseFunction__imp_SDL_Metal_CreateView__imp_SDL_Metal_DestroyView__imp_SDL_Metal_GetLayer__imp_SDL_MinimizeWindow__imp_SDL_MixAudio__imp_SDL_OnApplicationDidEnterBackground__imp_SDL_OnApplicationDidEnterForeground__imp_SDL_OnApplicationDidReceiveMemoryWarning__imp_SDL_OnApplicationWillEnterBackground__imp_SDL_OnApplicationWillEnterForeground__imp_SDL_OnApplicationWillTerminate__imp_SDL_OpenAudioDevice__imp_SDL_OpenAudioDeviceStream__imp_SDL_OpenCamera__imp_SDL_OpenFileStorage__imp_SDL_OpenGamepad__imp_SDL_OpenHaptic__imp_SDL_OpenHapticFromJoystick__imp_SDL_OpenHapticFromMouse__imp_SDL_OpenIO__imp_SDL_OpenJoystick__imp_SDL_OpenSensor__imp_SDL_OpenStorage__imp_SDL_OpenTitleStorage__imp_SDL_OpenURL__imp_SDL_OpenUserStorage__imp_SDL_OutOfMemory__imp_SDL_PauseAudioDevice__imp_SDL_PauseAudioStreamDevice__imp_SDL_PauseHaptic__imp_SDL_PeepEvents__imp_SDL_PlayHapticRumble__imp_SDL_PollEvent__imp_SDL_PopGPUDebugGroup__imp_SDL_PremultiplyAlpha__imp_SDL_PremultiplySurfaceAlpha__imp_SDL_PumpEvents__imp_SDL_PushEvent__imp_SDL_PushGPUComputeUniformData__imp_SDL_PushGPUDebugGroup__imp_SDL_PushGPUFragmentUniformData__imp_SDL_PushGPUVertexUniformData__imp_SDL_PutAudioStreamData__imp_SDL_QueryGPUFence__imp_SDL_Quit__imp_SDL_QuitSubSystem__imp_SDL_RaiseWindow__imp_SDL_ReadAsyncIO__imp_SDL_ReadIO__imp_SDL_ReadProcess__imp_SDL_ReadS16BE__imp_SDL_ReadS16LE__imp_SDL_ReadS32BE__imp_SDL_ReadS32LE__imp_SDL_ReadS64BE__imp_SDL_ReadS64LE__imp_SDL_ReadS8__imp_SDL_ReadStorageFile__imp_SDL_ReadSurfacePixel__imp_SDL_ReadSurfacePixelFloat__imp_SDL_ReadU16BE__imp_SDL_ReadU16LE__imp_SDL_ReadU32BE__imp_SDL_ReadU32LE__imp_SDL_ReadU64BE__imp_SDL_ReadU64LE__imp_SDL_ReadU8__imp_SDL_RegisterApp__imp_SDL_RegisterEvents__imp_SDL_ReleaseCameraFrame__imp_SDL_ReleaseGPUBuffer__imp_SDL_ReleaseGPUComputePipeline__imp_SDL_ReleaseGPUFence__imp_SDL_ReleaseGPUGraphicsPipeline__imp_SDL_ReleaseGPUSampler__imp_SDL_ReleaseGPUShader__imp_SDL_ReleaseGPUTexture__imp_SDL_ReleaseGPUTransferBuffer__imp_SDL_ReleaseWindowFromGPUDevice__imp_SDL_ReloadGamepadMappings__imp_SDL_RemoveEventWatch__imp_SDL_RemoveHintCallback__imp_SDL_RemovePath__imp_SDL_RemoveStoragePath__imp_SDL_RemoveSurfaceAlternateImages__imp_SDL_RemoveTimer__imp_SDL_RemoveTrayEntry__imp_SDL_RenamePath__imp_SDL_RenameStoragePath__imp_SDL_RenderClear__imp_SDL_RenderClipEnabled__imp_SDL_RenderCoordinatesFromWindow__imp_SDL_RenderCoordinatesToWindow__imp_SDL_RenderDebugText__imp_SDL_RenderDebugTextFormat__imp_SDL_RenderFillRect__imp_SDL_RenderFillRects__imp_SDL_RenderGeometry__imp_SDL_RenderGeometryRaw__imp_SDL_RenderLine__imp_SDL_RenderLines__imp_SDL_RenderPoint__imp_SDL_RenderPoints__imp_SDL_RenderPresent__imp_SDL_RenderReadPixels__imp_SDL_RenderRect__imp_SDL_RenderRects__imp_SDL_RenderTexture__imp_SDL_RenderTexture9Grid__imp_SDL_RenderTextureAffine__imp_SDL_RenderTextureRotated__imp_SDL_RenderTextureTiled__imp_SDL_RenderViewportSet__imp_SDL_ReportAssertion__imp_SDL_ResetAssertionReport__imp_SDL_ResetHint__imp_SDL_ResetHints__imp_SDL_ResetKeyboard__imp_SDL_ResetLogPriorities__imp_SDL_RestoreWindow__imp_SDL_ResumeAudioDevice__imp_SDL_ResumeAudioStreamDevice__imp_SDL_ResumeHaptic__imp_SDL_RumbleGamepad__imp_SDL_RumbleGamepadTriggers__imp_SDL_RumbleJoystick__imp_SDL_RumbleJoystickTriggers__imp_SDL_RunApp__imp_SDL_RunHapticEffect__imp_SDL_RunOnMainThread__imp_SDL_SaveBMP__imp_SDL_SaveBMP_IO__imp_SDL_SaveFile__imp_SDL_SaveFile_IO__imp_SDL_ScaleSurface__imp_SDL_ScreenKeyboardShown__imp_SDL_ScreenSaverEnabled__imp_SDL_SeekIO__imp_SDL_SendGamepadEffect__imp_SDL_SendJoystickEffect__imp_SDL_SendJoystickVirtualSensorData__imp_SDL_SetAppMetadata__imp_SDL_SetAppMetadataProperty__imp_SDL_SetAssertionHandler__imp_SDL_SetAtomicInt__imp_SDL_SetAtomicPointer__imp_SDL_SetAtomicU32__imp_SDL_SetAudioDeviceGain__imp_SDL_SetAudioPostmixCallback__imp_SDL_SetAudioStreamFormat__imp_SDL_SetAudioStreamFrequencyRatio__imp_SDL_SetAudioStreamGain__imp_SDL_SetAudioStreamGetCallback__imp_SDL_SetAudioStreamInputChannelMap__imp_SDL_SetAudioStreamOutputChannelMap__imp_SDL_SetAudioStreamPutCallback__imp_SDL_SetBooleanProperty__imp_SDL_SetClipboardData__imp_SDL_SetClipboardText__imp_SDL_SetCurrentThreadPriority__imp_SDL_SetCursor__imp_SDL_SetEnvironmentVariable__imp_SDL_SetError__imp_SDL_SetErrorV__imp_SDL_SetEventEnabled__imp_SDL_SetEventFilter__imp_SDL_SetFloatProperty__imp_SDL_SetGPUAllowedFramesInFlight__imp_SDL_SetGPUBlendConstants__imp_SDL_SetGPUBufferName__imp_SDL_SetGPUScissor__imp_SDL_SetGPUStencilReference__imp_SDL_SetGPUSwapchainParameters__imp_SDL_SetGPUTextureName__imp_SDL_SetGPUViewport__imp_SDL_SetGamepadEventsEnabled__imp_SDL_SetGamepadLED__imp_SDL_SetGamepadMapping__imp_SDL_SetGamepadPlayerIndex__imp_SDL_SetGamepadSensorEnabled__imp_SDL_SetHapticAutocenter__imp_SDL_SetHapticGain__imp_SDL_SetHint__imp_SDL_SetHintWithPriority__imp_SDL_SetInitialized__imp_SDL_SetJoystickEventsEnabled__imp_SDL_SetJoystickLED__imp_SDL_SetJoystickPlayerIndex__imp_SDL_SetJoystickVirtualAxis__imp_SDL_SetJoystickVirtualBall__imp_SDL_SetJoystickVirtualButton__imp_SDL_SetJoystickVirtualHat__imp_SDL_SetJoystickVirtualTouchpad__imp_SDL_SetLogOutputFunction__imp_SDL_SetLogPriorities__imp_SDL_SetLogPriority__imp_SDL_SetLogPriorityPrefix__imp_SDL_SetMainReady__imp_SDL_SetMemoryFunctions__imp_SDL_SetModState__imp_SDL_SetNumberProperty__imp_SDL_SetPaletteColors__imp_SDL_SetPointerProperty__imp_SDL_SetPointerPropertyWithCleanup__imp_SDL_SetPrimarySelectionText__imp_SDL_SetRenderClipRect__imp_SDL_SetRenderColorScale__imp_SDL_SetRenderDrawBlendMode__imp_SDL_SetRenderDrawColor__imp_SDL_SetRenderDrawColorFloat__imp_SDL_SetRenderLogicalPresentation__imp_SDL_SetRenderScale__imp_SDL_SetRenderTarget__imp_SDL_SetRenderVSync__imp_SDL_SetRenderViewport__imp_SDL_SetScancodeName__imp_SDL_SetStringProperty__imp_SDL_SetSurfaceAlphaMod__imp_SDL_SetSurfaceBlendMode__imp_SDL_SetSurfaceClipRect__imp_SDL_SetSurfaceColorKey__imp_SDL_SetSurfaceColorMod__imp_SDL_SetSurfaceColorspace__imp_SDL_SetSurfacePalette__imp_SDL_SetSurfaceRLE__imp_SDL_SetTLS__imp_SDL_SetTextInputArea__imp_SDL_SetTextureAlphaMod__imp_SDL_SetTextureAlphaModFloat__imp_SDL_SetTextureBlendMode__imp_SDL_SetTextureColorMod__imp_SDL_SetTextureColorModFloat__imp_SDL_SetTextureScaleMode__imp_SDL_SetTrayEntryCallback__imp_SDL_SetTrayEntryChecked__imp_SDL_SetTrayEntryEnabled__imp_SDL_SetTrayEntryLabel__imp_SDL_SetTrayIcon__imp_SDL_SetTrayTooltip__imp_SDL_SetWindowAlwaysOnTop__imp_SDL_SetWindowAspectRatio__imp_SDL_SetWindowBordered__imp_SDL_SetWindowFocusable__imp_SDL_SetWindowFullscreen__imp_SDL_SetWindowFullscreenMode__imp_SDL_SetWindowHitTest__imp_SDL_SetWindowIcon__imp_SDL_SetWindowKeyboardGrab__imp_SDL_SetWindowMaximumSize__imp_SDL_SetWindowMinimumSize__imp_SDL_SetWindowModal__imp_SDL_SetWindowMouseGrab__imp_SDL_SetWindowMouseRect__imp_SDL_SetWindowOpacity__imp_SDL_SetWindowParent__imp_SDL_SetWindowPosition__imp_SDL_SetWindowRelativeMouseMode__imp_SDL_SetWindowResizable__imp_SDL_SetWindowShape__imp_SDL_SetWindowSize__imp_SDL_SetWindowSurfaceVSync__imp_SDL_SetWindowTitle__imp_SDL_SetWindowsMessageHook__imp_SDL_SetX11EventHook__imp_SDL_ShouldInit__imp_SDL_ShouldQuit__imp_SDL_ShowCursor__imp_SDL_ShowFileDialogWithProperties__imp_SDL_ShowMessageBox__imp_SDL_ShowOpenFileDialog__imp_SDL_ShowOpenFolderDialog__imp_SDL_ShowSaveFileDialog__imp_SDL_ShowSimpleMessageBox__imp_SDL_ShowWindow__imp_SDL_ShowWindowSystemMenu__imp_SDL_SignalAsyncIOQueue__imp_SDL_SignalCondition__imp_SDL_SignalSemaphore__imp_SDL_StartTextInput__imp_SDL_StartTextInputWithProperties__imp_SDL_StepBackUTF8__imp_SDL_StepUTF8__imp_SDL_StopHapticEffect__imp_SDL_StopHapticEffects__imp_SDL_StopHapticRumble__imp_SDL_StopTextInput__imp_SDL_StorageReady__imp_SDL_StringToGUID__imp_SDL_SubmitGPUCommandBuffer__imp_SDL_SubmitGPUCommandBufferAndAcquireFence__imp_SDL_SurfaceHasAlternateImages__imp_SDL_SurfaceHasColorKey__imp_SDL_SurfaceHasRLE__imp_SDL_SyncWindow__imp_SDL_TellIO__imp_SDL_TextInputActive__imp_SDL_TimeFromWindows__imp_SDL_TimeToDateTime__imp_SDL_TimeToWindows__imp_SDL_TryLockMutex__imp_SDL_TryLockRWLockForReading__imp_SDL_TryLockRWLockForWriting__imp_SDL_TryLockSpinlock__imp_SDL_TryWaitSemaphore__imp_SDL_UCS4ToUTF8__imp_SDL_UnbindAudioStream__imp_SDL_UnbindAudioStreams__imp_SDL_UnloadObject__imp_SDL_UnlockAudioStream__imp_SDL_UnlockJoysticks__imp_SDL_UnlockMutex__imp_SDL_UnlockProperties__imp_SDL_UnlockRWLock__imp_SDL_UnlockSpinlock__imp_SDL_UnlockSurface__imp_SDL_UnlockTexture__imp_SDL_UnmapGPUTransferBuffer__imp_SDL_UnregisterApp__imp_SDL_UnsetEnvironmentVariable__imp_SDL_UpdateGamepads__imp_SDL_UpdateHapticEffect__imp_SDL_UpdateJoysticks__imp_SDL_UpdateNVTexture__imp_SDL_UpdateSensors__imp_SDL_UpdateTexture__imp_SDL_UpdateTrays__imp_SDL_UpdateWindowSurface__imp_SDL_UpdateWindowSurfaceRects__imp_SDL_UpdateYUVTexture__imp_SDL_UploadToGPUBuffer__imp_SDL_UploadToGPUTexture__imp_SDL_Vulkan_CreateSurface__imp_SDL_Vulkan_DestroySurface__imp_SDL_Vulkan_GetInstanceExtensions__imp_SDL_Vulkan_GetPresentationSupport__imp_SDL_Vulkan_GetVkGetInstanceProcAddr__imp_SDL_Vulkan_LoadLibrary__imp_SDL_Vulkan_UnloadLibrary__imp_SDL_WaitAndAcquireGPUSwapchainTexture__imp_SDL_WaitAsyncIOResult__imp_SDL_WaitCondition__imp_SDL_WaitConditionTimeout__imp_SDL_WaitEvent__imp_SDL_WaitEventTimeout__imp_SDL_WaitForGPUFences__imp_SDL_WaitForGPUIdle__imp_SDL_WaitForGPUSwapchain__imp_SDL_WaitProcess__imp_SDL_WaitSemaphore__imp_SDL_WaitSemaphoreTimeout__imp_SDL_WaitThread__imp_SDL_WarpMouseGlobal__imp_SDL_WarpMouseInWindow__imp_SDL_WasInit__imp_SDL_WindowHasSurface__imp_SDL_WindowSupportsGPUPresentMode__imp_SDL_WindowSupportsGPUSwapchainComposition__imp_SDL_WriteAsyncIO__imp_SDL_WriteIO__imp_SDL_WriteS16BE__imp_SDL_WriteS16LE__imp_SDL_WriteS32BE__imp_SDL_WriteS32LE__imp_SDL_WriteS64BE__imp_SDL_WriteS64LE__imp_SDL_WriteS8__imp_SDL_WriteStorageFile__imp_SDL_WriteSurfacePixel__imp_SDL_WriteSurfacePixelFloat__imp_SDL_WriteU16BE__imp_SDL_WriteU16LE__imp_SDL_WriteU32BE__imp_SDL_WriteU32LE__imp_SDL_WriteU64BE__imp_SDL_WriteU64LE__imp_SDL_WriteU8__imp_SDL_abs__imp_SDL_acos__imp_SDL_acosf__imp_SDL_aligned_alloc__imp_SDL_aligned_free__imp_SDL_asin__imp_SDL_asinf__imp_SDL_asprintf__imp_SDL_atan__imp_SDL_atan2__imp_SDL_atan2f__imp_SDL_atanf__imp_SDL_atof__imp_SDL_atoi__imp_SDL_bsearch__imp_SDL_bsearch_r__imp_SDL_calloc__imp_SDL_ceil__imp_SDL_ceilf__imp_SDL_copysign__imp_SDL_copysignf__imp_SDL_cos__imp_SDL_cosf__imp_SDL_crc16__imp_SDL_crc32__imp_SDL_exp__imp_SDL_expf__imp_SDL_fabs__imp_SDL_fabsf__imp_SDL_floor__imp_SDL_floorf__imp_SDL_fmod__imp_SDL_fmodf__imp_SDL_free__imp_SDL_getenv__imp_SDL_getenv_unsafe__imp_SDL_hid_ble_scan__imp_SDL_hid_close__imp_SDL_hid_device_change_count__imp_SDL_hid_enumerate__imp_SDL_hid_exit__imp_SDL_hid_free_enumeration__imp_SDL_hid_get_device_info__imp_SDL_hid_get_feature_report__imp_SDL_hid_get_indexed_string__imp_SDL_hid_get_input_report__imp_SDL_hid_get_manufacturer_string__imp_SDL_hid_get_product_string__imp_SDL_hid_get_report_descriptor__imp_SDL_hid_get_serial_number_string__imp_SDL_hid_init__imp_SDL_hid_open__imp_SDL_hid_open_path__imp_SDL_hid_read__imp_SDL_hid_read_timeout__imp_SDL_hid_send_feature_report__imp_SDL_hid_set_nonblocking__imp_SDL_hid_write__imp_SDL_iconv__imp_SDL_iconv_close__imp_SDL_iconv_open__imp_SDL_iconv_string__imp_SDL_isalnum__imp_SDL_isalpha__imp_SDL_isblank__imp_SDL_iscntrl__imp_SDL_isdigit__imp_SDL_isgraph__imp_SDL_isinf__imp_SDL_isinff__imp_SDL_islower__imp_SDL_isnan__imp_SDL_isnanf__imp_SDL_isprint__imp_SDL_ispunct__imp_SDL_isspace__imp_SDL_isupper__imp_SDL_isxdigit__imp_SDL_itoa__imp_SDL_lltoa__imp_SDL_log__imp_SDL_log10__imp_SDL_log10f__imp_SDL_logf__imp_SDL_lround__imp_SDL_lroundf__imp_SDL_ltoa__imp_SDL_malloc__imp_SDL_memcmp__imp_SDL_memcpy__imp_SDL_memmove__imp_SDL_memset__imp_SDL_memset4__imp_SDL_modf__imp_SDL_modff__imp_SDL_murmur3_32__imp_SDL_pow__imp_SDL_powf__imp_SDL_qsort__imp_SDL_qsort_r__imp_SDL_rand__imp_SDL_rand_bits__imp_SDL_rand_bits_r__imp_SDL_rand_r__imp_SDL_randf__imp_SDL_randf_r__imp_SDL_realloc__imp_SDL_round__imp_SDL_roundf__imp_SDL_scalbn__imp_SDL_scalbnf__imp_SDL_setenv_unsafe__imp_SDL_sin__imp_SDL_sinf__imp_SDL_snprintf__imp_SDL_sqrt__imp_SDL_sqrtf__imp_SDL_srand__imp_SDL_sscanf__imp_SDL_strcasecmp__imp_SDL_strcasestr__imp_SDL_strchr__imp_SDL_strcmp__imp_SDL_strdup__imp_SDL_strlcat__imp_SDL_strlcpy__imp_SDL_strlen__imp_SDL_strlwr__imp_SDL_strncasecmp__imp_SDL_strncmp__imp_SDL_strndup__imp_SDL_strnlen__imp_SDL_strnstr__imp_SDL_strpbrk__imp_SDL_strrchr__imp_SDL_strrev__imp_SDL_strstr__imp_SDL_strtod__imp_SDL_strtok_r__imp_SDL_strtol__imp_SDL_strtoll__imp_SDL_strtoul__imp_SDL_strtoull__imp_SDL_strupr__imp_SDL_swprintf__imp_SDL_tan__imp_SDL_tanf__imp_SDL_tolower__imp_SDL_toupper__imp_SDL_trunc__imp_SDL_truncf__imp_SDL_uitoa__imp_SDL_ulltoa__imp_SDL_ultoa__imp_SDL_unsetenv_unsafe__imp_SDL_utf8strlcpy__imp_SDL_utf8strlen__imp_SDL_utf8strnlen__imp_SDL_vasprintf__imp_SDL_vsnprintf__imp_SDL_vsscanf__imp_SDL_vswprintf__imp_SDL_wcscasecmp__imp_SDL_wcscmp__imp_SDL_wcsdup__imp_SDL_wcslcat__imp_SDL_wcslcpy__imp_SDL_wcslen__imp_SDL_wcsncasecmp__imp_SDL_wcsncmp__imp_SDL_wcsnlen__imp_SDL_wcsnstr__imp_SDL_wcsstr__imp_SDL_wcstolSDL3_NULL_THUNK_DATASDL3.dll/       -1                      0       482       `
d�ba��.debug$S>�@B.idata$2��@0�.idata$6
��@ �	SDL3.dll'��uMicrosoft (R) LINKSDL3.dll@comp.id�u��.idata$2@�h.idata$6.idata$4@�h.idata$5@�h6L__IMPORT_DESCRIPTOR_SDL3__NULL_IMPORT_DESCRIPTORSDL3_NULL_THUNK_DATASDL3.dll/       -1                      0       247       `
d�{��.debug$S>d@B.idata$3�@0�	SDL3.dll'��uMicrosoft (R) LINK@comp.id�u��__NULL_IMPORT_DESCRIPTOR
SDL3.dll/       -1                      0       280       `
d��6$��.debug$S>�@B.idata$5�@@�.idata$4�@@�	SDL3.dll'��uMicrosoft (R) LINK@comp.id�u��SDL3_NULL_THUNK_DATASDL3.dll/       -1                      0       52        `
��d�@�� SDL_AcquireCameraFrameSDL3.dllSDL3.dll/       -1                      0       57        `
��d�%�(�%SDL_AcquireGPUCommandBufferSDL3.dll
SDL3.dll/       -1                      0       60        `
��d���g�(SDL_AcquireGPUSwapchainTextureSDL3.dllSDL3.dll/       -1                      0       46        `
��d�l�F�SDL_AddAtomicIntSDL3.dllSDL3.dll/       -1                      0       47        `
��d����SDL_AddEventWatchSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�����SDL_AddGamepadMappingSDL3.dll
SDL3.dll/       -1                      0       60        `
��d�r�[�(SDL_AddGamepadMappingsFromFileSDL3.dllSDL3.dll/       -1                      0       58        `
��d����&SDL_AddGamepadMappingsFromIOSDL3.dllSDL3.dll/       -1                      0       49        `
��d��W�SDL_AddHintCallbackSDL3.dll
SDL3.dll/       -1                      0       58        `
��d��|��&	SDL_AddSurfaceAlternateImageSDL3.dllSDL3.dll/       -1                      0       42        `
��d�7�2�
SDL_AddTimerSDL3.dllSDL3.dll/       -1                      0       44        `
��d��o�SDL_AddTimerNSSDL3.dllSDL3.dll/       -1                      0       59        `
��d�����'SDL_AddVulkanRenderSemaphoresSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�h��
SDL_AsyncIOFromFileSDL3.dll
SDL3.dll/       -1                      0       55        `
��d���V�#SDL_AttachVirtualJoystickSDL3.dll
SDL3.dll/       -1                      0       51        `
��d��
�SDL_AudioDevicePausedSDL3.dll
SDL3.dll/       -1                      0       57        `
��d���%SDL_AudioStreamDevicePausedSDL3.dll
SDL3.dll/       -1                      0       53        `
��d���#�!SDL_BeginGPUComputePassSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�X��SDL_BeginGPUCopyPassSDL3.dllSDL3.dll/       -1                      0       52        `
��d�]��� SDL_BeginGPURenderPassSDL3.dllSDL3.dll/       -1                      0       49        `
��d��.��SDL_BindAudioStreamSDL3.dll
SDL3.dll/       -1                      0       50        `
��d���l�SDL_BindAudioStreamsSDL3.dllSDL3.dll/       -1                      0       56        `
��d��(��$SDL_BindGPUComputePipelineSDL3.dllSDL3.dll/       -1                      0       56        `
��d�����$SDL_BindGPUComputeSamplersSDL3.dllSDL3.dll/       -1                      0       62        `
��d�5��*SDL_BindGPUComputeStorageBuffersSDL3.dllSDL3.dll/       -1                      0       63        `
��d�1��+SDL_BindGPUComputeStorageTexturesSDL3.dll
SDL3.dll/       -1                      0       57        `
��d��K��%SDL_BindGPUFragmentSamplersSDL3.dll
SDL3.dll/       -1                      0       63        `
��d��K��+SDL_BindGPUFragmentStorageBuffersSDL3.dll
SDL3.dll/       -1                      0       64        `
��d�8�=�,SDL_BindGPUFragmentStorageTexturesSDL3.dllSDL3.dll/       -1                      0       57        `
��d����%SDL_BindGPUGraphicsPipelineSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�� SDL_BindGPUIndexBufferSDL3.dllSDL3.dll/       -1                      0       54        `
��d�Zz��"SDL_BindGPUVertexBuffersSDL3.dllSDL3.dll/       -1                      0       55        `
��d���;�# SDL_BindGPUVertexSamplersSDL3.dll
SDL3.dll/       -1                      0       61        `
��d���m�)!SDL_BindGPUVertexStorageBuffersSDL3.dll
SDL3.dll/       -1                      0       62        `
��d��HZ�*"SDL_BindGPUVertexStorageTexturesSDL3.dllSDL3.dll/       -1                      0       48        `
��d��N�#SDL_BlitGPUTextureSDL3.dllSDL3.dll/       -1                      0       45        `
��d����$SDL_BlitSurfaceSDL3.dll
SDL3.dll/       -1                      0       50        `
��d��Ce�%SDL_BlitSurface9GridSDL3.dllSDL3.dll/       -1                      0       51        `
��d�R��&SDL_BlitSurfaceScaledSDL3.dll
SDL3.dll/       -1                      0       50        `
��d���'SDL_BlitSurfaceTiledSDL3.dllSDL3.dll/       -1                      0       59        `
��d��r��'(SDL_BlitSurfaceTiledWithScaleSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�3d��")SDL_BlitSurfaceUncheckedSDL3.dllSDL3.dll/       -1                      0       60        `
��d�8�u�(*SDL_BlitSurfaceUncheckedScaledSDL3.dllSDL3.dll/       -1                      0       52        `
��d�0��� +SDL_BroadcastConditionSDL3.dllSDL3.dll/       -1                      0       63        `
��d��'��+,SDL_CalculateGPUTextureFormatSizeSDL3.dll
SDL3.dll/       -1                      0       56        `
��d�'%�$-SDL_CancelGPUCommandBufferSDL3.dllSDL3.dll/       -1                      0       46        `
��d��
��.SDL_CaptureMouseSDL3.dllSDL3.dll/       -1                      0       57        `
��d�_`{�%/SDL_ClaimWindowForGPUDeviceSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�%ry�0SDL_CleanupTLSSDL3.dllSDL3.dll/       -1                      0       50        `
��d��v��1SDL_ClearAudioStreamSDL3.dllSDL3.dll/       -1                      0       52        `
��d���� 2SDL_ClearClipboardDataSDL3.dllSDL3.dll/       -1                      0       50        `
��d�����3SDL_ClearCompositionSDL3.dllSDL3.dll/       -1                      0       44        `
��d�����4SDL_ClearErrorSDL3.dllSDL3.dll/       -1                      0       47        `
��d����5SDL_ClearPropertySDL3.dll
SDL3.dll/       -1                      0       46        `
��d����6SDL_ClearSurfaceSDL3.dllSDL3.dll/       -1                      0       48        `
��d�����7SDL_ClickTrayEntrySDL3.dllSDL3.dll/       -1                      0       46        `
��d�:G�8SDL_CloseAsyncIOSDL3.dllSDL3.dll/       -1                      0       50        `
��d��Z��9SDL_CloseAudioDeviceSDL3.dllSDL3.dll/       -1                      0       45        `
��d�tI
�:SDL_CloseCameraSDL3.dll
SDL3.dll/       -1                      0       46        `
��d��N��;SDL_CloseGamepadSDL3.dllSDL3.dll/       -1                      0       45        `
��d���V�<SDL_CloseHapticSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�$�L�=SDL_CloseIOSDL3.dll
SDL3.dll/       -1                      0       47        `
��d��y��>SDL_CloseJoystickSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�+��?SDL_CloseSensorSDL3.dll
SDL3.dll/       -1                      0       46        `
��d��/��@SDL_CloseStorageSDL3.dllSDL3.dll/       -1                      0       57        `
��d����%ASDL_CompareAndSwapAtomicIntSDL3.dll
SDL3.dll/       -1                      0       61        `
��d�����)BSDL_CompareAndSwapAtomicPointerSDL3.dll
SDL3.dll/       -1                      0       57        `
��d�l�A�%CSDL_CompareAndSwapAtomicU32SDL3.dll
SDL3.dll/       -1                      0       56        `
��d�'AX�$DSDL_ComposeCustomBlendModeSDL3.dllSDL3.dll/       -1                      0       53        `
��d���Q�!ESDL_ConvertAudioSamplesSDL3.dll
SDL3.dll/       -1                      0       65        `
��d�!g��-FSDL_ConvertEventToRenderCoordinatesSDL3.dll
SDL3.dll/       -1                      0       47        `
��d��[��GSDL_ConvertPixelsSDL3.dll
SDL3.dll/       -1                      0       60        `
��d�����(HSDL_ConvertPixelsAndColorspaceSDL3.dllSDL3.dll/       -1                      0       48        `
��d�3�p�ISDL_ConvertSurfaceSDL3.dllSDL3.dll/       -1                      0       61        `
��d���)JSDL_ConvertSurfaceAndColorspaceSDL3.dll
SDL3.dll/       -1                      0       42        `
��d�Y��KSDL_CopyFileSDL3.dllSDL3.dll/       -1                      0       55        `
��d�����#LSDL_CopyGPUBufferToBufferSDL3.dll
SDL3.dll/       -1                      0       57        `
��d��z�%MSDL_CopyGPUTextureToTextureSDL3.dll
SDL3.dll/       -1                      0       48        `
��d����NSDL_CopyPropertiesSDL3.dllSDL3.dll/       -1                      0       49        `
��d�����OSDL_CopyStorageFileSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�2�� PSDL_CreateAsyncIOQueueSDL3.dllSDL3.dll/       -1                      0       51        `
��d�)l��QSDL_CreateAudioStreamSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�u^��RSDL_CreateColorCursorSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�ئ7�SSDL_CreateConditionSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�ի��TSDL_CreateCursorSDL3.dllSDL3.dll/       -1                      0       49        `
��d�����USDL_CreateDirectorySDL3.dll
SDL3.dll/       -1                      0       51        `
��d�_í�VSDL_CreateEnvironmentSDL3.dll
SDL3.dll/       -1                      0       49        `
��d����WSDL_CreateGPUBufferSDL3.dll
SDL3.dll/       -1                      0       58        `
��d�4���&XSDL_CreateGPUComputePipelineSDL3.dllSDL3.dll/       -1                      0       49        `
��d����YSDL_CreateGPUDeviceSDL3.dll
SDL3.dll/       -1                      0       63        `
��d����+ZSDL_CreateGPUDeviceWithPropertiesSDL3.dll
SDL3.dll/       -1                      0       59        `
��d��$�'[SDL_CreateGPUGraphicsPipelineSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�y�r�\SDL_CreateGPUSamplerSDL3.dllSDL3.dll/       -1                      0       49        `
��d�(��]SDL_CreateGPUShaderSDL3.dll
SDL3.dll/       -1                      0       50        `
��d��ղ�^SDL_CreateGPUTextureSDL3.dllSDL3.dll/       -1                      0       57        `
��d��r��%_SDL_CreateGPUTransferBufferSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��7� `SDL_CreateHapticEffectSDL3.dllSDL3.dll/       -1                      0       45        `
��d�/���aSDL_CreateMutexSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�$�5�bSDL_CreatePaletteSDL3.dll
SDL3.dll/       -1                      0       51        `
��d��tE�cSDL_CreatePopupWindowSDL3.dll
SDL3.dll/       -1                      0       47        `
��d���#�dSDL_CreateProcessSDL3.dll
SDL3.dll/       -1                      0       61        `
��d����)eSDL_CreateProcessWithPropertiesSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�����fSDL_CreatePropertiesSDL3.dllSDL3.dll/       -1                      0       46        `
��d��4��gSDL_CreateRWLockSDL3.dllSDL3.dll/       -1                      0       48        `
��d�6�d�hSDL_CreateRendererSDL3.dllSDL3.dll/       -1                      0       62        `
��d�Mz�*iSDL_CreateRendererWithPropertiesSDL3.dllSDL3.dll/       -1                      0       49        `
��d�=���jSDL_CreateSemaphoreSDL3.dll
SDL3.dll/       -1                      0       56        `
��d�j��$kSDL_CreateSoftwareRendererSDL3.dllSDL3.dll/       -1                      0       56        `
��d��Zl�$lSDL_CreateStorageDirectorySDL3.dllSDL3.dll/       -1                      0       47        `
��d��A��mSDL_CreateSurfaceSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�����nSDL_CreateSurfaceFromSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�8D�"oSDL_CreateSurfacePaletteSDL3.dllSDL3.dll/       -1                      0       52        `
��d�n�-� pSDL_CreateSystemCursorSDL3.dllSDL3.dll/       -1                      0       47        `
��d��$U�qSDL_CreateTextureSDL3.dll
SDL3.dll/       -1                      0       58        `
��d��pG�&rSDL_CreateTextureFromSurfaceSDL3.dllSDL3.dll/       -1                      0       61        `
��d�����)sSDL_CreateTextureWithPropertiesSDL3.dll
SDL3.dll/       -1                      0       53        `
��d��*��!tSDL_CreateThreadRuntimeSDL3.dll
SDL3.dll/       -1                      0       67        `
��d�<N9�/uSDL_CreateThreadWithPropertiesRuntimeSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�y���vSDL_CreateTraySDL3.dllSDL3.dll/       -1                      0       48        `
��d�����wSDL_CreateTrayMenuSDL3.dllSDL3.dll/       -1                      0       51        `
��d��í�xSDL_CreateTraySubmenuSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�~��ySDL_CreateWindowSDL3.dllSDL3.dll/       -1                      0       57        `
��d���z�%zSDL_CreateWindowAndRendererSDL3.dll
SDL3.dll/       -1                      0       60        `
��d�c���({SDL_CreateWindowWithPropertiesSDL3.dllSDL3.dll/       -1                      0       47        `
��d����|SDL_CursorVisibleSDL3.dll
SDL3.dll/       -1                      0       46        `
��d��S{�}SDL_DYNAPI_entrySDL3.dllSDL3.dll/       -1                      0       48        `
��d�X
��~SDL_DateTimeToTimeSDL3.dllSDL3.dll/       -1                      0       39        `
��d��.W�SDL_DelaySDL3.dll
SDL3.dll/       -1                      0       41        `
��d��&���SDL_DelayNSSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�sk��SDL_DelayPreciseSDL3.dllSDL3.dll/       -1                      0       53        `
��d�����!�SDL_DestroyAsyncIOQueueSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��~� �SDL_DestroyAudioStreamSDL3.dllSDL3.dll/       -1                      0       50        `
��d�� ��SDL_DestroyConditionSDL3.dllSDL3.dll/       -1                      0       47        `
��d�ue��SDL_DestroyCursorSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��q� �SDL_DestroyEnvironmentSDL3.dllSDL3.dll/       -1                      0       50        `
��d�
���SDL_DestroyGPUDeviceSDL3.dllSDL3.dll/       -1                      0       53        `
��d��}�!�SDL_DestroyHapticEffectSDL3.dll
SDL3.dll/       -1                      0       46        `
��d��|���SDL_DestroyMutexSDL3.dllSDL3.dll/       -1                      0       48        `
��d�|P���SDL_DestroyPaletteSDL3.dllSDL3.dll/       -1                      0       48        `
��d���g��SDL_DestroyProcessSDL3.dllSDL3.dll/       -1                      0       51        `
��d�?N��SDL_DestroyPropertiesSDL3.dll
SDL3.dll/       -1                      0       47        `
��d������SDL_DestroyRWLockSDL3.dll
SDL3.dll/       -1                      0       49        `
��d���_��SDL_DestroyRendererSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�o���SDL_DestroySemaphoreSDL3.dllSDL3.dll/       -1                      0       48        `
��d�����SDL_DestroySurfaceSDL3.dllSDL3.dll/       -1                      0       48        `
��d��U��SDL_DestroyTextureSDL3.dllSDL3.dll/       -1                      0       45        `
��d�0ֹ��SDL_DestroyTraySDL3.dll
SDL3.dll/       -1                      0       47        `
��d�[���SDL_DestroyWindowSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�M�k�"�SDL_DestroyWindowSurfaceSDL3.dllSDL3.dll/       -1                      0       46        `
��d��B���SDL_DetachThreadSDL3.dllSDL3.dll/       -1                      0       55        `
��d�?���#�SDL_DetachVirtualJoystickSDL3.dll
SDL3.dll/       -1                      0       52        `
��d���K� �SDL_DisableScreenSaverSDL3.dllSDL3.dll/       -1                      0       52        `
��d�M8N� �SDL_DispatchGPUComputeSDL3.dllSDL3.dll/       -1                      0       60        `
��d�(ɨ�(�SDL_DispatchGPUComputeIndirectSDL3.dllSDL3.dll/       -1                      0       55        `
��d�����#�SDL_DownloadFromGPUBufferSDL3.dll
SDL3.dll/       -1                      0       56        `
��d��$��$�SDL_DownloadFromGPUTextureSDL3.dllSDL3.dll/       -1                      0       58        `
��d���]�&�SDL_DrawGPUIndexedPrimitivesSDL3.dllSDL3.dll/       -1                      0       66        `
��d��|�.�SDL_DrawGPUIndexedPrimitivesIndirectSDL3.dllSDL3.dll/       -1                      0       51        `
��d�A'x��SDL_DrawGPUPrimitivesSDL3.dll
SDL3.dll/       -1                      0       59        `
��d����'�SDL_DrawGPUPrimitivesIndirectSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�T?���SDL_DuplicateSurfaceSDL3.dllSDL3.dll/       -1                      0       54        `
��d�P���"�SDL_EGL_GetCurrentConfigSDL3.dllSDL3.dll/       -1                      0       55        `
��d��a��#�SDL_EGL_GetCurrentDisplaySDL3.dll
SDL3.dll/       -1                      0       52        `
��d���� �SDL_EGL_GetProcAddressSDL3.dllSDL3.dll/       -1                      0       54        `
��d�w���"�SDL_EGL_GetWindowSurfaceSDL3.dllSDL3.dll/       -1                      0       59        `
��d�O���'�SDL_EGL_SetAttributeCallbacksSDL3.dll
SDL3.dll/       -1                      0       51        `
��d��~���SDL_EnableScreenSaverSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�ai��SDL_EndGPUComputePassSDL3.dll
SDL3.dll/       -1                      0       48        `
��d��ƌ��SDL_EndGPUCopyPassSDL3.dllSDL3.dll/       -1                      0       50        `
��d�����SDL_EndGPURenderPassSDL3.dllSDL3.dll/       -1                      0       55        `
��d�x���#�SDL_EnterAppMainCallbacksSDL3.dll
SDL3.dll/       -1                      0       52        `
��d���� �SDL_EnumerateDirectorySDL3.dllSDL3.dll/       -1                      0       53        `
��d��9��!�SDL_EnumeratePropertiesSDL3.dll
SDL3.dll/       -1                      0       59        `
��d��p��'�SDL_EnumerateStorageDirectorySDL3.dll
SDL3.dll/       -1                      0       46        `
��d��4���SDL_EventEnabledSDL3.dllSDL3.dll/       -1                      0       49        `
��d��A���SDL_FillSurfaceRectSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�n'��SDL_FillSurfaceRectsSDL3.dllSDL3.dll/       -1                      0       46        `
��d���Z��SDL_FilterEventsSDL3.dllSDL3.dll/       -1                      0       45        `
��d�@+��SDL_FlashWindowSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��XV��SDL_FlipSurfaceSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�����SDL_FlushAudioStreamSDL3.dllSDL3.dll/       -1                      0       44        `
��d��;���SDL_FlushEventSDL3.dllSDL3.dll/       -1                      0       45        `
��d�r����SDL_FlushEventsSDL3.dll
SDL3.dll/       -1                      0       41        `
��d��Ŭ��SDL_FlushIOSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�����SDL_FlushRendererSDL3.dll
SDL3.dll/       -1                      0       52        `
��d���� �SDL_GDKSuspendCompleteSDL3.dllSDL3.dll/       -1                      0       50        `
��d�<�k��SDL_GL_CreateContextSDL3.dllSDL3.dll/       -1                      0       51        `
��d�|jC��SDL_GL_DestroyContextSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�����#�SDL_GL_ExtensionSupportedSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�
� ��SDL_GL_GetAttributeSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�
��"�SDL_GL_GetCurrentContextSDL3.dllSDL3.dll/       -1                      0       53        `
��d���!�SDL_GL_GetCurrentWindowSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�MT��SDL_GL_GetProcAddressSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��<9� �SDL_GL_GetSwapIntervalSDL3.dllSDL3.dll/       -1                      0       48        `
��d�����SDL_GL_LoadLibrarySDL3.dllSDL3.dll/       -1                      0       48        `
��d�K#���SDL_GL_MakeCurrentSDL3.dllSDL3.dll/       -1                      0       52        `
��d��H�� �SDL_GL_ResetAttributesSDL3.dllSDL3.dll/       -1                      0       49        `
��d�����SDL_GL_SetAttributeSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�Tb�� �SDL_GL_SetSwapIntervalSDL3.dllSDL3.dll/       -1                      0       47        `
��d������SDL_GL_SwapWindowSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�����SDL_GL_UnloadLibrarySDL3.dllSDL3.dll/       -1                      0       55        `
��d���`�#�SDL_GPUSupportsPropertiesSDL3.dll
SDL3.dll/       -1                      0       58        `
��d�����&�SDL_GPUSupportsShaderFormatsSDL3.dllSDL3.dll/       -1                      0       64        `
��d��Z��,�SDL_GPUTextureFormatTexelBlockSizeSDL3.dllSDL3.dll/       -1                      0       58        `
��d��d;�&�SDL_GPUTextureSupportsFormatSDL3.dllSDL3.dll/       -1                      0       63        `
��d�����+�SDL_GPUTextureSupportsSampleCountSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�C3���SDL_GUIDToStringSDL3.dllSDL3.dll/       -1                      0       50        `
��d������SDL_GamepadConnectedSDL3.dllSDL3.dll/       -1                      0       54        `
��d��x��"�SDL_GamepadEventsEnabledSDL3.dllSDL3.dll/       -1                      0       48        `
��d�(�x��SDL_GamepadHasAxisSDL3.dllSDL3.dll/       -1                      0       50        `
��d�Jm��SDL_GamepadHasButtonSDL3.dllSDL3.dll/       -1                      0       50        `
��d����SDL_GamepadHasSensorSDL3.dllSDL3.dll/       -1                      0       54        `
��d���"�SDL_GamepadSensorEnabledSDL3.dllSDL3.dll/       -1                      0       62        `
��d�_�H�*�SDL_GenerateMipmapsForGPUTextureSDL3.dllSDL3.dll/       -1                      0       56        `
��d�}�$�SDL_GetAppMetadataPropertySDL3.dllSDL3.dll/       -1                      0       53        `
��d� ���!�SDL_GetAssertionHandlerSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�<R�� �SDL_GetAssertionReportSDL3.dllSDL3.dll/       -1                      0       50        `
��d�����SDL_GetAsyncIOResultSDL3.dllSDL3.dll/       -1                      0       48        `
��d�����SDL_GetAsyncIOSizeSDL3.dllSDL3.dll/       -1                      0       46        `
��d��+��SDL_GetAtomicIntSDL3.dllSDL3.dll/       -1                      0       50        `
��d�v�a��SDL_GetAtomicPointerSDL3.dllSDL3.dll/       -1                      0       46        `
��d��x���SDL_GetAtomicU32SDL3.dllSDL3.dll/       -1                      0       58        `
��d��?r�&�SDL_GetAudioDeviceChannelMapSDL3.dllSDL3.dll/       -1                      0       54        `
��d��l��"�SDL_GetAudioDeviceFormatSDL3.dllSDL3.dll/       -1                      0       52        `
��d��N� �SDL_GetAudioDeviceGainSDL3.dllSDL3.dll/       -1                      0       52        `
��d�jQ� �SDL_GetAudioDeviceNameSDL3.dllSDL3.dll/       -1                      0       48        `
��d�\|��SDL_GetAudioDriverSDL3.dllSDL3.dll/       -1                      0       52        `
��d�ұ� �SDL_GetAudioFormatNameSDL3.dllSDL3.dll/       -1                      0       57        `
��d��A�%�SDL_GetAudioPlaybackDevicesSDL3.dll
SDL3.dll/       -1                      0       58        `
��d�����&�SDL_GetAudioRecordingDevicesSDL3.dllSDL3.dll/       -1                      0       57        `
��d�����%�SDL_GetAudioStreamAvailableSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�M��� �SDL_GetAudioStreamDataSDL3.dllSDL3.dll/       -1                      0       54        `
��d�.n��"�SDL_GetAudioStreamDeviceSDL3.dllSDL3.dll/       -1                      0       54        `
��d����"�SDL_GetAudioStreamFormatSDL3.dllSDL3.dll/       -1                      0       62        `
��d�j�{�*�SDL_GetAudioStreamFrequencyRatioSDL3.dllSDL3.dll/       -1                      0       52        `
��d��� �SDL_GetAudioStreamGainSDL3.dllSDL3.dll/       -1                      0       63        `
��d�Jڛ�+�SDL_GetAudioStreamInputChannelMapSDL3.dll
SDL3.dll/       -1                      0       64        `
��d���X�,�SDL_GetAudioStreamOutputChannelMapSDL3.dllSDL3.dll/       -1                      0       58        `
��d�Z�J�&�SDL_GetAudioStreamPropertiesSDL3.dllSDL3.dll/       -1                      0       54        `
��d�q9�"�SDL_GetAudioStreamQueuedSDL3.dllSDL3.dll/       -1                      0       45        `
��d��(���SDL_GetBasePathSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�s>�� �SDL_GetBooleanPropertySDL3.dllSDL3.dll/       -1                      0       53        `
��d�a��!�SDL_GetCPUCacheLineSizeSDL3.dll
SDL3.dll/       -1                      0       49        `
��d��;���SDL_GetCameraDriverSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�
�`��SDL_GetCameraFormatSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�:m���SDL_GetCameraIDSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�`D���SDL_GetCameraNameSDL3.dll
SDL3.dll/       -1                      0       58        `
��d��x��&�SDL_GetCameraPermissionStateSDL3.dllSDL3.dll/       -1                      0       51        `
��d�m�	��SDL_GetCameraPositionSDL3.dll
SDL3.dll/       -1                      0       53        `
��d��
$�!�SDL_GetCameraPropertiesSDL3.dll
SDL3.dll/       -1                      0       59        `
��d����'�SDL_GetCameraSupportedFormatsSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�jw��SDL_GetCamerasSDL3.dllSDL3.dll/       -1                      0       50        `
��d�"���SDL_GetClipboardDataSDL3.dllSDL3.dll/       -1                      0       55        `
��d�x�(�#�SDL_GetClipboardMimeTypesSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�{]0��SDL_GetClipboardTextSDL3.dllSDL3.dll/       -1                      0       65        `
��d�-+�-�SDL_GetClosestFullscreenDisplayModeSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�	)�#SDL_GetCurrentAudioDriverSDL3.dll
SDL3.dll/       -1                      0       56        `
��d��e�$SDL_GetCurrentCameraDriverSDL3.dllSDL3.dll/       -1                      0       53        `
��d�N*�!SDL_GetCurrentDirectorySDL3.dll
SDL3.dll/       -1                      0       55        `
��d�I���#SDL_GetCurrentDisplayModeSDL3.dll
SDL3.dll/       -1                      0       62        `
��d��	�*SDL_GetCurrentDisplayOrientationSDL3.dllSDL3.dll/       -1                      0       60        `
��d���(SDL_GetCurrentRenderOutputSizeSDL3.dllSDL3.dll/       -1                      0       52        `
��d�l�u� SDL_GetCurrentThreadIDSDL3.dllSDL3.dll/       -1                      0       48        `
��d��ǟ�SDL_GetCurrentTimeSDL3.dllSDL3.dll/       -1                      0       55        `
��d�r�J�#SDL_GetCurrentVideoDriverSDL3.dll
SDL3.dll/       -1                      0       43        `
��d��T5�	SDL_GetCursorSDL3.dll
SDL3.dll/       -1                      0       51        `
��d��:�
SDL_GetDXGIOutputInfoSDL3.dll
SDL3.dll/       -1                      0       62        `
��d��3��*SDL_GetDateTimeLocalePreferencesSDL3.dllSDL3.dll/       -1                      0       46        `
��d���SDL_GetDayOfWeekSDL3.dllSDL3.dll/       -1                      0       46        `
��d����
SDL_GetDayOfYearSDL3.dllSDL3.dll/       -1                      0       48        `
��d����SDL_GetDaysInMonthSDL3.dllSDL3.dll/       -1                      0       60        `
��d��2�(SDL_GetDefaultAssertionHandlerSDL3.dllSDL3.dll/       -1                      0       50        `
��d�D��SDL_GetDefaultCursorSDL3.dllSDL3.dll/       -1                      0       61        `
��d�Is�)SDL_GetDefaultLogOutputFunctionSDL3.dll
SDL3.dll/       -1                      0       55        `
��d��`�#SDL_GetDesktopDisplayModeSDL3.dll
SDL3.dll/       -1                      0       58        `
��d��m�&SDL_GetDirect3D9AdapterIndexSDL3.dllSDL3.dll/       -1                      0       50        `
��d�p��SDL_GetDisplayBoundsSDL3.dllSDL3.dll/       -1                      0       56        `
��d���l�$SDL_GetDisplayContentScaleSDL3.dllSDL3.dll/       -1                      0       52        `
��d�͔)� SDL_GetDisplayForPointSDL3.dllSDL3.dll/       -1                      0       51        `
��d�T��SDL_GetDisplayForRectSDL3.dll
SDL3.dll/       -1                      0       53        `
��d��>��!SDL_GetDisplayForWindowSDL3.dll
SDL3.dll/       -1                      0       48        `
��d����SDL_GetDisplayNameSDL3.dllSDL3.dll/       -1                      0       54        `
��d��3��"SDL_GetDisplayPropertiesSDL3.dllSDL3.dll/       -1                      0       56        `
��d����$SDL_GetDisplayUsableBoundsSDL3.dllSDL3.dll/       -1                      0       45        `
��d��u�SDL_GetDisplaysSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�y-E�SDL_GetEnvironmentSDL3.dllSDL3.dll/       -1                      0       56        `
��d��T��$SDL_GetEnvironmentVariableSDL3.dllSDL3.dll/       -1                      0       57        `
��d��E�%SDL_GetEnvironmentVariablesSDL3.dll
SDL3.dll/       -1                      0       42        `
��d�ro�� SDL_GetErrorSDL3.dllSDL3.dll/       -1                      0       48        `
��d�R���!SDL_GetEventFilterSDL3.dllSDL3.dll/       -1                      0       50        `
��d� v��"SDL_GetFloatPropertySDL3.dllSDL3.dll/       -1                      0       59        `
��d�)8n�'#SDL_GetFullscreenDisplayModesSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��s�� $SDL_GetGPUDeviceDriverSDL3.dllSDL3.dll/       -1                      0       46        `
��d�<��%SDL_GetGPUDriverSDL3.dllSDL3.dll/       -1                      0       53        `
��d�����!&SDL_GetGPUShaderFormatsSDL3.dll
SDL3.dll/       -1                      0       62        `
��d���*'SDL_GetGPUSwapchainTextureFormatSDL3.dllSDL3.dll/       -1                      0       69        `
��d���%�1(SDL_GetGamepadAppleSFSymbolsNameForAxisSDL3.dll
SDL3.dll/       -1                      0       71        `
��d�(S�3)SDL_GetGamepadAppleSFSymbolsNameForButtonSDL3.dll
SDL3.dll/       -1                      0       48        `
��d��GT�*SDL_GetGamepadAxisSDL3.dllSDL3.dll/       -1                      0       58        `
��d���^�&+SDL_GetGamepadAxisFromStringSDL3.dllSDL3.dll/       -1                      0       52        `
��d��r� ,SDL_GetGamepadBindingsSDL3.dllSDL3.dll/       -1                      0       50        `
��d��H%�-SDL_GetGamepadButtonSDL3.dllSDL3.dll/       -1                      0       60        `
��d����(.SDL_GetGamepadButtonFromStringSDL3.dllSDL3.dll/       -1                      0       55        `
��d�=�g�#/SDL_GetGamepadButtonLabelSDL3.dll
SDL3.dll/       -1                      0       62        `
��d�:s��*0SDL_GetGamepadButtonLabelForTypeSDL3.dllSDL3.dll/       -1                      0       59        `
��d��j�'1SDL_GetGamepadConnectionStateSDL3.dll
SDL3.dll/       -1                      0       59        `
��d�K��'2SDL_GetGamepadFirmwareVersionSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�l���3SDL_GetGamepadFromIDSDL3.dllSDL3.dll/       -1                      0       59        `
��d���j�'4SDL_GetGamepadFromPlayerIndexSDL3.dll
SDL3.dll/       -1                      0       53        `
��d� Y�!5SDL_GetGamepadGUIDForIDSDL3.dll
SDL3.dll/       -1                      0       46        `
��d��hS�6SDL_GetGamepadIDSDL3.dllSDL3.dll/       -1                      0       52        `
��d��ϒ� 7SDL_GetGamepadJoystickSDL3.dllSDL3.dll/       -1                      0       51        `
��d����8SDL_GetGamepadMappingSDL3.dll
SDL3.dll/       -1                      0       58        `
��d�B��&9SDL_GetGamepadMappingForGUIDSDL3.dllSDL3.dll/       -1                      0       56        `
��d�� ��$:SDL_GetGamepadMappingForIDSDL3.dllSDL3.dll/       -1                      0       52        `
��d����� ;SDL_GetGamepadMappingsSDL3.dllSDL3.dll/       -1                      0       48        `
��d�O�<SDL_GetGamepadNameSDL3.dllSDL3.dll/       -1                      0       53        `
��d���!=SDL_GetGamepadNameForIDSDL3.dll
SDL3.dll/       -1                      0       48        `
��d����>SDL_GetGamepadPathSDL3.dllSDL3.dll/       -1                      0       53        `
��d�����!?SDL_GetGamepadPathForIDSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�����#@SDL_GetGamepadPlayerIndexSDL3.dll
SDL3.dll/       -1                      0       60        `
��d���(ASDL_GetGamepadPlayerIndexForIDSDL3.dllSDL3.dll/       -1                      0       53        `
��d��=!�!BSDL_GetGamepadPowerInfoSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�����CSDL_GetGamepadProductSDL3.dll
SDL3.dll/       -1                      0       56        `
��d�P�j�$DSDL_GetGamepadProductForIDSDL3.dllSDL3.dll/       -1                      0       58        `
��d����&ESDL_GetGamepadProductVersionSDL3.dllSDL3.dll/       -1                      0       63        `
��d�����+FSDL_GetGamepadProductVersionForIDSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�`��"GSDL_GetGamepadPropertiesSDL3.dllSDL3.dll/       -1                      0       54        `
��d�����"HSDL_GetGamepadSensorDataSDL3.dllSDL3.dll/       -1                      0       58        `
��d�x&��&ISDL_GetGamepadSensorDataRateSDL3.dllSDL3.dll/       -1                      0       50        `
��d��g�JSDL_GetGamepadSerialSDL3.dllSDL3.dll/       -1                      0       55        `
��d��6��#KSDL_GetGamepadSteamHandleSDL3.dll
SDL3.dll/       -1                      0       57        `
��d�-!~�%LSDL_GetGamepadStringForAxisSDL3.dll
SDL3.dll/       -1                      0       59        `
��d�Ne��'MSDL_GetGamepadStringForButtonSDL3.dll
SDL3.dll/       -1                      0       57        `
��d�be��%NSDL_GetGamepadStringForTypeSDL3.dll
SDL3.dll/       -1                      0       58        `
��d�����&OSDL_GetGamepadTouchpadFingerSDL3.dllSDL3.dll/       -1                      0       48        `
��d�ǎ�PSDL_GetGamepadTypeSDL3.dllSDL3.dll/       -1                      0       53        `
��d�_$�!QSDL_GetGamepadTypeForIDSDL3.dll
SDL3.dll/       -1                      0       58        `
��d��%r�&RSDL_GetGamepadTypeFromStringSDL3.dllSDL3.dll/       -1                      0       50        `
��d�����SSDL_GetGamepadVendorSDL3.dllSDL3.dll/       -1                      0       55        `
��d��W�#TSDL_GetGamepadVendorForIDSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�
:��USDL_GetGamepadsSDL3.dll
SDL3.dll/       -1                      0       53        `
��d����!VSDL_GetGlobalMouseStateSDL3.dll
SDL3.dll/       -1                      0       53        `
��d���V�!WSDL_GetGlobalPropertiesSDL3.dll
SDL3.dll/       -1                      0       50        `
��d��j�XSDL_GetGrabbedWindowSDL3.dllSDL3.dll/       -1                      0       55        `
��d�_���#YSDL_GetHapticEffectStatusSDL3.dll
SDL3.dll/       -1                      0       51        `
��d��V)�ZSDL_GetHapticFeaturesSDL3.dll
SDL3.dll/       -1                      0       49        `
��d���f�[SDL_GetHapticFromIDSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�Wq��\SDL_GetHapticIDSDL3.dll
SDL3.dll/       -1                      0       47        `
��d��H��]SDL_GetHapticNameSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�\�"� ^SDL_GetHapticNameForIDSDL3.dllSDL3.dll/       -1                      0       44        `
��d�p١�_SDL_GetHapticsSDL3.dllSDL3.dll/       -1                      0       41        `
��d�'��`SDL_GetHintSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�1���aSDL_GetHintBooleanSDL3.dllSDL3.dll/       -1                      0       49        `
��d�Y/��bSDL_GetIOPropertiesSDL3.dll
SDL3.dll/       -1                      0       43        `
��d�h��cSDL_GetIOSizeSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��U�dSDL_GetIOStatusSDL3.dll
SDL3.dll/       -1                      0       49        `
��d����eSDL_GetJoystickAxisSDL3.dll
SDL3.dll/       -1                      0       61        `
��d�J�4�)fSDL_GetJoystickAxisInitialStateSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�����gSDL_GetJoystickBallSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�z���hSDL_GetJoystickButtonSDL3.dll
SDL3.dll/       -1                      0       60        `
��d�lr!�(iSDL_GetJoystickConnectionStateSDL3.dllSDL3.dll/       -1                      0       60        `
��d��-��(jSDL_GetJoystickFirmwareVersionSDL3.dllSDL3.dll/       -1                      0       51        `
��d�Fr��kSDL_GetJoystickFromIDSDL3.dll
SDL3.dll/       -1                      0       60        `
��d�l{��(lSDL_GetJoystickFromPlayerIndexSDL3.dllSDL3.dll/       -1                      0       49        `
��d�	9��mSDL_GetJoystickGUIDSDL3.dll
SDL3.dll/       -1                      0       54        `
��d��jQ�"nSDL_GetJoystickGUIDForIDSDL3.dllSDL3.dll/       -1                      0       53        `
��d�GRZ�!oSDL_GetJoystickGUIDInfoSDL3.dll
SDL3.dll/       -1                      0       48        `
��d��^��pSDL_GetJoystickHatSDL3.dllSDL3.dll/       -1                      0       47        `
��d�Y���qSDL_GetJoystickIDSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�2v�rSDL_GetJoystickNameSDL3.dll
SDL3.dll/       -1                      0       54        `
��d����"sSDL_GetJoystickNameForIDSDL3.dllSDL3.dll/       -1                      0       49        `
��d�qu��tSDL_GetJoystickPathSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�{g�"uSDL_GetJoystickPathForIDSDL3.dllSDL3.dll/       -1                      0       56        `
��d�E��$vSDL_GetJoystickPlayerIndexSDL3.dllSDL3.dll/       -1                      0       61        `
��d��r��)wSDL_GetJoystickPlayerIndexForIDSDL3.dll
SDL3.dll/       -1                      0       54        `
��d��,T�"xSDL_GetJoystickPowerInfoSDL3.dllSDL3.dll/       -1                      0       52        `
��d��`�� ySDL_GetJoystickProductSDL3.dllSDL3.dll/       -1                      0       57        `
��d��6
�%zSDL_GetJoystickProductForIDSDL3.dll
SDL3.dll/       -1                      0       59        `
��d���d�'{SDL_GetJoystickProductVersionSDL3.dll
SDL3.dll/       -1                      0       64        `
��d��-Z�,|SDL_GetJoystickProductVersionForIDSDL3.dllSDL3.dll/       -1                      0       55        `
��d��¶�#}SDL_GetJoystickPropertiesSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�c��~SDL_GetJoystickSerialSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�y>��SDL_GetJoystickTypeSDL3.dll
SDL3.dll/       -1                      0       54        `
��d����"�SDL_GetJoystickTypeForIDSDL3.dllSDL3.dll/       -1                      0       51        `
��d�TK���SDL_GetJoystickVendorSDL3.dll
SDL3.dll/       -1                      0       56        `
��d�@`
�$�SDL_GetJoystickVendorForIDSDL3.dllSDL3.dll/       -1                      0       46        `
��d��C���SDL_GetJoysticksSDL3.dllSDL3.dll/       -1                      0       48        `
��d�U�g��SDL_GetKeyFromNameSDL3.dllSDL3.dll/       -1                      0       52        `
��d�w�� �SDL_GetKeyFromScancodeSDL3.dllSDL3.dll/       -1                      0       44        `
��d�r����SDL_GetKeyNameSDL3.dllSDL3.dll/       -1                      0       50        `
��d���?��SDL_GetKeyboardFocusSDL3.dllSDL3.dll/       -1                      0       54        `
��d�y ��"�SDL_GetKeyboardNameForIDSDL3.dllSDL3.dll/       -1                      0       50        `
��d���4��SDL_GetKeyboardStateSDL3.dllSDL3.dll/       -1                      0       46        `
��d�&;x��SDL_GetKeyboardsSDL3.dllSDL3.dll/       -1                      0       54        `
��d�p[d�"�SDL_GetLogOutputFunctionSDL3.dllSDL3.dll/       -1                      0       48        `
��d�,�&��SDL_GetLogPrioritySDL3.dllSDL3.dll/       -1                      0       56        `
��d�"�B�$�SDL_GetMasksForPixelFormatSDL3.dllSDL3.dll/       -1                      0       53        `
��d�����!�SDL_GetMaxHapticEffectsSDL3.dll
SDL3.dll/       -1                      0       60        `
��d�����(�SDL_GetMaxHapticEffectsPlayingSDL3.dllSDL3.dll/       -1                      0       52        `
��d�|m�� �SDL_GetMemoryFunctionsSDL3.dllSDL3.dll/       -1                      0       41        `
��d�O�|��SDL_GetMiceSDL3.dll
SDL3.dll/       -1                      0       45        `
��d���A��SDL_GetModStateSDL3.dll
SDL3.dll/       -1                      0       47        `
��d���9��SDL_GetMouseFocusSDL3.dll
SDL3.dll/       -1                      0       51        `
��d������SDL_GetMouseNameForIDSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�OCz��SDL_GetMouseStateSDL3.dll
SDL3.dll/       -1                      0       62        `
��d�_��*�SDL_GetNaturalDisplayOrientationSDL3.dllSDL3.dll/       -1                      0       51        `
��d�U,��SDL_GetNumAllocationsSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�>T%� �SDL_GetNumAudioDriversSDL3.dllSDL3.dll/       -1                      0       53        `
��d�q2.�!�SDL_GetNumCameraDriversSDL3.dll
SDL3.dll/       -1                      0       50        `
��d��=���SDL_GetNumGPUDriversSDL3.dllSDL3.dll/       -1                      0       62        `
��d�����*�SDL_GetNumGamepadTouchpadFingersSDL3.dllSDL3.dll/       -1                      0       56        `
��d�m��$�SDL_GetNumGamepadTouchpadsSDL3.dllSDL3.dll/       -1                      0       50        `
��d�a_u��SDL_GetNumHapticAxesSDL3.dllSDL3.dll/       -1                      0       52        `
��d��S�� �SDL_GetNumJoystickAxesSDL3.dllSDL3.dll/       -1                      0       53        `
��d���x�!�SDL_GetNumJoystickBallsSDL3.dll
SDL3.dll/       -1                      0       55        `
��d��|�#�SDL_GetNumJoystickButtonsSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��01� �SDL_GetNumJoystickHatsSDL3.dllSDL3.dll/       -1                      0       55        `
��d�w��#�SDL_GetNumLogicalCPUCoresSDL3.dll
SDL3.dll/       -1                      0       53        `
��d��B
�!�SDL_GetNumRenderDriversSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�E�� �SDL_GetNumVideoDriversSDL3.dllSDL3.dll/       -1                      0       51        `
��d��^|��SDL_GetNumberPropertySDL3.dll
SDL3.dll/       -1                      0       60        `
��d���Q�(�SDL_GetOriginalMemoryFunctionsSDL3.dllSDL3.dll/       -1                      0       45        `
��d�_���SDL_GetPathInfoSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�25��#�SDL_GetPerformanceCounterSDL3.dll
SDL3.dll/       -1                      0       57        `
��d�ߍ��%�SDL_GetPerformanceFrequencySDL3.dll
SDL3.dll/       -1                      0       55        `
��d�9.��#�SDL_GetPixelFormatDetailsSDL3.dll
SDL3.dll/       -1                      0       56        `
��d��/�$�SDL_GetPixelFormatForMasksSDL3.dllSDL3.dll/       -1                      0       52        `
��d��� �SDL_GetPixelFormatNameSDL3.dllSDL3.dll/       -1                      0       45        `
��d�����SDL_GetPlatformSDL3.dll
SDL3.dll/       -1                      0       52        `
��d����� �SDL_GetPointerPropertySDL3.dllSDL3.dll/       -1                      0       46        `
��d�U���SDL_GetPowerInfoSDL3.dllSDL3.dll/       -1                      0       45        `
��d�z�i��SDL_GetPrefPathSDL3.dll
SDL3.dll/       -1                      0       53        `
��d�$H��!�SDL_GetPreferredLocalesSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�)����SDL_GetPrimaryDisplaySDL3.dll
SDL3.dll/       -1                      0       57        `
��d��<��%�SDL_GetPrimarySelectionTextSDL3.dll
SDL3.dll/       -1                      0       49        `
��d��O���SDL_GetProcessInputSDL3.dll
SDL3.dll/       -1                      0       50        `
��d��ա��SDL_GetProcessOutputSDL3.dllSDL3.dll/       -1                      0       54        `
��d���D�"�SDL_GetProcessPropertiesSDL3.dllSDL3.dll/       -1                      0       49        `
��d��l��SDL_GetPropertyTypeSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�ڀ���SDL_GetRGBSDL3.dllSDL3.dll/       -1                      0       41        `
��d�h���SDL_GetRGBASDL3.dll
SDL3.dll/       -1                      0       52        `
��d��b2� �SDL_GetRealGamepadTypeSDL3.dllSDL3.dll/       -1                      0       57        `
��d���}�%�SDL_GetRealGamepadTypeForIDSDL3.dll
SDL3.dll/       -1                      0       60        `
��d����(�SDL_GetRectAndLineIntersectionSDL3.dllSDL3.dll/       -1                      0       65        `
��d���?�-�SDL_GetRectAndLineIntersectionFloatSDL3.dll
SDL3.dll/       -1                      0       56        `
��d�p��$�SDL_GetRectEnclosingPointsSDL3.dllSDL3.dll/       -1                      0       61        `
��d�H��)�SDL_GetRectEnclosingPointsFloatSDL3.dll
SDL3.dll/       -1                      0       53        `
��d��K�!�SDL_GetRectIntersectionSDL3.dll
SDL3.dll/       -1                      0       58        `
��d��`�&�SDL_GetRectIntersectionFloatSDL3.dllSDL3.dll/       -1                      0       46        `
��d��w~��SDL_GetRectUnionSDL3.dllSDL3.dll/       -1                      0       51        `
��d�P(���SDL_GetRectUnionFloatSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�t���#�SDL_GetRelativeMouseStateSDL3.dll
SDL3.dll/       -1                      0       51        `
��d��W���SDL_GetRenderClipRectSDL3.dll
SDL3.dll/       -1                      0       53        `
��d�\��!�SDL_GetRenderColorScaleSDL3.dll
SDL3.dll/       -1                      0       56        `
��d��Hb�$�SDL_GetRenderDrawBlendModeSDL3.dllSDL3.dll/       -1                      0       52        `
��d�Rҟ� �SDL_GetRenderDrawColorSDL3.dllSDL3.dll/       -1                      0       57        `
��d���(�%�SDL_GetRenderDrawColorFloatSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�)���SDL_GetRenderDriverSDL3.dll
SDL3.dll/       -1                      0       62        `
��d�b(��*�SDL_GetRenderLogicalPresentationSDL3.dllSDL3.dll/       -1                      0       66        `
��d��L��.�SDL_GetRenderLogicalPresentationRectSDL3.dllSDL3.dll/       -1                      0       62        `
��d����*�SDL_GetRenderMetalCommandEncoderSDL3.dllSDL3.dll/       -1                      0       53        `
��d�X@V�!�SDL_GetRenderMetalLayerSDL3.dll
SDL3.dll/       -1                      0       53        `
��d�l��!�SDL_GetRenderOutputSizeSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�9
���SDL_GetRenderSafeAreaSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�o�n��SDL_GetRenderScaleSDL3.dllSDL3.dll/       -1                      0       49        `
��d��+���SDL_GetRenderTargetSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�����SDL_GetRenderVSyncSDL3.dllSDL3.dll/       -1                      0       51        `
��d���SDL_GetRenderViewportSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�&�x��SDL_GetRenderWindowSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��n���SDL_GetRendererSDL3.dll
SDL3.dll/       -1                      0       56        `
��d�e���$�SDL_GetRendererFromTextureSDL3.dllSDL3.dll/       -1                      0       49        `
��d������SDL_GetRendererNameSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�W��#�SDL_GetRendererPropertiesSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��o���SDL_GetRevisionSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�8����SDL_GetSIMDAlignmentSDL3.dllSDL3.dll/       -1                      0       44        `
��d�z�r��SDL_GetSandboxSDL3.dllSDL3.dll/       -1                      0       52        `
��d���� �SDL_GetScancodeFromKeySDL3.dllSDL3.dll/       -1                      0       53        `
��d�~���!�SDL_GetScancodeFromNameSDL3.dll
SDL3.dll/       -1                      0       49        `
��d��Az��SDL_GetScancodeNameSDL3.dll
SDL3.dll/       -1                      0       51        `
��d���h��SDL_GetSemaphoreValueSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�����SDL_GetSensorDataSDL3.dll
SDL3.dll/       -1                      0       49        `
��d������SDL_GetSensorFromIDSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��$��SDL_GetSensorIDSDL3.dll
SDL3.dll/       -1                      0       47        `
��d���W��SDL_GetSensorNameSDL3.dll
SDL3.dll/       -1                      0       52        `
��d���� �SDL_GetSensorNameForIDSDL3.dllSDL3.dll/       -1                      0       58        `
��d��Q��&�SDL_GetSensorNonPortableTypeSDL3.dllSDL3.dll/       -1                      0       63        `
��d����+�SDL_GetSensorNonPortableTypeForIDSDL3.dll
SDL3.dll/       -1                      0       53        `
��d�<>��!�SDL_GetSensorPropertiesSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�Gs���SDL_GetSensorTypeSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�C��� �SDL_GetSensorTypeForIDSDL3.dllSDL3.dll/       -1                      0       44        `
��d������SDL_GetSensorsSDL3.dllSDL3.dll/       -1                      0       58        `
��d�'�Z�&�SDL_GetSilenceValueForFormatSDL3.dllSDL3.dll/       -1                      0       52        `
��d�r%�� �SDL_GetStorageFileSizeSDL3.dllSDL3.dll/       -1                      0       52        `
��d��{)� �SDL_GetStoragePathInfoSDL3.dllSDL3.dll/       -1                      0       58        `
��d�Ҫ�&�SDL_GetStorageSpaceRemainingSDL3.dllSDL3.dll/       -1                      0       51        `
��d�Qqp��SDL_GetStringPropertySDL3.dll
SDL3.dll/       -1                      0       52        `
��d�QD�� �SDL_GetSurfaceAlphaModSDL3.dllSDL3.dll/       -1                      0       53        `
��d��t��!�SDL_GetSurfaceBlendModeSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��P� �SDL_GetSurfaceClipRectSDL3.dllSDL3.dll/       -1                      0       52        `
��d�j�� �SDL_GetSurfaceColorKeySDL3.dllSDL3.dll/       -1                      0       52        `
��d�V��� �SDL_GetSurfaceColorModSDL3.dllSDL3.dll/       -1                      0       54        `
��d�3��"�SDL_GetSurfaceColorspaceSDL3.dllSDL3.dll/       -1                      0       50        `
��d�����SDL_GetSurfaceImagesSDL3.dllSDL3.dll/       -1                      0       51        `
��d�f���SDL_GetSurfacePaletteSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�W!�"�SDL_GetSurfacePropertiesSDL3.dllSDL3.dll/       -1                      0       46        `
��d�3q���SDL_GetSystemRAMSDL3.dllSDL3.dll/       -1                      0       48        `
��d��K���SDL_GetSystemThemeSDL3.dllSDL3.dll/       -1                      0       40        `
��d������SDL_GetTLSSDL3.dllSDL3.dll/       -1                      0       50        `
��d��X��SDL_GetTextInputAreaSDL3.dllSDL3.dll/       -1                      0       52        `
��d���� �SDL_GetTextureAlphaModSDL3.dllSDL3.dll/       -1                      0       57        `
��d�T�_�%�SDL_GetTextureAlphaModFloatSDL3.dll
SDL3.dll/       -1                      0       53        `
��d��5��!SDL_GetTextureBlendModeSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��I�� SDL_GetTextureColorModSDL3.dllSDL3.dll/       -1                      0       57        `
��d��r��%SDL_GetTextureColorModFloatSDL3.dll
SDL3.dll/       -1                      0       54        `
��d��-��"SDL_GetTexturePropertiesSDL3.dllSDL3.dll/       -1                      0       53        `
��d��G�!SDL_GetTextureScaleModeSDL3.dll
SDL3.dll/       -1                      0       48        `
��d��LC�SDL_GetTextureSizeSDL3.dllSDL3.dll/       -1                      0       45        `
��d��D��SDL_GetThreadIDSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�����SDL_GetThreadNameSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�ϒ��SDL_GetThreadStateSDL3.dllSDL3.dll/       -1                      0       42        `
��d�'��	SDL_GetTicksSDL3.dllSDL3.dll/       -1                      0       44        `
��d��KS�
SDL_GetTicksNSSDL3.dllSDL3.dll/       -1                      0       52        `
��d��|8� SDL_GetTouchDeviceNameSDL3.dllSDL3.dll/       -1                      0       52        `
��d�V��� SDL_GetTouchDeviceTypeSDL3.dllSDL3.dll/       -1                      0       49        `
��d�gs��
SDL_GetTouchDevicesSDL3.dll
SDL3.dll/       -1                      0       49        `
��d����SDL_GetTouchFingersSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�R�!�SDL_GetTrayEntriesSDL3.dllSDL3.dll/       -1                      0       53        `
��d�����!SDL_GetTrayEntryCheckedSDL3.dll
SDL3.dll/       -1                      0       53        `
��d��g0�!SDL_GetTrayEntryEnabledSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�U���SDL_GetTrayEntryLabelSDL3.dll
SDL3.dll/       -1                      0       52        `
��d����� SDL_GetTrayEntryParentSDL3.dllSDL3.dll/       -1                      0       45        `
��d��3��SDL_GetTrayMenuSDL3.dll
SDL3.dll/       -1                      0       56        `
��d����$SDL_GetTrayMenuParentEntrySDL3.dllSDL3.dll/       -1                      0       55        `
��d��e�#SDL_GetTrayMenuParentTraySDL3.dll
SDL3.dll/       -1                      0       48        `
��d��Jd�SDL_GetTraySubmenuSDL3.dllSDL3.dll/       -1                      0       47        `
��d��9.�SDL_GetUserFolderSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�<���SDL_GetVersionSDL3.dllSDL3.dll/       -1                      0       48        `
��d�K���SDL_GetVideoDriverSDL3.dllSDL3.dll/       -1                      0       54        `
��d�����"SDL_GetWindowAspectRatioSDL3.dllSDL3.dll/       -1                      0       54        `
��d���)�"SDL_GetWindowBordersSizeSDL3.dllSDL3.dll/       -1                      0       55        `
��d�����#SDL_GetWindowDisplayScaleSDL3.dll
SDL3.dll/       -1                      0       48        `
��d��[�SDL_GetWindowFlagsSDL3.dllSDL3.dll/       -1                      0       52        `
��d��0W� SDL_GetWindowFromEventSDL3.dllSDL3.dll/       -1                      0       49        `
��d��� SDL_GetWindowFromIDSDL3.dll
SDL3.dll/       -1                      0       57        `
��d���Z�%!SDL_GetWindowFullscreenModeSDL3.dll
SDL3.dll/       -1                      0       53        `
��d�N(��!"SDL_GetWindowICCProfileSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�Wq��#SDL_GetWindowIDSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�6�#$SDL_GetWindowKeyboardGrabSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�F��"%SDL_GetWindowMaximumSizeSDL3.dllSDL3.dll/       -1                      0       54        `
��d��?��"&SDL_GetWindowMinimumSizeSDL3.dllSDL3.dll/       -1                      0       52        `
��d�̻�� 'SDL_GetWindowMouseGrabSDL3.dllSDL3.dll/       -1                      0       52        `
��d����� (SDL_GetWindowMouseRectSDL3.dllSDL3.dll/       -1                      0       50        `
��d�q�Y�)SDL_GetWindowOpacitySDL3.dllSDL3.dll/       -1                      0       49        `
��d��-�*SDL_GetWindowParentSDL3.dll
SDL3.dll/       -1                      0       55        `
��d���L�#+SDL_GetWindowPixelDensitySDL3.dll
SDL3.dll/       -1                      0       54        `
��d�:���",SDL_GetWindowPixelFormatSDL3.dllSDL3.dll/       -1                      0       51        `
��d���\�-SDL_GetWindowPositionSDL3.dll
SDL3.dll/       -1                      0       53        `
��d��fb�!.SDL_GetWindowPropertiesSDL3.dll
SDL3.dll/       -1                      0       60        `
��d��
�(/SDL_GetWindowRelativeMouseModeSDL3.dllSDL3.dll/       -1                      0       51        `
��d�">�0SDL_GetWindowSafeAreaSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�k��1SDL_GetWindowSizeSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�Z=��#2SDL_GetWindowSizeInPixelsSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�����3SDL_GetWindowSurfaceSDL3.dllSDL3.dll/       -1                      0       55        `
��d�S�R�#4SDL_GetWindowSurfaceVSyncSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�����5SDL_GetWindowTitleSDL3.dllSDL3.dll/       -1                      0       44        `
��d�̞�6SDL_GetWindowsSDL3.dllSDL3.dll/       -1                      0       47        `
��d��Q�7SDL_GlobDirectorySDL3.dll
SDL3.dll/       -1                      0       54        `
��d�Ǧ��"8SDL_GlobStorageDirectorySDL3.dllSDL3.dll/       -1                      0       55        `
��d�����#9SDL_HapticEffectSupportedSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�du�#:SDL_HapticRumbleSupportedSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�"���;SDL_HasARMSIMDSDL3.dllSDL3.dll/       -1                      0       40        `
��d�SX��<SDL_HasAVXSDL3.dllSDL3.dll/       -1                      0       41        `
��d��ӌ�=SDL_HasAVX2SDL3.dll
SDL3.dll/       -1                      0       44        `
��d���
�>SDL_HasAVX512FSDL3.dllSDL3.dll/       -1                      0       44        `
��d�Z.D�?SDL_HasAltiVecSDL3.dllSDL3.dll/       -1                      0       50        `
��d�0$��@SDL_HasClipboardDataSDL3.dllSDL3.dll/       -1                      0       50        `
��d���2�ASDL_HasClipboardTextSDL3.dllSDL3.dll/       -1                      0       42        `
��d��95�BSDL_HasEventSDL3.dllSDL3.dll/       -1                      0       43        `
��d����CSDL_HasEventsSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�U�~�DSDL_HasGamepadSDL3.dllSDL3.dll/       -1                      0       45        `
��d�N3�ESDL_HasJoystickSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�wN�FSDL_HasKeyboardSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�D�Q�GSDL_HasLASXSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�Yx��HSDL_HasLSXSDL3.dllSDL3.dll/       -1                      0       40        `
��d�����ISDL_HasMMXSDL3.dllSDL3.dll/       -1                      0       42        `
��d�5/�JSDL_HasMouseSDL3.dllSDL3.dll/       -1                      0       41        `
��d��k#�KSDL_HasNEONSDL3.dll
SDL3.dll/       -1                      0       57        `
��d�Hsm�%LSDL_HasPrimarySelectionTextSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��Y[�MSDL_HasPropertySDL3.dll
SDL3.dll/       -1                      0       53        `
��d��@6�!NSDL_HasRectIntersectionSDL3.dll
SDL3.dll/       -1                      0       58        `
��d��w�&OSDL_HasRectIntersectionFloatSDL3.dllSDL3.dll/       -1                      0       40        `
��d�R�PSDL_HasSSESDL3.dllSDL3.dll/       -1                      0       41        `
��d�RZ��QSDL_HasSSE2SDL3.dll
SDL3.dll/       -1                      0       41        `
��d��(B�RSDL_HasSSE3SDL3.dll
SDL3.dll/       -1                      0       42        `
��d�«?�SSDL_HasSSE41SDL3.dllSDL3.dll/       -1                      0       42        `
��d�j^@�TSDL_HasSSE42SDL3.dllSDL3.dll/       -1                      0       58        `
��d�o8k�&USDL_HasScreenKeyboardSupportSDL3.dllSDL3.dll/       -1                      0       44        `
��d�~y��VSDL_HideCursorSDL3.dllSDL3.dll/       -1                      0       44        `
��d�����WSDL_HideWindowSDL3.dllSDL3.dll/       -1                      0       48        `
��d�s���XSDL_IOFromConstMemSDL3.dllSDL3.dll/       -1                      0       50        `
��d��%��YSDL_IOFromDynamicMemSDL3.dllSDL3.dll/       -1                      0       44        `
��d�7���ZSDL_IOFromFileSDL3.dllSDL3.dll/       -1                      0       43        `
��d��x��[SDL_IOFromMemSDL3.dll
SDL3.dll/       -1                      0       42        `
��d�L�z�\SDL_IOprintfSDL3.dllSDL3.dll/       -1                      0       43        `
��d�T
�]SDL_IOvprintfSDL3.dll
SDL3.dll/       -1                      0       38        `
��d�o��^SDL_InitSDL3.dllSDL3.dll/       -1                      0       50        `
��d���w�_SDL_InitHapticRumbleSDL3.dllSDL3.dll/       -1                      0       47        `
��d�'�`�`SDL_InitSubSystemSDL3.dll
SDL3.dll/       -1                      0       53        `
��d�s��!aSDL_InsertGPUDebugLabelSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�2��bSDL_InsertTrayEntryAtSDL3.dll
SDL3.dll/       -1                      0       55        `
��d��`�#cSDL_IsAudioDevicePhysicalSDL3.dll
SDL3.dll/       -1                      0       55        `
��d���3�#dSDL_IsAudioDevicePlaybackSDL3.dll
SDL3.dll/       -1                      0       43        `
��d�ʬ�eSDL_IsGamepadSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�aCF�fSDL_IsJoystickHapticSDL3.dllSDL3.dll/       -1                      0       51        `
��d�h5��gSDL_IsJoystickVirtualSDL3.dll
SDL3.dll/       -1                      0       46        `
��d���hSDL_IsMainThreadSDL3.dllSDL3.dll/       -1                      0       47        `
��d��Q��iSDL_IsMouseHapticSDL3.dll
SDL3.dll/       -1                      0       38        `
��d�N$��jSDL_IsTVSDL3.dllSDL3.dll/       -1                      0       42        `
��d�Y��kSDL_IsTabletSDL3.dllSDL3.dll/       -1                      0       51        `
��d����lSDL_JoystickConnectedSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�m���#mSDL_JoystickEventsEnabledSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�*���nSDL_KillProcessSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�?��oSDL_LoadBMPSDL3.dll
SDL3.dll/       -1                      0       44        `
��d���pSDL_LoadBMP_IOSDL3.dllSDL3.dll/       -1                      0       42        `
��d��i�qSDL_LoadFileSDL3.dllSDL3.dll/       -1                      0       47        `
��d���g�rSDL_LoadFileAsyncSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�����sSDL_LoadFile_IOSDL3.dll
SDL3.dll/       -1                      0       46        `
��d����tSDL_LoadFunctionSDL3.dllSDL3.dll/       -1                      0       44        `
��d�	�)�uSDL_LoadObjectSDL3.dllSDL3.dll/       -1                      0       41        `
��d�:]��vSDL_LoadWAVSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�����wSDL_LoadWAV_IOSDL3.dllSDL3.dll/       -1                      0       49        `
��d��P9�xSDL_LockAudioStreamSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�T��ySDL_LockJoysticksSDL3.dll
SDL3.dll/       -1                      0       43        `
��d�PZ#�zSDL_LockMutexSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�_���{SDL_LockPropertiesSDL3.dllSDL3.dll/       -1                      0       54        `
��d��a*�"|SDL_LockRWLockForReadingSDL3.dllSDL3.dll/       -1                      0       54        `
��d��J#�"}SDL_LockRWLockForWritingSDL3.dllSDL3.dll/       -1                      0       46        `
��d�]���~SDL_LockSpinlockSDL3.dllSDL3.dll/       -1                      0       45        `
��d�z&��SDL_LockSurfaceSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�[����SDL_LockTextureSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�/�O�"�SDL_LockTextureToSurfaceSDL3.dllSDL3.dll/       -1                      0       37        `
��d��z���SDL_LogSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�?����SDL_LogCriticalSDL3.dll
SDL3.dll/       -1                      0       42        `
��d�aQZ��SDL_LogDebugSDL3.dllSDL3.dll/       -1                      0       42        `
��d�����SDL_LogErrorSDL3.dllSDL3.dll/       -1                      0       41        `
��d�����SDL_LogInfoSDL3.dll
SDL3.dll/       -1                      0       44        `
��d��xT��SDL_LogMessageSDL3.dllSDL3.dll/       -1                      0       45        `
��d��>+��SDL_LogMessageVSDL3.dll
SDL3.dll/       -1                      0       42        `
��d�q2p��SDL_LogTraceSDL3.dllSDL3.dll/       -1                      0       44        `
��d�t��SDL_LogVerboseSDL3.dllSDL3.dll/       -1                      0       41        `
��d���T��SDL_LogWarnSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�'��"�SDL_MapGPUTransferBufferSDL3.dllSDL3.dll/       -1                      0       40        `
��d�����SDL_MapRGBSDL3.dllSDL3.dll/       -1                      0       41        `
��d������SDL_MapRGBASDL3.dll
SDL3.dll/       -1                      0       47        `
��d����SDL_MapSurfaceRGBSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�����SDL_MapSurfaceRGBASDL3.dllSDL3.dll/       -1                      0       48        `
��d����SDL_MaximizeWindowSDL3.dllSDL3.dll/       -1                      0       62        `
��d����*�SDL_MemoryBarrierAcquireFunctionSDL3.dllSDL3.dll/       -1                      0       62        `
��d��x��*�SDL_MemoryBarrierReleaseFunctionSDL3.dllSDL3.dll/       -1                      0       50        `
��d�0)���SDL_Metal_CreateViewSDL3.dllSDL3.dll/       -1                      0       51        `
��d�qS���SDL_Metal_DestroyViewSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�ڽ@��SDL_Metal_GetLayerSDL3.dllSDL3.dll/       -1                      0       48        `
��d�8����SDL_MinimizeWindowSDL3.dllSDL3.dll/       -1                      0       42        `
��d�m����SDL_MixAudioSDL3.dllSDL3.dll/       -1                      0       65        `
��d���-�SDL_OnApplicationDidEnterBackgroundSDL3.dll
SDL3.dll/       -1                      0       65        `
��d�pE��-�SDL_OnApplicationDidEnterForegroundSDL3.dll
SDL3.dll/       -1                      0       70        `
��d�3���2�SDL_OnApplicationDidReceiveMemoryWarningSDL3.dllSDL3.dll/       -1                      0       66        `
��d���.�SDL_OnApplicationWillEnterBackgroundSDL3.dllSDL3.dll/       -1                      0       66        `
��d��?��.�SDL_OnApplicationWillEnterForegroundSDL3.dllSDL3.dll/       -1                      0       60        `
��d��I��(�SDL_OnApplicationWillTerminateSDL3.dllSDL3.dll/       -1                      0       49        `
��d�f�^��SDL_OpenAudioDeviceSDL3.dll
SDL3.dll/       -1                      0       55        `
��d��ƈ�#�SDL_OpenAudioDeviceStreamSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�37&��SDL_OpenCameraSDL3.dllSDL3.dll/       -1                      0       49        `
��d��>��SDL_OpenFileStorageSDL3.dll
SDL3.dll/       -1                      0       45        `
��d������SDL_OpenGamepadSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�V۴��SDL_OpenHapticSDL3.dllSDL3.dll/       -1                      0       56        `
��d��5�$�SDL_OpenHapticFromJoystickSDL3.dllSDL3.dll/       -1                      0       53        `
��d�ۙ{�!�SDL_OpenHapticFromMouseSDL3.dll
SDL3.dll/       -1                      0       40        `
��d���N��SDL_OpenIOSDL3.dllSDL3.dll/       -1                      0       46        `
��d��]���SDL_OpenJoystickSDL3.dllSDL3.dll/       -1                      0       44        `
��d����SDL_OpenSensorSDL3.dllSDL3.dll/       -1                      0       45        `
��d���L��SDL_OpenStorageSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�p����SDL_OpenTitleStorageSDL3.dllSDL3.dll/       -1                      0       41        `
��d�����SDL_OpenURLSDL3.dll
SDL3.dll/       -1                      0       49        `
��d������SDL_OpenUserStorageSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��p���SDL_OutOfMemorySDL3.dll
SDL3.dll/       -1                      0       50        `
��d��;���SDL_PauseAudioDeviceSDL3.dllSDL3.dll/       -1                      0       56        `
��d�V e�$�SDL_PauseAudioStreamDeviceSDL3.dllSDL3.dll/       -1                      0       45        `
��d�'Y���SDL_PauseHapticSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�
:g��SDL_PeepEventsSDL3.dllSDL3.dll/       -1                      0       50        `
��d��2���SDL_PlayHapticRumbleSDL3.dllSDL3.dll/       -1                      0       43        `
��d�6.Z��SDL_PollEventSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�Lj"��SDL_PopGPUDebugGroupSDL3.dllSDL3.dll/       -1                      0       50        `
��d��?��SDL_PremultiplyAlphaSDL3.dllSDL3.dll/       -1                      0       57        `
��d���%�SDL_PremultiplySurfaceAlphaSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�S����SDL_PumpEventsSDL3.dllSDL3.dll/       -1                      0       43        `
��d�~{���SDL_PushEventSDL3.dll
SDL3.dll/       -1                      0       59        `
��d���H�'�SDL_PushGPUComputeUniformDataSDL3.dll
SDL3.dll/       -1                      0       51        `
��d������SDL_PushGPUDebugGroupSDL3.dll
SDL3.dll/       -1                      0       60        `
��d�3;�(�SDL_PushGPUFragmentUniformDataSDL3.dllSDL3.dll/       -1                      0       58        `
��d����&�SDL_PushGPUVertexUniformDataSDL3.dllSDL3.dll/       -1                      0       52        `
��d�Gb�� �SDL_PutAudioStreamDataSDL3.dllSDL3.dll/       -1                      0       47        `
��d��h6��SDL_QueryGPUFenceSDL3.dll
SDL3.dll/       -1                      0       38        `
��d������SDL_QuitSDL3.dllSDL3.dll/       -1                      0       47        `
��d��(���SDL_QuitSubSystemSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��'���SDL_RaiseWindowSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�W0���SDL_ReadAsyncIOSDL3.dll
SDL3.dll/       -1                      0       40        `
��d��_��SDL_ReadIOSDL3.dllSDL3.dll/       -1                      0       45        `
��d�b�X��SDL_ReadProcessSDL3.dll
SDL3.dll/       -1                      0       43        `
��d�����SDL_ReadS16BESDL3.dll
SDL3.dll/       -1                      0       43        `
��d��v��SDL_ReadS16LESDL3.dll
SDL3.dll/       -1                      0       43        `
��d�ɩ���SDL_ReadS32BESDL3.dll
SDL3.dll/       -1                      0       43        `
��d�f�<��SDL_ReadS32LESDL3.dll
SDL3.dll/       -1                      0       43        `
��d����SDL_ReadS64BESDL3.dll
SDL3.dll/       -1                      0       43        `
��d��D��SDL_ReadS64LESDL3.dll
SDL3.dll/       -1                      0       40        `
��d��L���SDL_ReadS8SDL3.dllSDL3.dll/       -1                      0       49        `
��d���g��SDL_ReadStorageFileSDL3.dll
SDL3.dll/       -1                      0       50        `
��d������SDL_ReadSurfacePixelSDL3.dllSDL3.dll/       -1                      0       55        `
��d�1��#�SDL_ReadSurfacePixelFloatSDL3.dll
SDL3.dll/       -1                      0       43        `
��d���,��SDL_ReadU16BESDL3.dll
SDL3.dll/       -1                      0       43        `
��d��v��SDL_ReadU16LESDL3.dll
SDL3.dll/       -1                      0       43        `
��d�x�
��SDL_ReadU32BESDL3.dll
SDL3.dll/       -1                      0       43        `
��d������SDL_ReadU32LESDL3.dll
SDL3.dll/       -1                      0       43        `
��d�5^a��SDL_ReadU64BESDL3.dll
SDL3.dll/       -1                      0       43        `
��d�]܏��SDL_ReadU64LESDL3.dll
SDL3.dll/       -1                      0       40        `
��d������SDL_ReadU8SDL3.dllSDL3.dll/       -1                      0       45        `
��d������SDL_RegisterAppSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�Čc��SDL_RegisterEventsSDL3.dllSDL3.dll/       -1                      0       52        `
��d�i,� �SDL_ReleaseCameraFrameSDL3.dllSDL3.dll/       -1                      0       50        `
��d���	��SDL_ReleaseGPUBufferSDL3.dllSDL3.dll/       -1                      0       59        `
��d�̄��'�SDL_ReleaseGPUComputePipelineSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�i���SDL_ReleaseGPUFenceSDL3.dll
SDL3.dll/       -1                      0       60        `
��d���(�SDL_ReleaseGPUGraphicsPipelineSDL3.dllSDL3.dll/       -1                      0       51        `
��d�2��SDL_ReleaseGPUSamplerSDL3.dll
SDL3.dll/       -1                      0       50        `
��d��4k��SDL_ReleaseGPUShaderSDL3.dllSDL3.dll/       -1                      0       51        `
��d�]a��SDL_ReleaseGPUTextureSDL3.dll
SDL3.dll/       -1                      0       58        `
��d��[��&�SDL_ReleaseGPUTransferBufferSDL3.dllSDL3.dll/       -1                      0       60        `
��d���=�(�SDL_ReleaseWindowFromGPUDeviceSDL3.dllSDL3.dll/       -1                      0       55        `
��d�����#�SDL_ReloadGamepadMappingsSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�.z���SDL_RemoveEventWatchSDL3.dllSDL3.dll/       -1                      0       52        `
��d��[� �SDL_RemoveHintCallbackSDL3.dllSDL3.dll/       -1                      0       44        `
��d��*��SDL_RemovePathSDL3.dllSDL3.dll/       -1                      0       51        `
��d��x��SDL_RemoveStoragePathSDL3.dll
SDL3.dll/       -1                      0       62        `
��d�^���*�SDL_RemoveSurfaceAlternateImagesSDL3.dllSDL3.dll/       -1                      0       45        `
��d����SDL_RemoveTimerSDL3.dll
SDL3.dll/       -1                      0       49        `
��d��m���SDL_RemoveTrayEntrySDL3.dll
SDL3.dll/       -1                      0       44        `
��d�5����SDL_RenamePathSDL3.dllSDL3.dll/       -1                      0       51        `
��d��]a��SDL_RenameStoragePathSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��\���SDL_RenderClearSDL3.dll
SDL3.dll/       -1                      0       51        `
��d������SDL_RenderClipEnabledSDL3.dll
SDL3.dll/       -1                      0       61        `
��d�@�$�)�SDL_RenderCoordinatesFromWindowSDL3.dll
SDL3.dll/       -1                      0       59        `
��d�����'�SDL_RenderCoordinatesToWindowSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�b�V��SDL_RenderDebugTextSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�X��#�SDL_RenderDebugTextFormatSDL3.dll
SDL3.dll/       -1                      0       48        `
��d��r7��SDL_RenderFillRectSDL3.dllSDL3.dll/       -1                      0       49        `
��d�����SDL_RenderFillRectsSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�t8��SDL_RenderGeometrySDL3.dllSDL3.dll/       -1                      0       51        `
��d������SDL_RenderGeometryRawSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�w-���SDL_RenderLineSDL3.dllSDL3.dll/       -1                      0       45        `
��d�͠���SDL_RenderLinesSDL3.dll
SDL3.dll/       -1                      0       45        `
��d���2��SDL_RenderPointSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�n���SDL_RenderPointsSDL3.dllSDL3.dll/       -1                      0       47        `
��d���O��SDL_RenderPresentSDL3.dll
SDL3.dll/       -1                      0       50        `
��d��$��SDL_RenderReadPixelsSDL3.dllSDL3.dll/       -1                      0       44        `
��d�����SDL_RenderRectSDL3.dllSDL3.dll/       -1                      0       45        `
��d�NC+��SDL_RenderRectsSDL3.dll
SDL3.dll/       -1                      0       47        `
��d���v��SDL_RenderTextureSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�'�� SDL_RenderTexture9GridSDL3.dllSDL3.dll/       -1                      0       53        `
��d�2��!SDL_RenderTextureAffineSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�2��"SDL_RenderTextureRotatedSDL3.dllSDL3.dll/       -1                      0       52        `
��d���� SDL_RenderTextureTiledSDL3.dllSDL3.dll/       -1                      0       51        `
��d�����SDL_RenderViewportSetSDL3.dll
SDL3.dll/       -1                      0       49        `
��d��N8�SDL_ReportAssertionSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�~�
�"SDL_ResetAssertionReportSDL3.dllSDL3.dll/       -1                      0       43        `
��d��p��SDL_ResetHintSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�*�]�SDL_ResetHintsSDL3.dllSDL3.dll/       -1                      0       47        `
��d��w�	SDL_ResetKeyboardSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��u9� 
SDL_ResetLogPrioritiesSDL3.dllSDL3.dll/       -1                      0       47        `
��d��a�SDL_RestoreWindowSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�&���SDL_ResumeAudioDeviceSDL3.dll
SDL3.dll/       -1                      0       57        `
��d����%
SDL_ResumeAudioStreamDeviceSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�Ff�SDL_ResumeHapticSDL3.dllSDL3.dll/       -1                      0       47        `
��d�ׅR�SDL_RumbleGamepadSDL3.dll
SDL3.dll/       -1                      0       55        `
��d����#SDL_RumbleGamepadTriggersSDL3.dll
SDL3.dll/       -1                      0       48        `
��d����SDL_RumbleJoystickSDL3.dllSDL3.dll/       -1                      0       56        `
��d����$SDL_RumbleJoystickTriggersSDL3.dllSDL3.dll/       -1                      0       40        `
��d��Y�SDL_RunAppSDL3.dllSDL3.dll/       -1                      0       49        `
��d���X�SDL_RunHapticEffectSDL3.dll
SDL3.dll/       -1                      0       49        `
��d���3�SDL_RunOnMainThreadSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�����SDL_SaveBMPSDL3.dll
SDL3.dll/       -1                      0       44        `
��d���SDL_SaveBMP_IOSDL3.dllSDL3.dll/       -1                      0       42        `
��d�tY�SDL_SaveFileSDL3.dllSDL3.dll/       -1                      0       45        `
��d�s+��SDL_SaveFile_IOSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�%uh�SDL_ScaleSurfaceSDL3.dllSDL3.dll/       -1                      0       53        `
��d����!SDL_ScreenKeyboardShownSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�4�� SDL_ScreenSaverEnabledSDL3.dllSDL3.dll/       -1                      0       40        `
��d�e6+�SDL_SeekIOSDL3.dllSDL3.dll/       -1                      0       51        `
��d��dR�SDL_SendGamepadEffectSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��x� SDL_SendJoystickEffectSDL3.dllSDL3.dll/       -1                      0       63        `
��d��@�+ SDL_SendJoystickVirtualSensorDataSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�l?�!SDL_SetAppMetadataSDL3.dllSDL3.dll/       -1                      0       56        `
��d����$"SDL_SetAppMetadataPropertySDL3.dllSDL3.dll/       -1                      0       53        `
��d��u�!#SDL_SetAssertionHandlerSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�ا��$SDL_SetAtomicIntSDL3.dllSDL3.dll/       -1                      0       50        `
��d��85�%SDL_SetAtomicPointerSDL3.dllSDL3.dll/       -1                      0       46        `
��d�1 K�&SDL_SetAtomicU32SDL3.dllSDL3.dll/       -1                      0       52        `
��d����� 'SDL_SetAudioDeviceGainSDL3.dllSDL3.dll/       -1                      0       57        `
��d���"�%(SDL_SetAudioPostmixCallbackSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�8���")SDL_SetAudioStreamFormatSDL3.dllSDL3.dll/       -1                      0       62        `
��d����**SDL_SetAudioStreamFrequencyRatioSDL3.dllSDL3.dll/       -1                      0       52        `
��d����� +SDL_SetAudioStreamGainSDL3.dllSDL3.dll/       -1                      0       59        `
��d�݃��',SDL_SetAudioStreamGetCallbackSDL3.dll
SDL3.dll/       -1                      0       63        `
��d��a��+-SDL_SetAudioStreamInputChannelMapSDL3.dll
SDL3.dll/       -1                      0       64        `
��d�K^��,.SDL_SetAudioStreamOutputChannelMapSDL3.dllSDL3.dll/       -1                      0       59        `
��d�ب�'/SDL_SetAudioStreamPutCallbackSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��:� 0SDL_SetBooleanPropertySDL3.dllSDL3.dll/       -1                      0       50        `
��d�5��1SDL_SetClipboardDataSDL3.dllSDL3.dll/       -1                      0       50        `
��d�o���2SDL_SetClipboardTextSDL3.dllSDL3.dll/       -1                      0       58        `
��d�����&3SDL_SetCurrentThreadPrioritySDL3.dllSDL3.dll/       -1                      0       43        `
��d�tD{�4SDL_SetCursorSDL3.dll
SDL3.dll/       -1                      0       56        `
��d���H�$5SDL_SetEnvironmentVariableSDL3.dllSDL3.dll/       -1                      0       42        `
��d�4ee�6SDL_SetErrorSDL3.dllSDL3.dll/       -1                      0       43        `
��d�օ?�7SDL_SetErrorVSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�@�_�8SDL_SetEventEnabledSDL3.dll
SDL3.dll/       -1                      0       48        `
��d����9SDL_SetEventFilterSDL3.dllSDL3.dll/       -1                      0       50        `
��d��X�:SDL_SetFloatPropertySDL3.dllSDL3.dll/       -1                      0       61        `
��d�����);SDL_SetGPUAllowedFramesInFlightSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�Ar�"<SDL_SetGPUBlendConstantsSDL3.dllSDL3.dll/       -1                      0       50        `
��d�bb��=SDL_SetGPUBufferNameSDL3.dllSDL3.dll/       -1                      0       47        `
��d�h<��>SDL_SetGPUScissorSDL3.dll
SDL3.dll/       -1                      0       56        `
��d���$?SDL_SetGPUStencilReferenceSDL3.dllSDL3.dll/       -1                      0       59        `
��d�pw�'@SDL_SetGPUSwapchainParametersSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�}J�ASDL_SetGPUTextureNameSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�����BSDL_SetGPUViewportSDL3.dllSDL3.dll/       -1                      0       57        `
��d�o<W�%CSDL_SetGamepadEventsEnabledSDL3.dll
SDL3.dll/       -1                      0       47        `
��d��I��DSDL_SetGamepadLEDSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�Mv��ESDL_SetGamepadMappingSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�� �#FSDL_SetGamepadPlayerIndexSDL3.dll
SDL3.dll/       -1                      0       57        `
��d��8��%GSDL_SetGamepadSensorEnabledSDL3.dll
SDL3.dll/       -1                      0       53        `
��d����!HSDL_SetHapticAutocenterSDL3.dll
SDL3.dll/       -1                      0       47        `
��d����ISDL_SetHapticGainSDL3.dll
SDL3.dll/       -1                      0       41        `
��d���5�JSDL_SetHintSDL3.dll
SDL3.dll/       -1                      0       53        `
��d���L�!KSDL_SetHintWithPrioritySDL3.dll
SDL3.dll/       -1                      0       48        `
��d��J)�LSDL_SetInitializedSDL3.dllSDL3.dll/       -1                      0       58        `
��d��Դ�&MSDL_SetJoystickEventsEnabledSDL3.dllSDL3.dll/       -1                      0       48        `
��d�()��NSDL_SetJoystickLEDSDL3.dllSDL3.dll/       -1                      0       56        `
��d�����$OSDL_SetJoystickPlayerIndexSDL3.dllSDL3.dll/       -1                      0       56        `
��d�:���$PSDL_SetJoystickVirtualAxisSDL3.dllSDL3.dll/       -1                      0       56        `
��d�&��$QSDL_SetJoystickVirtualBallSDL3.dllSDL3.dll/       -1                      0       58        `
��d���m�&RSDL_SetJoystickVirtualButtonSDL3.dllSDL3.dll/       -1                      0       55        `
��d��jV�#SSDL_SetJoystickVirtualHatSDL3.dll
SDL3.dll/       -1                      0       60        `
��d��{��(TSDL_SetJoystickVirtualTouchpadSDL3.dllSDL3.dll/       -1                      0       54        `
��d�����"USDL_SetLogOutputFunctionSDL3.dllSDL3.dll/       -1                      0       50        `
��d����VSDL_SetLogPrioritiesSDL3.dllSDL3.dll/       -1                      0       48        `
��d���WSDL_SetLogPrioritySDL3.dllSDL3.dll/       -1                      0       54        `
��d��
��"XSDL_SetLogPriorityPrefixSDL3.dllSDL3.dll/       -1                      0       46        `
��d� �^�YSDL_SetMainReadySDL3.dllSDL3.dll/       -1                      0       52        `
��d��F�� ZSDL_SetMemoryFunctionsSDL3.dllSDL3.dll/       -1                      0       45        `
��d�)�#�[SDL_SetModStateSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�1���\SDL_SetNumberPropertySDL3.dll
SDL3.dll/       -1                      0       50        `
��d����]SDL_SetPaletteColorsSDL3.dllSDL3.dll/       -1                      0       52        `
��d�{�� ^SDL_SetPointerPropertySDL3.dllSDL3.dll/       -1                      0       63        `
��d��7s�+_SDL_SetPointerPropertyWithCleanupSDL3.dll
SDL3.dll/       -1                      0       57        `
��d����%`SDL_SetPrimarySelectionTextSDL3.dll
SDL3.dll/       -1                      0       51        `
��d��7��aSDL_SetRenderClipRectSDL3.dll
SDL3.dll/       -1                      0       53        `
��d�����!bSDL_SetRenderColorScaleSDL3.dll
SDL3.dll/       -1                      0       56        `
��d���:�$cSDL_SetRenderDrawBlendModeSDL3.dllSDL3.dll/       -1                      0       52        `
��d�cL�� dSDL_SetRenderDrawColorSDL3.dllSDL3.dll/       -1                      0       57        `
��d�I�s�%eSDL_SetRenderDrawColorFloatSDL3.dll
SDL3.dll/       -1                      0       62        `
��d��j�*fSDL_SetRenderLogicalPresentationSDL3.dllSDL3.dll/       -1                      0       48        `
��d�H��gSDL_SetRenderScaleSDL3.dllSDL3.dll/       -1                      0       49        `
��d����hSDL_SetRenderTargetSDL3.dll
SDL3.dll/       -1                      0       48        `
��d���y�iSDL_SetRenderVSyncSDL3.dllSDL3.dll/       -1                      0       51        `
��d��S��jSDL_SetRenderViewportSDL3.dll
SDL3.dll/       -1                      0       49        `
��d��U(�kSDL_SetScancodeNameSDL3.dll
SDL3.dll/       -1                      0       51        `
��d���+�lSDL_SetStringPropertySDL3.dll
SDL3.dll/       -1                      0       52        `
��d�
[�� mSDL_SetSurfaceAlphaModSDL3.dllSDL3.dll/       -1                      0       53        `
��d���^�!nSDL_SetSurfaceBlendModeSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�o�0� oSDL_SetSurfaceClipRectSDL3.dllSDL3.dll/       -1                      0       52        `
��d�R�f� pSDL_SetSurfaceColorKeySDL3.dllSDL3.dll/       -1                      0       52        `
��d��E� qSDL_SetSurfaceColorModSDL3.dllSDL3.dll/       -1                      0       54        `
��d����"rSDL_SetSurfaceColorspaceSDL3.dllSDL3.dll/       -1                      0       51        `
��d�$���sSDL_SetSurfacePaletteSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�y��tSDL_SetSurfaceRLESDL3.dll
SDL3.dll/       -1                      0       40        `
��d�{H\�uSDL_SetTLSSDL3.dllSDL3.dll/       -1                      0       50        `
��d�Xd8�vSDL_SetTextInputAreaSDL3.dllSDL3.dll/       -1                      0       52        `
��d����� wSDL_SetTextureAlphaModSDL3.dllSDL3.dll/       -1                      0       57        `
��d�;�%xSDL_SetTextureAlphaModFloatSDL3.dll
SDL3.dll/       -1                      0       53        `
��d�����!ySDL_SetTextureBlendModeSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��n�� zSDL_SetTextureColorModSDL3.dllSDL3.dll/       -1                      0       57        `
��d�n��%{SDL_SetTextureColorModFloatSDL3.dll
SDL3.dll/       -1                      0       53        `
��d����!|SDL_SetTextureScaleModeSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�ܾu�"}SDL_SetTrayEntryCallbackSDL3.dllSDL3.dll/       -1                      0       53        `
��d�=���!~SDL_SetTrayEntryCheckedSDL3.dll
SDL3.dll/       -1                      0       53        `
��d�6���!SDL_SetTrayEntryEnabledSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�#����SDL_SetTrayEntryLabelSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�� ���SDL_SetTrayIconSDL3.dll
SDL3.dll/       -1                      0       48        `
��d��0��SDL_SetTrayTooltipSDL3.dllSDL3.dll/       -1                      0       54        `
��d��<�"�SDL_SetWindowAlwaysOnTopSDL3.dllSDL3.dll/       -1                      0       54        `
��d���"�SDL_SetWindowAspectRatioSDL3.dllSDL3.dll/       -1                      0       51        `
��d����SDL_SetWindowBorderedSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�M�+� �SDL_SetWindowFocusableSDL3.dllSDL3.dll/       -1                      0       53        `
��d�~�F�!�SDL_SetWindowFullscreenSDL3.dll
SDL3.dll/       -1                      0       57        `
��d�M[�%�SDL_SetWindowFullscreenModeSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�=���SDL_SetWindowHitTestSDL3.dllSDL3.dll/       -1                      0       47        `
��d��~���SDL_SetWindowIconSDL3.dll
SDL3.dll/       -1                      0       55        `
��d�B���#�SDL_SetWindowKeyboardGrabSDL3.dll
SDL3.dll/       -1                      0       54        `
��d��T�"�SDL_SetWindowMaximumSizeSDL3.dllSDL3.dll/       -1                      0       54        `
��d�t��"�SDL_SetWindowMinimumSizeSDL3.dllSDL3.dll/       -1                      0       48        `
��d��J���SDL_SetWindowModalSDL3.dllSDL3.dll/       -1                      0       52        `
��d�2� �SDL_SetWindowMouseGrabSDL3.dllSDL3.dll/       -1                      0       52        `
��d�U��� �SDL_SetWindowMouseRectSDL3.dllSDL3.dll/       -1                      0       50        `
��d�$���SDL_SetWindowOpacitySDL3.dllSDL3.dll/       -1                      0       49        `
��d�����SDL_SetWindowParentSDL3.dll
SDL3.dll/       -1                      0       51        `
��d����SDL_SetWindowPositionSDL3.dll
SDL3.dll/       -1                      0       60        `
��d����(�SDL_SetWindowRelativeMouseModeSDL3.dllSDL3.dll/       -1                      0       52        `
��d��r� �SDL_SetWindowResizableSDL3.dllSDL3.dll/       -1                      0       48        `
��d��`��SDL_SetWindowShapeSDL3.dllSDL3.dll/       -1                      0       47        `
��d�Y"{��SDL_SetWindowSizeSDL3.dll
SDL3.dll/       -1                      0       55        `
��d���#�SDL_SetWindowSurfaceVSyncSDL3.dll
SDL3.dll/       -1                      0       48        `
��d������SDL_SetWindowTitleSDL3.dllSDL3.dll/       -1                      0       55        `
��d��&�#�SDL_SetWindowsMessageHookSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�49x��SDL_SetX11EventHookSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�7�0��SDL_ShouldInitSDL3.dllSDL3.dll/       -1                      0       44        `
��d�����SDL_ShouldQuitSDL3.dllSDL3.dll/       -1                      0       44        `
��d����SDL_ShowCursorSDL3.dllSDL3.dll/       -1                      0       62        `
��d�/���*�SDL_ShowFileDialogWithPropertiesSDL3.dllSDL3.dll/       -1                      0       48        `
��d�ah��SDL_ShowMessageBoxSDL3.dllSDL3.dll/       -1                      0       52        `
��d���� �SDL_ShowOpenFileDialogSDL3.dllSDL3.dll/       -1                      0       54        `
��d���T�"�SDL_ShowOpenFolderDialogSDL3.dllSDL3.dll/       -1                      0       52        `
��d��>� �SDL_ShowSaveFileDialogSDL3.dllSDL3.dll/       -1                      0       54        `
��d�?l��"�SDL_ShowSimpleMessageBoxSDL3.dllSDL3.dll/       -1                      0       44        `
��d�[����SDL_ShowWindowSDL3.dllSDL3.dll/       -1                      0       54        `
��d��%��"�SDL_ShowWindowSystemMenuSDL3.dllSDL3.dll/       -1                      0       52        `
��d�
�� �SDL_SignalAsyncIOQueueSDL3.dllSDL3.dll/       -1                      0       49        `
��d�z���SDL_SignalConditionSDL3.dll
SDL3.dll/       -1                      0       49        `
��d��i���SDL_SignalSemaphoreSDL3.dll
SDL3.dll/       -1                      0       48        `
��d�a����SDL_StartTextInputSDL3.dllSDL3.dll/       -1                      0       62        `
��d�5���*�SDL_StartTextInputWithPropertiesSDL3.dllSDL3.dll/       -1                      0       46        `
��d����SDL_StepBackUTF8SDL3.dllSDL3.dll/       -1                      0       42        `
��d��J���SDL_StepUTF8SDL3.dllSDL3.dll/       -1                      0       50        `
��d������SDL_StopHapticEffectSDL3.dllSDL3.dll/       -1                      0       51        `
��d�[���SDL_StopHapticEffectsSDL3.dll
SDL3.dll/       -1                      0       50        `
��d������SDL_StopHapticRumbleSDL3.dllSDL3.dll/       -1                      0       47        `
��d�
���SDL_StopTextInputSDL3.dll
SDL3.dll/       -1                      0       46        `
��d��L��SDL_StorageReadySDL3.dllSDL3.dll/       -1                      0       46        `
��d�B����SDL_StringToGUIDSDL3.dllSDL3.dll/       -1                      0       56        `
��d��r��$�SDL_SubmitGPUCommandBufferSDL3.dllSDL3.dll/       -1                      0       71        `
��d�1��3�SDL_SubmitGPUCommandBufferAndAcquireFenceSDL3.dll
SDL3.dll/       -1                      0       59        `
��d�&z�'�SDL_SurfaceHasAlternateImagesSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�w��� �SDL_SurfaceHasColorKeySDL3.dllSDL3.dll/       -1                      0       47        `
��d�b>���SDL_SurfaceHasRLESDL3.dll
SDL3.dll/       -1                      0       44        `
��d�9���SDL_SyncWindowSDL3.dllSDL3.dll/       -1                      0       40        `
��d���Q��SDL_TellIOSDL3.dllSDL3.dll/       -1                      0       49        `
��d�����SDL_TextInputActiveSDL3.dll
SDL3.dll/       -1                      0       49        `
��d������SDL_TimeFromWindowsSDL3.dll
SDL3.dll/       -1                      0       48        `
��d������SDL_TimeToDateTimeSDL3.dllSDL3.dll/       -1                      0       47        `
��d���S��SDL_TimeToWindowsSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�	����SDL_TryLockMutexSDL3.dllSDL3.dll/       -1                      0       57        `
��d�n��%�SDL_TryLockRWLockForReadingSDL3.dll
SDL3.dll/       -1                      0       57        `
��d����%�SDL_TryLockRWLockForWritingSDL3.dll
SDL3.dll/       -1                      0       49        `
��d��&��SDL_TryLockSpinlockSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�����SDL_TryWaitSemaphoreSDL3.dllSDL3.dll/       -1                      0       44        `
��d�����SDL_UCS4ToUTF8SDL3.dllSDL3.dll/       -1                      0       51        `
��d��-5��SDL_UnbindAudioStreamSDL3.dll
SDL3.dll/       -1                      0       52        `
��d��J�� �SDL_UnbindAudioStreamsSDL3.dllSDL3.dll/       -1                      0       46        `
��d�X����SDL_UnloadObjectSDL3.dllSDL3.dll/       -1                      0       51        `
��d�2����SDL_UnlockAudioStreamSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�z�9��SDL_UnlockJoysticksSDL3.dll
SDL3.dll/       -1                      0       45        `
��d��2���SDL_UnlockMutexSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�w�S��SDL_UnlockPropertiesSDL3.dllSDL3.dll/       -1                      0       46        `
��d�φ���SDL_UnlockRWLockSDL3.dllSDL3.dll/       -1                      0       48        `
��d�(�F��SDL_UnlockSpinlockSDL3.dllSDL3.dll/       -1                      0       47        `
��d�G����SDL_UnlockSurfaceSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�Om��SDL_UnlockTextureSDL3.dll
SDL3.dll/       -1                      0       56        `
��d�q�$�SDL_UnmapGPUTransferBufferSDL3.dllSDL3.dll/       -1                      0       47        `
��d��
���SDL_UnregisterAppSDL3.dll
SDL3.dll/       -1                      0       58        `
��d���l�&�SDL_UnsetEnvironmentVariableSDL3.dllSDL3.dll/       -1                      0       48        `
��d�Yc@��SDL_UpdateGamepadsSDL3.dllSDL3.dll/       -1                      0       52        `
��d�0�� �SDL_UpdateHapticEffectSDL3.dllSDL3.dll/       -1                      0       49        `
��d�G�Z��SDL_UpdateJoysticksSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�7����SDL_UpdateNVTextureSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�����SDL_UpdateSensorsSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�����SDL_UpdateTextureSDL3.dll
SDL3.dll/       -1                      0       45        `
��d������SDL_UpdateTraysSDL3.dll
SDL3.dll/       -1                      0       53        `
��d��k�!�SDL_UpdateWindowSurfaceSDL3.dll
SDL3.dll/       -1                      0       58        `
��d�7E��&�SDL_UpdateWindowSurfaceRectsSDL3.dllSDL3.dll/       -1                      0       50        `
��d�x���SDL_UpdateYUVTextureSDL3.dllSDL3.dll/       -1                      0       51        `
��d�HJ���SDL_UploadToGPUBufferSDL3.dll
SDL3.dll/       -1                      0       52        `
��d�,9�� �SDL_UploadToGPUTextureSDL3.dllSDL3.dll/       -1                      0       54        `
��d����"�SDL_Vulkan_CreateSurfaceSDL3.dllSDL3.dll/       -1                      0       55        `
��d�B;��#�SDL_Vulkan_DestroySurfaceSDL3.dll
SDL3.dll/       -1                      0       62        `
��d����*�SDL_Vulkan_GetInstanceExtensionsSDL3.dllSDL3.dll/       -1                      0       63        `
��d�˯��+�SDL_Vulkan_GetPresentationSupportSDL3.dll
SDL3.dll/       -1                      0       65        `
��d��.��-�SDL_Vulkan_GetVkGetInstanceProcAddrSDL3.dll
SDL3.dll/       -1                      0       52        `
��d����� �SDL_Vulkan_LoadLibrarySDL3.dllSDL3.dll/       -1                      0       54        `
��d�{��"�SDL_Vulkan_UnloadLibrarySDL3.dllSDL3.dll/       -1                      0       67        `
��d�=�b�/�SDL_WaitAndAcquireGPUSwapchainTextureSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�_�@��SDL_WaitAsyncIOResultSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�6Zv��SDL_WaitConditionSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�o��"�SDL_WaitConditionTimeoutSDL3.dllSDL3.dll/       -1                      0       43        `
��d������SDL_WaitEventSDL3.dll
SDL3.dll/       -1                      0       50        `
��d�qԅ��SDL_WaitEventTimeoutSDL3.dllSDL3.dll/       -1                      0       50        `
��d�.����SDL_WaitForGPUFencesSDL3.dllSDL3.dll/       -1                      0       48        `
��d��3��SDL_WaitForGPUIdleSDL3.dllSDL3.dll/       -1                      0       53        `
��d�=3��!�SDL_WaitForGPUSwapchainSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�Xn���SDL_WaitProcessSDL3.dll
SDL3.dll/       -1                      0       47        `
��d������SDL_WaitSemaphoreSDL3.dll
SDL3.dll/       -1                      0       54        `
��d�M��"�SDL_WaitSemaphoreTimeoutSDL3.dllSDL3.dll/       -1                      0       44        `
��d�6�!��SDL_WaitThreadSDL3.dllSDL3.dll/       -1                      0       49        `
��d��6v��SDL_WarpMouseGlobalSDL3.dll
SDL3.dll/       -1                      0       51        `
��d�N�2��SDL_WarpMouseInWindowSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�!|���SDL_WasInitSDL3.dll
SDL3.dll/       -1                      0       50        `
��d���
��SDL_WindowHasSurfaceSDL3.dllSDL3.dll/       -1                      0       62        `
��d��T��*�SDL_WindowSupportsGPUPresentModeSDL3.dllSDL3.dll/       -1                      0       71        `
��d��f��3�SDL_WindowSupportsGPUSwapchainCompositionSDL3.dll
SDL3.dll/       -1                      0       46        `
��d��`��SDL_WriteAsyncIOSDL3.dllSDL3.dll/       -1                      0       41        `
��d��b��SDL_WriteIOSDL3.dll
SDL3.dll/       -1                      0       44        `
��d��g��SDL_WriteS16BESDL3.dllSDL3.dll/       -1                      0       44        `
��d�wd��SDL_WriteS16LESDL3.dllSDL3.dll/       -1                      0       44        `
��d�����SDL_WriteS32BESDL3.dllSDL3.dll/       -1                      0       44        `
��d������SDL_WriteS32LESDL3.dllSDL3.dll/       -1                      0       44        `
��d�O�o��SDL_WriteS64BESDL3.dllSDL3.dll/       -1                      0       44        `
��d�a3��SDL_WriteS64LESDL3.dllSDL3.dll/       -1                      0       41        `
��d�y=��SDL_WriteS8SDL3.dll
SDL3.dll/       -1                      0       50        `
��d�ڢB�SDL_WriteStorageFileSDL3.dllSDL3.dll/       -1                      0       51        `
��d�wm�SDL_WriteSurfacePixelSDL3.dll
SDL3.dll/       -1                      0       56        `
��d�#�!�$SDL_WriteSurfacePixelFloatSDL3.dllSDL3.dll/       -1                      0       44        `
��d�����SDL_WriteU16BESDL3.dllSDL3.dll/       -1                      0       44        `
��d��)P�SDL_WriteU16LESDL3.dllSDL3.dll/       -1                      0       44        `
��d�he��SDL_WriteU32BESDL3.dllSDL3.dll/       -1                      0       44        `
��d����SDL_WriteU32LESDL3.dllSDL3.dll/       -1                      0       44        `
��d�*���	SDL_WriteU64BESDL3.dllSDL3.dll/       -1                      0       44        `
��d��3��
SDL_WriteU64LESDL3.dllSDL3.dll/       -1                      0       41        `
��d�8at�SDL_WriteU8SDL3.dll
SDL3.dll/       -1                      0       37        `
��d��K�SDL_absSDL3.dll
SDL3.dll/       -1                      0       38        `
��d����
SDL_acosSDL3.dllSDL3.dll/       -1                      0       39        `
��d�Y��SDL_acosfSDL3.dll
SDL3.dll/       -1                      0       47        `
��d��K�SDL_aligned_allocSDL3.dll
SDL3.dll/       -1                      0       46        `
��d��V�SDL_aligned_freeSDL3.dllSDL3.dll/       -1                      0       38        `
��d�h�!�SDL_asinSDL3.dllSDL3.dll/       -1                      0       39        `
��d�¦�SDL_asinfSDL3.dll
SDL3.dll/       -1                      0       42        `
��d�M���SDL_asprintfSDL3.dllSDL3.dll/       -1                      0       38        `
��d��Vi�SDL_atanSDL3.dllSDL3.dll/       -1                      0       39        `
��d�����SDL_atan2SDL3.dll
SDL3.dll/       -1                      0       40        `
��d��ZZ�SDL_atan2fSDL3.dllSDL3.dll/       -1                      0       39        `
��d�Q�>�SDL_atanfSDL3.dll
SDL3.dll/       -1                      0       38        `
��d��R��SDL_atofSDL3.dllSDL3.dll/       -1                      0       38        `
��d�d��SDL_atoiSDL3.dllSDL3.dll/       -1                      0       41        `
��d����SDL_bsearchSDL3.dll
SDL3.dll/       -1                      0       43        `
��d����SDL_bsearch_rSDL3.dll
SDL3.dll/       -1                      0       40        `
��d��;o�SDL_callocSDL3.dllSDL3.dll/       -1                      0       38        `
��d����SDL_ceilSDL3.dllSDL3.dll/       -1                      0       39        `
��d�('[�SDL_ceilfSDL3.dll
SDL3.dll/       -1                      0       42        `
��d�(�
�SDL_copysignSDL3.dllSDL3.dll/       -1                      0       43        `
��d�<4�� SDL_copysignfSDL3.dll
SDL3.dll/       -1                      0       37        `
��d��`A�!SDL_cosSDL3.dll
SDL3.dll/       -1                      0       38        `
��d��;��"SDL_cosfSDL3.dllSDL3.dll/       -1                      0       39        `
��d�����#SDL_crc16SDL3.dll
SDL3.dll/       -1                      0       39        `
��d��q�$SDL_crc32SDL3.dll
SDL3.dll/       -1                      0       37        `
��d�eF�%SDL_expSDL3.dll
SDL3.dll/       -1                      0       38        `
��d�U�
�&SDL_expfSDL3.dllSDL3.dll/       -1                      0       38        `
��d����'SDL_fabsSDL3.dllSDL3.dll/       -1                      0       39        `
��d�����(SDL_fabsfSDL3.dll
SDL3.dll/       -1                      0       39        `
��d��P��)SDL_floorSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�$O��*SDL_floorfSDL3.dllSDL3.dll/       -1                      0       38        `
��d���:�+SDL_fmodSDL3.dllSDL3.dll/       -1                      0       39        `
��d���P�,SDL_fmodfSDL3.dll
SDL3.dll/       -1                      0       38        `
��d�����-SDL_freeSDL3.dllSDL3.dll/       -1                      0       40        `
��d����.SDL_getenvSDL3.dllSDL3.dll/       -1                      0       47        `
��d�<���/SDL_getenv_unsafeSDL3.dll
SDL3.dll/       -1                      0       46        `
��d�jL�0SDL_hid_ble_scanSDL3.dllSDL3.dll/       -1                      0       43        `
��d�U�Y�1SDL_hid_closeSDL3.dll
SDL3.dll/       -1                      0       57        `
��d�����%2SDL_hid_device_change_countSDL3.dll
SDL3.dll/       -1                      0       47        `
��d�����3SDL_hid_enumerateSDL3.dll
SDL3.dll/       -1                      0       42        `
��d���0�4SDL_hid_exitSDL3.dllSDL3.dll/       -1                      0       54        `
��d�͵��"5SDL_hid_free_enumerationSDL3.dllSDL3.dll/       -1                      0       53        `
��d��J+�!6SDL_hid_get_device_infoSDL3.dll
SDL3.dll/       -1                      0       56        `
��d���$7SDL_hid_get_feature_reportSDL3.dllSDL3.dll/       -1                      0       56        `
��d�Y�7�$8SDL_hid_get_indexed_stringSDL3.dllSDL3.dll/       -1                      0       54        `
��d���"9SDL_hid_get_input_reportSDL3.dllSDL3.dll/       -1                      0       61        `
��d����):SDL_hid_get_manufacturer_stringSDL3.dll
SDL3.dll/       -1                      0       56        `
��d�B���$;SDL_hid_get_product_stringSDL3.dllSDL3.dll/       -1                      0       59        `
��d�5���'<SDL_hid_get_report_descriptorSDL3.dll
SDL3.dll/       -1                      0       62        `
��d�H���*=SDL_hid_get_serial_number_stringSDL3.dllSDL3.dll/       -1                      0       42        `
��d�܌��>SDL_hid_initSDL3.dllSDL3.dll/       -1                      0       42        `
��d��1��?SDL_hid_openSDL3.dllSDL3.dll/       -1                      0       47        `
��d�`�q�@SDL_hid_open_pathSDL3.dll
SDL3.dll/       -1                      0       42        `
��d�I��ASDL_hid_readSDL3.dllSDL3.dll/       -1                      0       50        `
��d��xV�BSDL_hid_read_timeoutSDL3.dllSDL3.dll/       -1                      0       57        `
��d�8�U�%CSDL_hid_send_feature_reportSDL3.dll
SDL3.dll/       -1                      0       53        `
��d���=�!DSDL_hid_set_nonblockingSDL3.dll
SDL3.dll/       -1                      0       43        `
��d��g��ESDL_hid_writeSDL3.dll
SDL3.dll/       -1                      0       39        `
��d����FSDL_iconvSDL3.dll
SDL3.dll/       -1                      0       45        `
��d�����GSDL_iconv_closeSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�a;U�HSDL_iconv_openSDL3.dllSDL3.dll/       -1                      0       46        `
��d�`��ISDL_iconv_stringSDL3.dllSDL3.dll/       -1                      0       41        `
��d��-�JSDL_isalnumSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�Nd��KSDL_isalphaSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�ߚK�LSDL_isblankSDL3.dll
SDL3.dll/       -1                      0       41        `
��d����MSDL_iscntrlSDL3.dll
SDL3.dll/       -1                      0       41        `
��d��-�NSDL_isdigitSDL3.dll
SDL3.dll/       -1                      0       41        `
��d��\��OSDL_isgraphSDL3.dll
SDL3.dll/       -1                      0       39        `
��d����PSDL_isinfSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�sis�QSDL_isinffSDL3.dllSDL3.dll/       -1                      0       41        `
��d�"�S�RSDL_islowerSDL3.dll
SDL3.dll/       -1                      0       39        `
��d���p�SSDL_isnanSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�i�u�TSDL_isnanfSDL3.dllSDL3.dll/       -1                      0       41        `
��d�����USDL_isprintSDL3.dll
SDL3.dll/       -1                      0       41        `
��d���q�VSDL_ispunctSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�(�O�WSDL_isspaceSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�M��XSDL_isupperSDL3.dll
SDL3.dll/       -1                      0       42        `
��d���4�YSDL_isxdigitSDL3.dllSDL3.dll/       -1                      0       38        `
��d��er�ZSDL_itoaSDL3.dllSDL3.dll/       -1                      0       39        `
��d�vB�[SDL_lltoaSDL3.dll
SDL3.dll/       -1                      0       37        `
��d�����\SDL_logSDL3.dll
SDL3.dll/       -1                      0       39        `
��d��0�]SDL_log10SDL3.dll
SDL3.dll/       -1                      0       40        `
��d�̊��^SDL_log10fSDL3.dllSDL3.dll/       -1                      0       38        `
��d��I>�_SDL_logfSDL3.dllSDL3.dll/       -1                      0       40        `
��d����`SDL_lroundSDL3.dllSDL3.dll/       -1                      0       41        `
��d���3�aSDL_lroundfSDL3.dll
SDL3.dll/       -1                      0       38        `
��d�q���bSDL_ltoaSDL3.dllSDL3.dll/       -1                      0       40        `
��d��/��cSDL_mallocSDL3.dllSDL3.dll/       -1                      0       40        `
��d��w$�dSDL_memcmpSDL3.dllSDL3.dll/       -1                      0       40        `
��d�

��eSDL_memcpySDL3.dllSDL3.dll/       -1                      0       41        `
��d�22��fSDL_memmoveSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�S�P�gSDL_memsetSDL3.dllSDL3.dll/       -1                      0       41        `
��d�����hSDL_memset4SDL3.dll
SDL3.dll/       -1                      0       38        `
��d�y��iSDL_modfSDL3.dllSDL3.dll/       -1                      0       39        `
��d��0��jSDL_modffSDL3.dll
SDL3.dll/       -1                      0       44        `
��d��c�kSDL_murmur3_32SDL3.dllSDL3.dll/       -1                      0       37        `
��d�o���lSDL_powSDL3.dll
SDL3.dll/       -1                      0       38        `
��d��M��mSDL_powfSDL3.dllSDL3.dll/       -1                      0       39        `
��d�W���nSDL_qsortSDL3.dll
SDL3.dll/       -1                      0       41        `
��d��r�oSDL_qsort_rSDL3.dll
SDL3.dll/       -1                      0       38        `
��d�nb��pSDL_randSDL3.dllSDL3.dll/       -1                      0       43        `
��d���qSDL_rand_bitsSDL3.dll
SDL3.dll/       -1                      0       45        `
��d����rSDL_rand_bits_rSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�����sSDL_rand_rSDL3.dllSDL3.dll/       -1                      0       39        `
��d���<�tSDL_randfSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�l��uSDL_randf_rSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�E�/�vSDL_reallocSDL3.dll
SDL3.dll/       -1                      0       39        `
��d�Yb{�wSDL_roundSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�u֢�xSDL_roundfSDL3.dllSDL3.dll/       -1                      0       40        `
��d��m��ySDL_scalbnSDL3.dllSDL3.dll/       -1                      0       41        `
��d���zSDL_scalbnfSDL3.dll
SDL3.dll/       -1                      0       47        `
��d����{SDL_setenv_unsafeSDL3.dll
SDL3.dll/       -1                      0       37        `
��d��uG�|SDL_sinSDL3.dll
SDL3.dll/       -1                      0       38        `
��d���}SDL_sinfSDL3.dllSDL3.dll/       -1                      0       42        `
��d�.!��~SDL_snprintfSDL3.dllSDL3.dll/       -1                      0       38        `
��d��B�SDL_sqrtSDL3.dllSDL3.dll/       -1                      0       39        `
��d�Y���SDL_sqrtfSDL3.dll
SDL3.dll/       -1                      0       39        `
��d��aN��SDL_srandSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�:�S��SDL_sscanfSDL3.dllSDL3.dll/       -1                      0       44        `
��d���/��SDL_strcasecmpSDL3.dllSDL3.dll/       -1                      0       44        `
��d�����SDL_strcasestrSDL3.dllSDL3.dll/       -1                      0       40        `
��d��F��SDL_strchrSDL3.dllSDL3.dll/       -1                      0       40        `
��d�eZ��SDL_strcmpSDL3.dllSDL3.dll/       -1                      0       40        `
��d�͎Z��SDL_strdupSDL3.dllSDL3.dll/       -1                      0       41        `
��d�yPx��SDL_strlcatSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�?����SDL_strlcpySDL3.dll
SDL3.dll/       -1                      0       40        `
��d������SDL_strlenSDL3.dllSDL3.dll/       -1                      0       40        `
��d�R����SDL_strlwrSDL3.dllSDL3.dll/       -1                      0       45        `
��d�����SDL_strncasecmpSDL3.dll
SDL3.dll/       -1                      0       41        `
��d������SDL_strncmpSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�Q�-��SDL_strndupSDL3.dll
SDL3.dll/       -1                      0       41        `
��d��Y���SDL_strnlenSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�)*���SDL_strnstrSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�~n���SDL_strpbrkSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�z���SDL_strrchrSDL3.dll
SDL3.dll/       -1                      0       40        `
��d���r��SDL_strrevSDL3.dllSDL3.dll/       -1                      0       40        `
��d���V��SDL_strstrSDL3.dllSDL3.dll/       -1                      0       40        `
��d��@���SDL_strtodSDL3.dllSDL3.dll/       -1                      0       42        `
��d�<Z>��SDL_strtok_rSDL3.dllSDL3.dll/       -1                      0       40        `
��d���)��SDL_strtolSDL3.dllSDL3.dll/       -1                      0       41        `
��d�
���SDL_strtollSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�#̝��SDL_strtoulSDL3.dll
SDL3.dll/       -1                      0       42        `
��d��_��SDL_strtoullSDL3.dllSDL3.dll/       -1                      0       40        `
��d�{{t��SDL_struprSDL3.dllSDL3.dll/       -1                      0       42        `
��d�T���SDL_swprintfSDL3.dllSDL3.dll/       -1                      0       37        `
��d�s�i��SDL_tanSDL3.dll
SDL3.dll/       -1                      0       38        `
��d�zK���SDL_tanfSDL3.dllSDL3.dll/       -1                      0       41        `
��d�>����SDL_tolowerSDL3.dll
SDL3.dll/       -1                      0       41        `
��d��4'��SDL_toupperSDL3.dll
SDL3.dll/       -1                      0       39        `
��d�����SDL_truncSDL3.dll
SDL3.dll/       -1                      0       40        `
��d���	��SDL_truncfSDL3.dllSDL3.dll/       -1                      0       39        `
��d�Wv	��SDL_uitoaSDL3.dll
SDL3.dll/       -1                      0       40        `
��d�E����SDL_ulltoaSDL3.dllSDL3.dll/       -1                      0       39        `
��d��%���SDL_ultoaSDL3.dll
SDL3.dll/       -1                      0       49        `
��d�q���SDL_unsetenv_unsafeSDL3.dll
SDL3.dll/       -1                      0       45        `
��d����SDL_utf8strlcpySDL3.dll
SDL3.dll/       -1                      0       44        `
��d�<�W��SDL_utf8strlenSDL3.dllSDL3.dll/       -1                      0       45        `
��d���D��SDL_utf8strnlenSDL3.dll
SDL3.dll/       -1                      0       43        `
��d���SDL_vasprintfSDL3.dll
SDL3.dll/       -1                      0       43        `
��d�c~��SDL_vsnprintfSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�����SDL_vsscanfSDL3.dll
SDL3.dll/       -1                      0       43        `
��d�c+l��SDL_vswprintfSDL3.dll
SDL3.dll/       -1                      0       44        `
��d�`,���SDL_wcscasecmpSDL3.dllSDL3.dll/       -1                      0       40        `
��d��^���SDL_wcscmpSDL3.dllSDL3.dll/       -1                      0       40        `
��d������SDL_wcsdupSDL3.dllSDL3.dll/       -1                      0       41        `
��d�����SDL_wcslcatSDL3.dll
SDL3.dll/       -1                      0       41        `
��d������SDL_wcslcpySDL3.dll
SDL3.dll/       -1                      0       40        `
��d�g%q��SDL_wcslenSDL3.dllSDL3.dll/       -1                      0       45        `
��d��c��SDL_wcsncasecmpSDL3.dll
SDL3.dll/       -1                      0       41        `
��d������SDL_wcsncmpSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�Nje��SDL_wcsnlenSDL3.dll
SDL3.dll/       -1                      0       41        `
��d�8b]��SDL_wcsnstrSDL3.dll
SDL3.dll/       -1                      0       40        `
��d��b:��SDL_wcsstrSDL3.dllSDL3.dll/       -1                      0       40        `
��d�����SDL_wcstolSDL3.dll