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
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
|
// This file is generated. Do not edit!
// see https://github.com/hpvb/dynload-wrapper for details
// generated by /home/hp/Projects/godot/pulse/generate-wrapper.py 0.1 on 2021-02-16 20:26:29
// flags: /home/hp/Projects/godot/pulse/generate-wrapper.py --include /usr/include/alsa/asoundlib.h --sys-include <alsa/asoundlib.h> --soname libasound.so.2 --init-name asound --output-header asound-so_wrap.h --output-implementation asound-so_wrap.c
//
#include <dlfcn.h>
#include <stdio.h>
#define snd_asoundlib_version snd_asoundlib_version_orig
#define snd_dlpath snd_dlpath_orig
#define snd_dlopen snd_dlopen_orig
#define snd_dlsym snd_dlsym_orig
#define snd_dlclose snd_dlclose_orig
#define snd_async_add_handler snd_async_add_handler_orig
#define snd_async_del_handler snd_async_del_handler_orig
#define snd_async_handler_get_fd snd_async_handler_get_fd_orig
#define snd_async_handler_get_signo snd_async_handler_get_signo_orig
#define snd_async_handler_get_callback_private snd_async_handler_get_callback_private_orig
#define snd_shm_area_create snd_shm_area_create_orig
#define snd_shm_area_share snd_shm_area_share_orig
#define snd_shm_area_destroy snd_shm_area_destroy_orig
#define snd_user_file snd_user_file_orig
#define snd_input_stdio_open snd_input_stdio_open_orig
#define snd_input_stdio_attach snd_input_stdio_attach_orig
#define snd_input_buffer_open snd_input_buffer_open_orig
#define snd_input_close snd_input_close_orig
#define snd_input_scanf snd_input_scanf_orig
#define snd_input_gets snd_input_gets_orig
#define snd_input_getc snd_input_getc_orig
#define snd_input_ungetc snd_input_ungetc_orig
#define snd_output_stdio_open snd_output_stdio_open_orig
#define snd_output_stdio_attach snd_output_stdio_attach_orig
#define snd_output_buffer_open snd_output_buffer_open_orig
#define snd_output_buffer_string snd_output_buffer_string_orig
#define snd_output_close snd_output_close_orig
#define snd_output_printf snd_output_printf_orig
#define snd_output_vprintf snd_output_vprintf_orig
#define snd_output_puts snd_output_puts_orig
#define snd_output_putc snd_output_putc_orig
#define snd_output_flush snd_output_flush_orig
#define snd_strerror snd_strerror_orig
#define snd_lib_error_set_handler snd_lib_error_set_handler_orig
#define snd_lib_error_set_local snd_lib_error_set_local_orig
#define snd_config_topdir snd_config_topdir_orig
#define snd_config_top snd_config_top_orig
#define snd_config_load snd_config_load_orig
#define snd_config_load_override snd_config_load_override_orig
#define snd_config_save snd_config_save_orig
#define snd_config_update snd_config_update_orig
#define snd_config_update_r snd_config_update_r_orig
#define snd_config_update_free snd_config_update_free_orig
#define snd_config_update_free_global snd_config_update_free_global_orig
#define snd_config_update_ref snd_config_update_ref_orig
#define snd_config_ref snd_config_ref_orig
#define snd_config_unref snd_config_unref_orig
#define snd_config_search snd_config_search_orig
#define snd_config_searchv snd_config_searchv_orig
#define snd_config_search_definition snd_config_search_definition_orig
#define snd_config_expand snd_config_expand_orig
#define snd_config_evaluate snd_config_evaluate_orig
#define snd_config_add snd_config_add_orig
#define snd_config_add_before snd_config_add_before_orig
#define snd_config_add_after snd_config_add_after_orig
#define snd_config_remove snd_config_remove_orig
#define snd_config_delete snd_config_delete_orig
#define snd_config_delete_compound_members snd_config_delete_compound_members_orig
#define snd_config_copy snd_config_copy_orig
#define snd_config_make snd_config_make_orig
#define snd_config_make_integer snd_config_make_integer_orig
#define snd_config_make_integer64 snd_config_make_integer64_orig
#define snd_config_make_real snd_config_make_real_orig
#define snd_config_make_string snd_config_make_string_orig
#define snd_config_make_pointer snd_config_make_pointer_orig
#define snd_config_make_compound snd_config_make_compound_orig
#define snd_config_imake_integer snd_config_imake_integer_orig
#define snd_config_imake_integer64 snd_config_imake_integer64_orig
#define snd_config_imake_real snd_config_imake_real_orig
#define snd_config_imake_string snd_config_imake_string_orig
#define snd_config_imake_safe_string snd_config_imake_safe_string_orig
#define snd_config_imake_pointer snd_config_imake_pointer_orig
#define snd_config_get_type snd_config_get_type_orig
#define snd_config_is_array snd_config_is_array_orig
#define snd_config_set_id snd_config_set_id_orig
#define snd_config_set_integer snd_config_set_integer_orig
#define snd_config_set_integer64 snd_config_set_integer64_orig
#define snd_config_set_real snd_config_set_real_orig
#define snd_config_set_string snd_config_set_string_orig
#define snd_config_set_ascii snd_config_set_ascii_orig
#define snd_config_set_pointer snd_config_set_pointer_orig
#define snd_config_get_id snd_config_get_id_orig
#define snd_config_get_integer snd_config_get_integer_orig
#define snd_config_get_integer64 snd_config_get_integer64_orig
#define snd_config_get_real snd_config_get_real_orig
#define snd_config_get_ireal snd_config_get_ireal_orig
#define snd_config_get_string snd_config_get_string_orig
#define snd_config_get_ascii snd_config_get_ascii_orig
#define snd_config_get_pointer snd_config_get_pointer_orig
#define snd_config_test_id snd_config_test_id_orig
#define snd_config_iterator_first snd_config_iterator_first_orig
#define snd_config_iterator_next snd_config_iterator_next_orig
#define snd_config_iterator_end snd_config_iterator_end_orig
#define snd_config_iterator_entry snd_config_iterator_entry_orig
#define snd_config_get_bool_ascii snd_config_get_bool_ascii_orig
#define snd_config_get_bool snd_config_get_bool_orig
#define snd_config_get_ctl_iface_ascii snd_config_get_ctl_iface_ascii_orig
#define snd_config_get_ctl_iface snd_config_get_ctl_iface_orig
#define snd_names_list snd_names_list_orig
#define snd_names_list_free snd_names_list_free_orig
#define snd_pcm_open snd_pcm_open_orig
#define snd_pcm_open_lconf snd_pcm_open_lconf_orig
#define snd_pcm_open_fallback snd_pcm_open_fallback_orig
#define snd_pcm_close snd_pcm_close_orig
#define snd_pcm_name snd_pcm_name_orig
#define snd_pcm_type snd_pcm_type_orig
#define snd_pcm_stream snd_pcm_stream_orig
#define snd_pcm_poll_descriptors_count snd_pcm_poll_descriptors_count_orig
#define snd_pcm_poll_descriptors snd_pcm_poll_descriptors_orig
#define snd_pcm_poll_descriptors_revents snd_pcm_poll_descriptors_revents_orig
#define snd_pcm_nonblock snd_pcm_nonblock_orig
#define snd_async_add_pcm_handler snd_async_add_pcm_handler_orig
#define snd_async_handler_get_pcm snd_async_handler_get_pcm_orig
#define snd_pcm_info snd_pcm_info_orig
#define snd_pcm_hw_params_current snd_pcm_hw_params_current_orig
#define snd_pcm_hw_params snd_pcm_hw_params_orig
#define snd_pcm_hw_free snd_pcm_hw_free_orig
#define snd_pcm_sw_params_current snd_pcm_sw_params_current_orig
#define snd_pcm_sw_params snd_pcm_sw_params_orig
#define snd_pcm_prepare snd_pcm_prepare_orig
#define snd_pcm_reset snd_pcm_reset_orig
#define snd_pcm_status snd_pcm_status_orig
#define snd_pcm_start snd_pcm_start_orig
#define snd_pcm_drop snd_pcm_drop_orig
#define snd_pcm_drain snd_pcm_drain_orig
#define snd_pcm_pause snd_pcm_pause_orig
#define snd_pcm_state snd_pcm_state_orig
#define snd_pcm_hwsync snd_pcm_hwsync_orig
#define snd_pcm_delay snd_pcm_delay_orig
#define snd_pcm_resume snd_pcm_resume_orig
#define snd_pcm_htimestamp snd_pcm_htimestamp_orig
#define snd_pcm_avail snd_pcm_avail_orig
#define snd_pcm_avail_update snd_pcm_avail_update_orig
#define snd_pcm_avail_delay snd_pcm_avail_delay_orig
#define snd_pcm_rewindable snd_pcm_rewindable_orig
#define snd_pcm_rewind snd_pcm_rewind_orig
#define snd_pcm_forwardable snd_pcm_forwardable_orig
#define snd_pcm_forward snd_pcm_forward_orig
#define snd_pcm_writei snd_pcm_writei_orig
#define snd_pcm_readi snd_pcm_readi_orig
#define snd_pcm_writen snd_pcm_writen_orig
#define snd_pcm_readn snd_pcm_readn_orig
#define snd_pcm_wait snd_pcm_wait_orig
#define snd_pcm_link snd_pcm_link_orig
#define snd_pcm_unlink snd_pcm_unlink_orig
#define snd_pcm_query_chmaps snd_pcm_query_chmaps_orig
#define snd_pcm_query_chmaps_from_hw snd_pcm_query_chmaps_from_hw_orig
#define snd_pcm_free_chmaps snd_pcm_free_chmaps_orig
#define snd_pcm_get_chmap snd_pcm_get_chmap_orig
#define snd_pcm_set_chmap snd_pcm_set_chmap_orig
#define snd_pcm_chmap_type_name snd_pcm_chmap_type_name_orig
#define snd_pcm_chmap_name snd_pcm_chmap_name_orig
#define snd_pcm_chmap_long_name snd_pcm_chmap_long_name_orig
#define snd_pcm_chmap_print snd_pcm_chmap_print_orig
#define snd_pcm_chmap_from_string snd_pcm_chmap_from_string_orig
#define snd_pcm_chmap_parse_string snd_pcm_chmap_parse_string_orig
#define snd_pcm_recover snd_pcm_recover_orig
#define snd_pcm_set_params snd_pcm_set_params_orig
#define snd_pcm_get_params snd_pcm_get_params_orig
#define snd_pcm_info_sizeof snd_pcm_info_sizeof_orig
#define snd_pcm_info_malloc snd_pcm_info_malloc_orig
#define snd_pcm_info_free snd_pcm_info_free_orig
#define snd_pcm_info_copy snd_pcm_info_copy_orig
#define snd_pcm_info_get_device snd_pcm_info_get_device_orig
#define snd_pcm_info_get_subdevice snd_pcm_info_get_subdevice_orig
#define snd_pcm_info_get_stream snd_pcm_info_get_stream_orig
#define snd_pcm_info_get_card snd_pcm_info_get_card_orig
#define snd_pcm_info_get_id snd_pcm_info_get_id_orig
#define snd_pcm_info_get_name snd_pcm_info_get_name_orig
#define snd_pcm_info_get_subdevice_name snd_pcm_info_get_subdevice_name_orig
#define snd_pcm_info_get_class snd_pcm_info_get_class_orig
#define snd_pcm_info_get_subclass snd_pcm_info_get_subclass_orig
#define snd_pcm_info_get_subdevices_count snd_pcm_info_get_subdevices_count_orig
#define snd_pcm_info_get_subdevices_avail snd_pcm_info_get_subdevices_avail_orig
#define snd_pcm_info_get_sync snd_pcm_info_get_sync_orig
#define snd_pcm_info_set_device snd_pcm_info_set_device_orig
#define snd_pcm_info_set_subdevice snd_pcm_info_set_subdevice_orig
#define snd_pcm_info_set_stream snd_pcm_info_set_stream_orig
#define snd_pcm_hw_params_any snd_pcm_hw_params_any_orig
#define snd_pcm_hw_params_can_mmap_sample_resolution snd_pcm_hw_params_can_mmap_sample_resolution_orig
#define snd_pcm_hw_params_is_double snd_pcm_hw_params_is_double_orig
#define snd_pcm_hw_params_is_batch snd_pcm_hw_params_is_batch_orig
#define snd_pcm_hw_params_is_block_transfer snd_pcm_hw_params_is_block_transfer_orig
#define snd_pcm_hw_params_is_monotonic snd_pcm_hw_params_is_monotonic_orig
#define snd_pcm_hw_params_can_overrange snd_pcm_hw_params_can_overrange_orig
#define snd_pcm_hw_params_can_pause snd_pcm_hw_params_can_pause_orig
#define snd_pcm_hw_params_can_resume snd_pcm_hw_params_can_resume_orig
#define snd_pcm_hw_params_is_half_duplex snd_pcm_hw_params_is_half_duplex_orig
#define snd_pcm_hw_params_is_joint_duplex snd_pcm_hw_params_is_joint_duplex_orig
#define snd_pcm_hw_params_can_sync_start snd_pcm_hw_params_can_sync_start_orig
#define snd_pcm_hw_params_can_disable_period_wakeup snd_pcm_hw_params_can_disable_period_wakeup_orig
#define snd_pcm_hw_params_supports_audio_wallclock_ts snd_pcm_hw_params_supports_audio_wallclock_ts_orig
#define snd_pcm_hw_params_supports_audio_ts_type snd_pcm_hw_params_supports_audio_ts_type_orig
#define snd_pcm_hw_params_get_rate_numden snd_pcm_hw_params_get_rate_numden_orig
#define snd_pcm_hw_params_get_sbits snd_pcm_hw_params_get_sbits_orig
#define snd_pcm_hw_params_get_fifo_size snd_pcm_hw_params_get_fifo_size_orig
#define snd_pcm_hw_params_sizeof snd_pcm_hw_params_sizeof_orig
#define snd_pcm_hw_params_malloc snd_pcm_hw_params_malloc_orig
#define snd_pcm_hw_params_free snd_pcm_hw_params_free_orig
#define snd_pcm_hw_params_copy snd_pcm_hw_params_copy_orig
#define snd_pcm_hw_params_get_access snd_pcm_hw_params_get_access_orig
#define snd_pcm_hw_params_test_access snd_pcm_hw_params_test_access_orig
#define snd_pcm_hw_params_set_access snd_pcm_hw_params_set_access_orig
#define snd_pcm_hw_params_set_access_first snd_pcm_hw_params_set_access_first_orig
#define snd_pcm_hw_params_set_access_last snd_pcm_hw_params_set_access_last_orig
#define snd_pcm_hw_params_set_access_mask snd_pcm_hw_params_set_access_mask_orig
#define snd_pcm_hw_params_get_access_mask snd_pcm_hw_params_get_access_mask_orig
#define snd_pcm_hw_params_get_format snd_pcm_hw_params_get_format_orig
#define snd_pcm_hw_params_test_format snd_pcm_hw_params_test_format_orig
#define snd_pcm_hw_params_set_format snd_pcm_hw_params_set_format_orig
#define snd_pcm_hw_params_set_format_first snd_pcm_hw_params_set_format_first_orig
#define snd_pcm_hw_params_set_format_last snd_pcm_hw_params_set_format_last_orig
#define snd_pcm_hw_params_set_format_mask snd_pcm_hw_params_set_format_mask_orig
#define snd_pcm_hw_params_get_format_mask snd_pcm_hw_params_get_format_mask_orig
#define snd_pcm_hw_params_get_subformat snd_pcm_hw_params_get_subformat_orig
#define snd_pcm_hw_params_test_subformat snd_pcm_hw_params_test_subformat_orig
#define snd_pcm_hw_params_set_subformat snd_pcm_hw_params_set_subformat_orig
#define snd_pcm_hw_params_set_subformat_first snd_pcm_hw_params_set_subformat_first_orig
#define snd_pcm_hw_params_set_subformat_last snd_pcm_hw_params_set_subformat_last_orig
#define snd_pcm_hw_params_set_subformat_mask snd_pcm_hw_params_set_subformat_mask_orig
#define snd_pcm_hw_params_get_subformat_mask snd_pcm_hw_params_get_subformat_mask_orig
#define snd_pcm_hw_params_get_channels snd_pcm_hw_params_get_channels_orig
#define snd_pcm_hw_params_get_channels_min snd_pcm_hw_params_get_channels_min_orig
#define snd_pcm_hw_params_get_channels_max snd_pcm_hw_params_get_channels_max_orig
#define snd_pcm_hw_params_test_channels snd_pcm_hw_params_test_channels_orig
#define snd_pcm_hw_params_set_channels snd_pcm_hw_params_set_channels_orig
#define snd_pcm_hw_params_set_channels_min snd_pcm_hw_params_set_channels_min_orig
#define snd_pcm_hw_params_set_channels_max snd_pcm_hw_params_set_channels_max_orig
#define snd_pcm_hw_params_set_channels_minmax snd_pcm_hw_params_set_channels_minmax_orig
#define snd_pcm_hw_params_set_channels_near snd_pcm_hw_params_set_channels_near_orig
#define snd_pcm_hw_params_set_channels_first snd_pcm_hw_params_set_channels_first_orig
#define snd_pcm_hw_params_set_channels_last snd_pcm_hw_params_set_channels_last_orig
#define snd_pcm_hw_params_get_rate snd_pcm_hw_params_get_rate_orig
#define snd_pcm_hw_params_get_rate_min snd_pcm_hw_params_get_rate_min_orig
#define snd_pcm_hw_params_get_rate_max snd_pcm_hw_params_get_rate_max_orig
#define snd_pcm_hw_params_test_rate snd_pcm_hw_params_test_rate_orig
#define snd_pcm_hw_params_set_rate snd_pcm_hw_params_set_rate_orig
#define snd_pcm_hw_params_set_rate_min snd_pcm_hw_params_set_rate_min_orig
#define snd_pcm_hw_params_set_rate_max snd_pcm_hw_params_set_rate_max_orig
#define snd_pcm_hw_params_set_rate_minmax snd_pcm_hw_params_set_rate_minmax_orig
#define snd_pcm_hw_params_set_rate_near snd_pcm_hw_params_set_rate_near_orig
#define snd_pcm_hw_params_set_rate_first snd_pcm_hw_params_set_rate_first_orig
#define snd_pcm_hw_params_set_rate_last snd_pcm_hw_params_set_rate_last_orig
#define snd_pcm_hw_params_set_rate_resample snd_pcm_hw_params_set_rate_resample_orig
#define snd_pcm_hw_params_get_rate_resample snd_pcm_hw_params_get_rate_resample_orig
#define snd_pcm_hw_params_set_export_buffer snd_pcm_hw_params_set_export_buffer_orig
#define snd_pcm_hw_params_get_export_buffer snd_pcm_hw_params_get_export_buffer_orig
#define snd_pcm_hw_params_set_period_wakeup snd_pcm_hw_params_set_period_wakeup_orig
#define snd_pcm_hw_params_get_period_wakeup snd_pcm_hw_params_get_period_wakeup_orig
#define snd_pcm_hw_params_get_period_time snd_pcm_hw_params_get_period_time_orig
#define snd_pcm_hw_params_get_period_time_min snd_pcm_hw_params_get_period_time_min_orig
#define snd_pcm_hw_params_get_period_time_max snd_pcm_hw_params_get_period_time_max_orig
#define snd_pcm_hw_params_test_period_time snd_pcm_hw_params_test_period_time_orig
#define snd_pcm_hw_params_set_period_time snd_pcm_hw_params_set_period_time_orig
#define snd_pcm_hw_params_set_period_time_min snd_pcm_hw_params_set_period_time_min_orig
#define snd_pcm_hw_params_set_period_time_max snd_pcm_hw_params_set_period_time_max_orig
#define snd_pcm_hw_params_set_period_time_minmax snd_pcm_hw_params_set_period_time_minmax_orig
#define snd_pcm_hw_params_set_period_time_near snd_pcm_hw_params_set_period_time_near_orig
#define snd_pcm_hw_params_set_period_time_first snd_pcm_hw_params_set_period_time_first_orig
#define snd_pcm_hw_params_set_period_time_last snd_pcm_hw_params_set_period_time_last_orig
#define snd_pcm_hw_params_get_period_size snd_pcm_hw_params_get_period_size_orig
#define snd_pcm_hw_params_get_period_size_min snd_pcm_hw_params_get_period_size_min_orig
#define snd_pcm_hw_params_get_period_size_max snd_pcm_hw_params_get_period_size_max_orig
#define snd_pcm_hw_params_test_period_size snd_pcm_hw_params_test_period_size_orig
#define snd_pcm_hw_params_set_period_size snd_pcm_hw_params_set_period_size_orig
#define snd_pcm_hw_params_set_period_size_min snd_pcm_hw_params_set_period_size_min_orig
#define snd_pcm_hw_params_set_period_size_max snd_pcm_hw_params_set_period_size_max_orig
#define snd_pcm_hw_params_set_period_size_minmax snd_pcm_hw_params_set_period_size_minmax_orig
#define snd_pcm_hw_params_set_period_size_near snd_pcm_hw_params_set_period_size_near_orig
#define snd_pcm_hw_params_set_period_size_first snd_pcm_hw_params_set_period_size_first_orig
#define snd_pcm_hw_params_set_period_size_last snd_pcm_hw_params_set_period_size_last_orig
#define snd_pcm_hw_params_set_period_size_integer snd_pcm_hw_params_set_period_size_integer_orig
#define snd_pcm_hw_params_get_periods snd_pcm_hw_params_get_periods_orig
#define snd_pcm_hw_params_get_periods_min snd_pcm_hw_params_get_periods_min_orig
#define snd_pcm_hw_params_get_periods_max snd_pcm_hw_params_get_periods_max_orig
#define snd_pcm_hw_params_test_periods snd_pcm_hw_params_test_periods_orig
#define snd_pcm_hw_params_set_periods snd_pcm_hw_params_set_periods_orig
#define snd_pcm_hw_params_set_periods_min snd_pcm_hw_params_set_periods_min_orig
#define snd_pcm_hw_params_set_periods_max snd_pcm_hw_params_set_periods_max_orig
#define snd_pcm_hw_params_set_periods_minmax snd_pcm_hw_params_set_periods_minmax_orig
#define snd_pcm_hw_params_set_periods_near snd_pcm_hw_params_set_periods_near_orig
#define snd_pcm_hw_params_set_periods_first snd_pcm_hw_params_set_periods_first_orig
#define snd_pcm_hw_params_set_periods_last snd_pcm_hw_params_set_periods_last_orig
#define snd_pcm_hw_params_set_periods_integer snd_pcm_hw_params_set_periods_integer_orig
#define snd_pcm_hw_params_get_buffer_time snd_pcm_hw_params_get_buffer_time_orig
#define snd_pcm_hw_params_get_buffer_time_min snd_pcm_hw_params_get_buffer_time_min_orig
#define snd_pcm_hw_params_get_buffer_time_max snd_pcm_hw_params_get_buffer_time_max_orig
#define snd_pcm_hw_params_test_buffer_time snd_pcm_hw_params_test_buffer_time_orig
#define snd_pcm_hw_params_set_buffer_time snd_pcm_hw_params_set_buffer_time_orig
#define snd_pcm_hw_params_set_buffer_time_min snd_pcm_hw_params_set_buffer_time_min_orig
#define snd_pcm_hw_params_set_buffer_time_max snd_pcm_hw_params_set_buffer_time_max_orig
#define snd_pcm_hw_params_set_buffer_time_minmax snd_pcm_hw_params_set_buffer_time_minmax_orig
#define snd_pcm_hw_params_set_buffer_time_near snd_pcm_hw_params_set_buffer_time_near_orig
#define snd_pcm_hw_params_set_buffer_time_first snd_pcm_hw_params_set_buffer_time_first_orig
#define snd_pcm_hw_params_set_buffer_time_last snd_pcm_hw_params_set_buffer_time_last_orig
#define snd_pcm_hw_params_get_buffer_size snd_pcm_hw_params_get_buffer_size_orig
#define snd_pcm_hw_params_get_buffer_size_min snd_pcm_hw_params_get_buffer_size_min_orig
#define snd_pcm_hw_params_get_buffer_size_max snd_pcm_hw_params_get_buffer_size_max_orig
#define snd_pcm_hw_params_test_buffer_size snd_pcm_hw_params_test_buffer_size_orig
#define snd_pcm_hw_params_set_buffer_size snd_pcm_hw_params_set_buffer_size_orig
#define snd_pcm_hw_params_set_buffer_size_min snd_pcm_hw_params_set_buffer_size_min_orig
#define snd_pcm_hw_params_set_buffer_size_max snd_pcm_hw_params_set_buffer_size_max_orig
#define snd_pcm_hw_params_set_buffer_size_minmax snd_pcm_hw_params_set_buffer_size_minmax_orig
#define snd_pcm_hw_params_set_buffer_size_near snd_pcm_hw_params_set_buffer_size_near_orig
#define snd_pcm_hw_params_set_buffer_size_first snd_pcm_hw_params_set_buffer_size_first_orig
#define snd_pcm_hw_params_set_buffer_size_last snd_pcm_hw_params_set_buffer_size_last_orig
#define snd_pcm_hw_params_get_min_align snd_pcm_hw_params_get_min_align_orig
#define snd_pcm_sw_params_sizeof snd_pcm_sw_params_sizeof_orig
#define snd_pcm_sw_params_malloc snd_pcm_sw_params_malloc_orig
#define snd_pcm_sw_params_free snd_pcm_sw_params_free_orig
#define snd_pcm_sw_params_copy snd_pcm_sw_params_copy_orig
#define snd_pcm_sw_params_get_boundary snd_pcm_sw_params_get_boundary_orig
#define snd_pcm_sw_params_set_tstamp_mode snd_pcm_sw_params_set_tstamp_mode_orig
#define snd_pcm_sw_params_get_tstamp_mode snd_pcm_sw_params_get_tstamp_mode_orig
#define snd_pcm_sw_params_set_tstamp_type snd_pcm_sw_params_set_tstamp_type_orig
#define snd_pcm_sw_params_get_tstamp_type snd_pcm_sw_params_get_tstamp_type_orig
#define snd_pcm_sw_params_set_avail_min snd_pcm_sw_params_set_avail_min_orig
#define snd_pcm_sw_params_get_avail_min snd_pcm_sw_params_get_avail_min_orig
#define snd_pcm_sw_params_set_period_event snd_pcm_sw_params_set_period_event_orig
#define snd_pcm_sw_params_get_period_event snd_pcm_sw_params_get_period_event_orig
#define snd_pcm_sw_params_set_start_threshold snd_pcm_sw_params_set_start_threshold_orig
#define snd_pcm_sw_params_get_start_threshold snd_pcm_sw_params_get_start_threshold_orig
#define snd_pcm_sw_params_set_stop_threshold snd_pcm_sw_params_set_stop_threshold_orig
#define snd_pcm_sw_params_get_stop_threshold snd_pcm_sw_params_get_stop_threshold_orig
#define snd_pcm_sw_params_set_silence_threshold snd_pcm_sw_params_set_silence_threshold_orig
#define snd_pcm_sw_params_get_silence_threshold snd_pcm_sw_params_get_silence_threshold_orig
#define snd_pcm_sw_params_set_silence_size snd_pcm_sw_params_set_silence_size_orig
#define snd_pcm_sw_params_get_silence_size snd_pcm_sw_params_get_silence_size_orig
#define snd_pcm_access_mask_sizeof snd_pcm_access_mask_sizeof_orig
#define snd_pcm_access_mask_malloc snd_pcm_access_mask_malloc_orig
#define snd_pcm_access_mask_free snd_pcm_access_mask_free_orig
#define snd_pcm_access_mask_copy snd_pcm_access_mask_copy_orig
#define snd_pcm_access_mask_none snd_pcm_access_mask_none_orig
#define snd_pcm_access_mask_any snd_pcm_access_mask_any_orig
#define snd_pcm_access_mask_test snd_pcm_access_mask_test_orig
#define snd_pcm_access_mask_empty snd_pcm_access_mask_empty_orig
#define snd_pcm_access_mask_set snd_pcm_access_mask_set_orig
#define snd_pcm_access_mask_reset snd_pcm_access_mask_reset_orig
#define snd_pcm_format_mask_sizeof snd_pcm_format_mask_sizeof_orig
#define snd_pcm_format_mask_malloc snd_pcm_format_mask_malloc_orig
#define snd_pcm_format_mask_free snd_pcm_format_mask_free_orig
#define snd_pcm_format_mask_copy snd_pcm_format_mask_copy_orig
#define snd_pcm_format_mask_none snd_pcm_format_mask_none_orig
#define snd_pcm_format_mask_any snd_pcm_format_mask_any_orig
#define snd_pcm_format_mask_test snd_pcm_format_mask_test_orig
#define snd_pcm_format_mask_empty snd_pcm_format_mask_empty_orig
#define snd_pcm_format_mask_set snd_pcm_format_mask_set_orig
#define snd_pcm_format_mask_reset snd_pcm_format_mask_reset_orig
#define snd_pcm_subformat_mask_sizeof snd_pcm_subformat_mask_sizeof_orig
#define snd_pcm_subformat_mask_malloc snd_pcm_subformat_mask_malloc_orig
#define snd_pcm_subformat_mask_free snd_pcm_subformat_mask_free_orig
#define snd_pcm_subformat_mask_copy snd_pcm_subformat_mask_copy_orig
#define snd_pcm_subformat_mask_none snd_pcm_subformat_mask_none_orig
#define snd_pcm_subformat_mask_any snd_pcm_subformat_mask_any_orig
#define snd_pcm_subformat_mask_test snd_pcm_subformat_mask_test_orig
#define snd_pcm_subformat_mask_empty snd_pcm_subformat_mask_empty_orig
#define snd_pcm_subformat_mask_set snd_pcm_subformat_mask_set_orig
#define snd_pcm_subformat_mask_reset snd_pcm_subformat_mask_reset_orig
#define snd_pcm_status_sizeof snd_pcm_status_sizeof_orig
#define snd_pcm_status_malloc snd_pcm_status_malloc_orig
#define snd_pcm_status_free snd_pcm_status_free_orig
#define snd_pcm_status_copy snd_pcm_status_copy_orig
#define snd_pcm_status_get_state snd_pcm_status_get_state_orig
#define snd_pcm_status_get_trigger_tstamp snd_pcm_status_get_trigger_tstamp_orig
#define snd_pcm_status_get_trigger_htstamp snd_pcm_status_get_trigger_htstamp_orig
#define snd_pcm_status_get_tstamp snd_pcm_status_get_tstamp_orig
#define snd_pcm_status_get_htstamp snd_pcm_status_get_htstamp_orig
#define snd_pcm_status_get_audio_htstamp snd_pcm_status_get_audio_htstamp_orig
#define snd_pcm_status_get_driver_htstamp snd_pcm_status_get_driver_htstamp_orig
#define snd_pcm_status_get_audio_htstamp_report snd_pcm_status_get_audio_htstamp_report_orig
#define snd_pcm_status_set_audio_htstamp_config snd_pcm_status_set_audio_htstamp_config_orig
#define snd_pcm_status_get_delay snd_pcm_status_get_delay_orig
#define snd_pcm_status_get_avail snd_pcm_status_get_avail_orig
#define snd_pcm_status_get_avail_max snd_pcm_status_get_avail_max_orig
#define snd_pcm_status_get_overrange snd_pcm_status_get_overrange_orig
#define snd_pcm_type_name snd_pcm_type_name_orig
#define snd_pcm_stream_name snd_pcm_stream_name_orig
#define snd_pcm_access_name snd_pcm_access_name_orig
#define snd_pcm_format_name snd_pcm_format_name_orig
#define snd_pcm_format_description snd_pcm_format_description_orig
#define snd_pcm_subformat_name snd_pcm_subformat_name_orig
#define snd_pcm_subformat_description snd_pcm_subformat_description_orig
#define snd_pcm_format_value snd_pcm_format_value_orig
#define snd_pcm_tstamp_mode_name snd_pcm_tstamp_mode_name_orig
#define snd_pcm_state_name snd_pcm_state_name_orig
#define snd_pcm_dump snd_pcm_dump_orig
#define snd_pcm_dump_hw_setup snd_pcm_dump_hw_setup_orig
#define snd_pcm_dump_sw_setup snd_pcm_dump_sw_setup_orig
#define snd_pcm_dump_setup snd_pcm_dump_setup_orig
#define snd_pcm_hw_params_dump snd_pcm_hw_params_dump_orig
#define snd_pcm_sw_params_dump snd_pcm_sw_params_dump_orig
#define snd_pcm_status_dump snd_pcm_status_dump_orig
#define snd_pcm_mmap_begin snd_pcm_mmap_begin_orig
#define snd_pcm_mmap_commit snd_pcm_mmap_commit_orig
#define snd_pcm_mmap_writei snd_pcm_mmap_writei_orig
#define snd_pcm_mmap_readi snd_pcm_mmap_readi_orig
#define snd_pcm_mmap_writen snd_pcm_mmap_writen_orig
#define snd_pcm_mmap_readn snd_pcm_mmap_readn_orig
#define snd_pcm_format_signed snd_pcm_format_signed_orig
#define snd_pcm_format_unsigned snd_pcm_format_unsigned_orig
#define snd_pcm_format_linear snd_pcm_format_linear_orig
#define snd_pcm_format_float snd_pcm_format_float_orig
#define snd_pcm_format_little_endian snd_pcm_format_little_endian_orig
#define snd_pcm_format_big_endian snd_pcm_format_big_endian_orig
#define snd_pcm_format_cpu_endian snd_pcm_format_cpu_endian_orig
#define snd_pcm_format_width snd_pcm_format_width_orig
#define snd_pcm_format_physical_width snd_pcm_format_physical_width_orig
#define snd_pcm_build_linear_format snd_pcm_build_linear_format_orig
#define snd_pcm_format_size snd_pcm_format_size_orig
#define snd_pcm_format_silence snd_pcm_format_silence_orig
#define snd_pcm_format_silence_16 snd_pcm_format_silence_16_orig
#define snd_pcm_format_silence_32 snd_pcm_format_silence_32_orig
#define snd_pcm_format_silence_64 snd_pcm_format_silence_64_orig
#define snd_pcm_format_set_silence snd_pcm_format_set_silence_orig
#define snd_pcm_bytes_to_frames snd_pcm_bytes_to_frames_orig
#define snd_pcm_frames_to_bytes snd_pcm_frames_to_bytes_orig
#define snd_pcm_bytes_to_samples snd_pcm_bytes_to_samples_orig
#define snd_pcm_samples_to_bytes snd_pcm_samples_to_bytes_orig
#define snd_pcm_area_silence snd_pcm_area_silence_orig
#define snd_pcm_areas_silence snd_pcm_areas_silence_orig
#define snd_pcm_area_copy snd_pcm_area_copy_orig
#define snd_pcm_areas_copy snd_pcm_areas_copy_orig
#define snd_pcm_areas_copy_wrap snd_pcm_areas_copy_wrap_orig
#define snd_pcm_hook_get_pcm snd_pcm_hook_get_pcm_orig
#define snd_pcm_hook_get_private snd_pcm_hook_get_private_orig
#define snd_pcm_hook_set_private snd_pcm_hook_set_private_orig
#define snd_pcm_hook_add snd_pcm_hook_add_orig
#define snd_pcm_hook_remove snd_pcm_hook_remove_orig
#define snd_pcm_meter_get_bufsize snd_pcm_meter_get_bufsize_orig
#define snd_pcm_meter_get_channels snd_pcm_meter_get_channels_orig
#define snd_pcm_meter_get_rate snd_pcm_meter_get_rate_orig
#define snd_pcm_meter_get_now snd_pcm_meter_get_now_orig
#define snd_pcm_meter_get_boundary snd_pcm_meter_get_boundary_orig
#define snd_pcm_meter_add_scope snd_pcm_meter_add_scope_orig
#define snd_pcm_meter_search_scope snd_pcm_meter_search_scope_orig
#define snd_pcm_scope_malloc snd_pcm_scope_malloc_orig
#define snd_pcm_scope_set_ops snd_pcm_scope_set_ops_orig
#define snd_pcm_scope_set_name snd_pcm_scope_set_name_orig
#define snd_pcm_scope_get_name snd_pcm_scope_get_name_orig
#define snd_pcm_scope_get_callback_private snd_pcm_scope_get_callback_private_orig
#define snd_pcm_scope_set_callback_private snd_pcm_scope_set_callback_private_orig
#define snd_pcm_scope_s16_open snd_pcm_scope_s16_open_orig
#define snd_pcm_scope_s16_get_channel_buffer snd_pcm_scope_s16_get_channel_buffer_orig
#define snd_spcm_init snd_spcm_init_orig
#define snd_spcm_init_duplex snd_spcm_init_duplex_orig
#define snd_spcm_init_get_params snd_spcm_init_get_params_orig
#define snd_pcm_start_mode_name snd_pcm_start_mode_name_orig
#define snd_pcm_xrun_mode_name snd_pcm_xrun_mode_name_orig
#define snd_pcm_sw_params_set_start_mode snd_pcm_sw_params_set_start_mode_orig
#define snd_pcm_sw_params_get_start_mode snd_pcm_sw_params_get_start_mode_orig
#define snd_pcm_sw_params_set_xrun_mode snd_pcm_sw_params_set_xrun_mode_orig
#define snd_pcm_sw_params_get_xrun_mode snd_pcm_sw_params_get_xrun_mode_orig
#define snd_pcm_sw_params_set_xfer_align snd_pcm_sw_params_set_xfer_align_orig
#define snd_pcm_sw_params_get_xfer_align snd_pcm_sw_params_get_xfer_align_orig
#define snd_pcm_sw_params_set_sleep_min snd_pcm_sw_params_set_sleep_min_orig
#define snd_pcm_sw_params_get_sleep_min snd_pcm_sw_params_get_sleep_min_orig
#define snd_pcm_hw_params_get_tick_time snd_pcm_hw_params_get_tick_time_orig
#define snd_pcm_hw_params_get_tick_time_min snd_pcm_hw_params_get_tick_time_min_orig
#define snd_pcm_hw_params_get_tick_time_max snd_pcm_hw_params_get_tick_time_max_orig
#define snd_pcm_hw_params_test_tick_time snd_pcm_hw_params_test_tick_time_orig
#define snd_pcm_hw_params_set_tick_time snd_pcm_hw_params_set_tick_time_orig
#define snd_pcm_hw_params_set_tick_time_min snd_pcm_hw_params_set_tick_time_min_orig
#define snd_pcm_hw_params_set_tick_time_max snd_pcm_hw_params_set_tick_time_max_orig
#define snd_pcm_hw_params_set_tick_time_minmax snd_pcm_hw_params_set_tick_time_minmax_orig
#define snd_pcm_hw_params_set_tick_time_near snd_pcm_hw_params_set_tick_time_near_orig
#define snd_pcm_hw_params_set_tick_time_first snd_pcm_hw_params_set_tick_time_first_orig
#define snd_pcm_hw_params_set_tick_time_last snd_pcm_hw_params_set_tick_time_last_orig
#define snd_rawmidi_open snd_rawmidi_open_orig
#define snd_rawmidi_open_lconf snd_rawmidi_open_lconf_orig
#define snd_rawmidi_close snd_rawmidi_close_orig
#define snd_rawmidi_poll_descriptors_count snd_rawmidi_poll_descriptors_count_orig
#define snd_rawmidi_poll_descriptors snd_rawmidi_poll_descriptors_orig
#define snd_rawmidi_poll_descriptors_revents snd_rawmidi_poll_descriptors_revents_orig
#define snd_rawmidi_nonblock snd_rawmidi_nonblock_orig
#define snd_rawmidi_info_sizeof snd_rawmidi_info_sizeof_orig
#define snd_rawmidi_info_malloc snd_rawmidi_info_malloc_orig
#define snd_rawmidi_info_free snd_rawmidi_info_free_orig
#define snd_rawmidi_info_copy snd_rawmidi_info_copy_orig
#define snd_rawmidi_info_get_device snd_rawmidi_info_get_device_orig
#define snd_rawmidi_info_get_subdevice snd_rawmidi_info_get_subdevice_orig
#define snd_rawmidi_info_get_stream snd_rawmidi_info_get_stream_orig
#define snd_rawmidi_info_get_card snd_rawmidi_info_get_card_orig
#define snd_rawmidi_info_get_flags snd_rawmidi_info_get_flags_orig
#define snd_rawmidi_info_get_id snd_rawmidi_info_get_id_orig
#define snd_rawmidi_info_get_name snd_rawmidi_info_get_name_orig
#define snd_rawmidi_info_get_subdevice_name snd_rawmidi_info_get_subdevice_name_orig
#define snd_rawmidi_info_get_subdevices_count snd_rawmidi_info_get_subdevices_count_orig
#define snd_rawmidi_info_get_subdevices_avail snd_rawmidi_info_get_subdevices_avail_orig
#define snd_rawmidi_info_set_device snd_rawmidi_info_set_device_orig
#define snd_rawmidi_info_set_subdevice snd_rawmidi_info_set_subdevice_orig
#define snd_rawmidi_info_set_stream snd_rawmidi_info_set_stream_orig
#define snd_rawmidi_info snd_rawmidi_info_orig
#define snd_rawmidi_params_sizeof snd_rawmidi_params_sizeof_orig
#define snd_rawmidi_params_malloc snd_rawmidi_params_malloc_orig
#define snd_rawmidi_params_free snd_rawmidi_params_free_orig
#define snd_rawmidi_params_copy snd_rawmidi_params_copy_orig
#define snd_rawmidi_params_set_buffer_size snd_rawmidi_params_set_buffer_size_orig
#define snd_rawmidi_params_get_buffer_size snd_rawmidi_params_get_buffer_size_orig
#define snd_rawmidi_params_set_avail_min snd_rawmidi_params_set_avail_min_orig
#define snd_rawmidi_params_get_avail_min snd_rawmidi_params_get_avail_min_orig
#define snd_rawmidi_params_set_no_active_sensing snd_rawmidi_params_set_no_active_sensing_orig
#define snd_rawmidi_params_get_no_active_sensing snd_rawmidi_params_get_no_active_sensing_orig
#define snd_rawmidi_params snd_rawmidi_params_orig
#define snd_rawmidi_params_current snd_rawmidi_params_current_orig
#define snd_rawmidi_status_sizeof snd_rawmidi_status_sizeof_orig
#define snd_rawmidi_status_malloc snd_rawmidi_status_malloc_orig
#define snd_rawmidi_status_free snd_rawmidi_status_free_orig
#define snd_rawmidi_status_copy snd_rawmidi_status_copy_orig
#define snd_rawmidi_status_get_tstamp snd_rawmidi_status_get_tstamp_orig
#define snd_rawmidi_status_get_avail snd_rawmidi_status_get_avail_orig
#define snd_rawmidi_status_get_xruns snd_rawmidi_status_get_xruns_orig
#define snd_rawmidi_status snd_rawmidi_status_orig
#define snd_rawmidi_drain snd_rawmidi_drain_orig
#define snd_rawmidi_drop snd_rawmidi_drop_orig
#define snd_rawmidi_write snd_rawmidi_write_orig
#define snd_rawmidi_read snd_rawmidi_read_orig
#define snd_rawmidi_name snd_rawmidi_name_orig
#define snd_rawmidi_type snd_rawmidi_type_orig
#define snd_rawmidi_stream snd_rawmidi_stream_orig
#define snd_timer_query_open snd_timer_query_open_orig
#define snd_timer_query_open_lconf snd_timer_query_open_lconf_orig
#define snd_timer_query_close snd_timer_query_close_orig
#define snd_timer_query_next_device snd_timer_query_next_device_orig
#define snd_timer_query_info snd_timer_query_info_orig
#define snd_timer_query_params snd_timer_query_params_orig
#define snd_timer_query_status snd_timer_query_status_orig
#define snd_timer_open snd_timer_open_orig
#define snd_timer_open_lconf snd_timer_open_lconf_orig
#define snd_timer_close snd_timer_close_orig
#define snd_async_add_timer_handler snd_async_add_timer_handler_orig
#define snd_async_handler_get_timer snd_async_handler_get_timer_orig
#define snd_timer_poll_descriptors_count snd_timer_poll_descriptors_count_orig
#define snd_timer_poll_descriptors snd_timer_poll_descriptors_orig
#define snd_timer_poll_descriptors_revents snd_timer_poll_descriptors_revents_orig
#define snd_timer_info snd_timer_info_orig
#define snd_timer_params snd_timer_params_orig
#define snd_timer_status snd_timer_status_orig
#define snd_timer_start snd_timer_start_orig
#define snd_timer_stop snd_timer_stop_orig
#define snd_timer_continue snd_timer_continue_orig
#define snd_timer_read snd_timer_read_orig
#define snd_timer_id_sizeof snd_timer_id_sizeof_orig
#define snd_timer_id_malloc snd_timer_id_malloc_orig
#define snd_timer_id_free snd_timer_id_free_orig
#define snd_timer_id_copy snd_timer_id_copy_orig
#define snd_timer_id_set_class snd_timer_id_set_class_orig
#define snd_timer_id_get_class snd_timer_id_get_class_orig
#define snd_timer_id_set_sclass snd_timer_id_set_sclass_orig
#define snd_timer_id_get_sclass snd_timer_id_get_sclass_orig
#define snd_timer_id_set_card snd_timer_id_set_card_orig
#define snd_timer_id_get_card snd_timer_id_get_card_orig
#define snd_timer_id_set_device snd_timer_id_set_device_orig
#define snd_timer_id_get_device snd_timer_id_get_device_orig
#define snd_timer_id_set_subdevice snd_timer_id_set_subdevice_orig
#define snd_timer_id_get_subdevice snd_timer_id_get_subdevice_orig
#define snd_timer_ginfo_sizeof snd_timer_ginfo_sizeof_orig
#define snd_timer_ginfo_malloc snd_timer_ginfo_malloc_orig
#define snd_timer_ginfo_free snd_timer_ginfo_free_orig
#define snd_timer_ginfo_copy snd_timer_ginfo_copy_orig
#define snd_timer_ginfo_set_tid snd_timer_ginfo_set_tid_orig
#define snd_timer_ginfo_get_tid snd_timer_ginfo_get_tid_orig
#define snd_timer_ginfo_get_flags snd_timer_ginfo_get_flags_orig
#define snd_timer_ginfo_get_card snd_timer_ginfo_get_card_orig
#define snd_timer_ginfo_get_id snd_timer_ginfo_get_id_orig
#define snd_timer_ginfo_get_name snd_timer_ginfo_get_name_orig
#define snd_timer_ginfo_get_resolution snd_timer_ginfo_get_resolution_orig
#define snd_timer_ginfo_get_resolution_min snd_timer_ginfo_get_resolution_min_orig
#define snd_timer_ginfo_get_resolution_max snd_timer_ginfo_get_resolution_max_orig
#define snd_timer_ginfo_get_clients snd_timer_ginfo_get_clients_orig
#define snd_timer_info_sizeof snd_timer_info_sizeof_orig
#define snd_timer_info_malloc snd_timer_info_malloc_orig
#define snd_timer_info_free snd_timer_info_free_orig
#define snd_timer_info_copy snd_timer_info_copy_orig
#define snd_timer_info_is_slave snd_timer_info_is_slave_orig
#define snd_timer_info_get_card snd_timer_info_get_card_orig
#define snd_timer_info_get_id snd_timer_info_get_id_orig
#define snd_timer_info_get_name snd_timer_info_get_name_orig
#define snd_timer_info_get_resolution snd_timer_info_get_resolution_orig
#define snd_timer_params_sizeof snd_timer_params_sizeof_orig
#define snd_timer_params_malloc snd_timer_params_malloc_orig
#define snd_timer_params_free snd_timer_params_free_orig
#define snd_timer_params_copy snd_timer_params_copy_orig
#define snd_timer_params_set_auto_start snd_timer_params_set_auto_start_orig
#define snd_timer_params_get_auto_start snd_timer_params_get_auto_start_orig
#define snd_timer_params_set_exclusive snd_timer_params_set_exclusive_orig
#define snd_timer_params_get_exclusive snd_timer_params_get_exclusive_orig
#define snd_timer_params_set_early_event snd_timer_params_set_early_event_orig
#define snd_timer_params_get_early_event snd_timer_params_get_early_event_orig
#define snd_timer_params_set_ticks snd_timer_params_set_ticks_orig
#define snd_timer_params_get_ticks snd_timer_params_get_ticks_orig
#define snd_timer_params_set_queue_size snd_timer_params_set_queue_size_orig
#define snd_timer_params_get_queue_size snd_timer_params_get_queue_size_orig
#define snd_timer_params_set_filter snd_timer_params_set_filter_orig
#define snd_timer_params_get_filter snd_timer_params_get_filter_orig
#define snd_timer_status_sizeof snd_timer_status_sizeof_orig
#define snd_timer_status_malloc snd_timer_status_malloc_orig
#define snd_timer_status_free snd_timer_status_free_orig
#define snd_timer_status_copy snd_timer_status_copy_orig
#define snd_timer_status_get_timestamp snd_timer_status_get_timestamp_orig
#define snd_timer_status_get_resolution snd_timer_status_get_resolution_orig
#define snd_timer_status_get_lost snd_timer_status_get_lost_orig
#define snd_timer_status_get_overrun snd_timer_status_get_overrun_orig
#define snd_timer_status_get_queue snd_timer_status_get_queue_orig
#define snd_timer_info_get_ticks snd_timer_info_get_ticks_orig
#define snd_hwdep_open snd_hwdep_open_orig
#define snd_hwdep_close snd_hwdep_close_orig
#define snd_hwdep_poll_descriptors snd_hwdep_poll_descriptors_orig
#define snd_hwdep_poll_descriptors_count snd_hwdep_poll_descriptors_count_orig
#define snd_hwdep_poll_descriptors_revents snd_hwdep_poll_descriptors_revents_orig
#define snd_hwdep_nonblock snd_hwdep_nonblock_orig
#define snd_hwdep_info snd_hwdep_info_orig
#define snd_hwdep_dsp_status snd_hwdep_dsp_status_orig
#define snd_hwdep_dsp_load snd_hwdep_dsp_load_orig
#define snd_hwdep_ioctl snd_hwdep_ioctl_orig
#define snd_hwdep_write snd_hwdep_write_orig
#define snd_hwdep_read snd_hwdep_read_orig
#define snd_hwdep_info_sizeof snd_hwdep_info_sizeof_orig
#define snd_hwdep_info_malloc snd_hwdep_info_malloc_orig
#define snd_hwdep_info_free snd_hwdep_info_free_orig
#define snd_hwdep_info_copy snd_hwdep_info_copy_orig
#define snd_hwdep_info_get_device snd_hwdep_info_get_device_orig
#define snd_hwdep_info_get_card snd_hwdep_info_get_card_orig
#define snd_hwdep_info_get_id snd_hwdep_info_get_id_orig
#define snd_hwdep_info_get_name snd_hwdep_info_get_name_orig
#define snd_hwdep_info_get_iface snd_hwdep_info_get_iface_orig
#define snd_hwdep_info_set_device snd_hwdep_info_set_device_orig
#define snd_hwdep_dsp_status_sizeof snd_hwdep_dsp_status_sizeof_orig
#define snd_hwdep_dsp_status_malloc snd_hwdep_dsp_status_malloc_orig
#define snd_hwdep_dsp_status_free snd_hwdep_dsp_status_free_orig
#define snd_hwdep_dsp_status_copy snd_hwdep_dsp_status_copy_orig
#define snd_hwdep_dsp_status_get_version snd_hwdep_dsp_status_get_version_orig
#define snd_hwdep_dsp_status_get_id snd_hwdep_dsp_status_get_id_orig
#define snd_hwdep_dsp_status_get_num_dsps snd_hwdep_dsp_status_get_num_dsps_orig
#define snd_hwdep_dsp_status_get_dsp_loaded snd_hwdep_dsp_status_get_dsp_loaded_orig
#define snd_hwdep_dsp_status_get_chip_ready snd_hwdep_dsp_status_get_chip_ready_orig
#define snd_hwdep_dsp_image_sizeof snd_hwdep_dsp_image_sizeof_orig
#define snd_hwdep_dsp_image_malloc snd_hwdep_dsp_image_malloc_orig
#define snd_hwdep_dsp_image_free snd_hwdep_dsp_image_free_orig
#define snd_hwdep_dsp_image_copy snd_hwdep_dsp_image_copy_orig
#define snd_hwdep_dsp_image_get_index snd_hwdep_dsp_image_get_index_orig
#define snd_hwdep_dsp_image_get_name snd_hwdep_dsp_image_get_name_orig
#define snd_hwdep_dsp_image_get_image snd_hwdep_dsp_image_get_image_orig
#define snd_hwdep_dsp_image_get_length snd_hwdep_dsp_image_get_length_orig
#define snd_hwdep_dsp_image_set_index snd_hwdep_dsp_image_set_index_orig
#define snd_hwdep_dsp_image_set_name snd_hwdep_dsp_image_set_name_orig
#define snd_hwdep_dsp_image_set_image snd_hwdep_dsp_image_set_image_orig
#define snd_hwdep_dsp_image_set_length snd_hwdep_dsp_image_set_length_orig
#define snd_card_load snd_card_load_orig
#define snd_card_next snd_card_next_orig
#define snd_card_get_index snd_card_get_index_orig
#define snd_card_get_name snd_card_get_name_orig
#define snd_card_get_longname snd_card_get_longname_orig
#define snd_device_name_hint snd_device_name_hint_orig
#define snd_device_name_free_hint snd_device_name_free_hint_orig
#define snd_device_name_get_hint snd_device_name_get_hint_orig
#define snd_ctl_open snd_ctl_open_orig
#define snd_ctl_open_lconf snd_ctl_open_lconf_orig
#define snd_ctl_open_fallback snd_ctl_open_fallback_orig
#define snd_ctl_close snd_ctl_close_orig
#define snd_ctl_nonblock snd_ctl_nonblock_orig
#define snd_async_add_ctl_handler snd_async_add_ctl_handler_orig
#define snd_async_handler_get_ctl snd_async_handler_get_ctl_orig
#define snd_ctl_poll_descriptors_count snd_ctl_poll_descriptors_count_orig
#define snd_ctl_poll_descriptors snd_ctl_poll_descriptors_orig
#define snd_ctl_poll_descriptors_revents snd_ctl_poll_descriptors_revents_orig
#define snd_ctl_subscribe_events snd_ctl_subscribe_events_orig
#define snd_ctl_card_info snd_ctl_card_info_orig
#define snd_ctl_elem_list snd_ctl_elem_list_orig
#define snd_ctl_elem_info snd_ctl_elem_info_orig
#define snd_ctl_elem_read snd_ctl_elem_read_orig
#define snd_ctl_elem_write snd_ctl_elem_write_orig
#define snd_ctl_elem_lock snd_ctl_elem_lock_orig
#define snd_ctl_elem_unlock snd_ctl_elem_unlock_orig
#define snd_ctl_elem_tlv_read snd_ctl_elem_tlv_read_orig
#define snd_ctl_elem_tlv_write snd_ctl_elem_tlv_write_orig
#define snd_ctl_elem_tlv_command snd_ctl_elem_tlv_command_orig
#define snd_ctl_hwdep_next_device snd_ctl_hwdep_next_device_orig
#define snd_ctl_hwdep_info snd_ctl_hwdep_info_orig
#define snd_ctl_pcm_next_device snd_ctl_pcm_next_device_orig
#define snd_ctl_pcm_info snd_ctl_pcm_info_orig
#define snd_ctl_pcm_prefer_subdevice snd_ctl_pcm_prefer_subdevice_orig
#define snd_ctl_rawmidi_next_device snd_ctl_rawmidi_next_device_orig
#define snd_ctl_rawmidi_info snd_ctl_rawmidi_info_orig
#define snd_ctl_rawmidi_prefer_subdevice snd_ctl_rawmidi_prefer_subdevice_orig
#define snd_ctl_set_power_state snd_ctl_set_power_state_orig
#define snd_ctl_get_power_state snd_ctl_get_power_state_orig
#define snd_ctl_read snd_ctl_read_orig
#define snd_ctl_wait snd_ctl_wait_orig
#define snd_ctl_name snd_ctl_name_orig
#define snd_ctl_type snd_ctl_type_orig
#define snd_ctl_elem_type_name snd_ctl_elem_type_name_orig
#define snd_ctl_elem_iface_name snd_ctl_elem_iface_name_orig
#define snd_ctl_event_type_name snd_ctl_event_type_name_orig
#define snd_ctl_event_elem_get_mask snd_ctl_event_elem_get_mask_orig
#define snd_ctl_event_elem_get_numid snd_ctl_event_elem_get_numid_orig
#define snd_ctl_event_elem_get_id snd_ctl_event_elem_get_id_orig
#define snd_ctl_event_elem_get_interface snd_ctl_event_elem_get_interface_orig
#define snd_ctl_event_elem_get_device snd_ctl_event_elem_get_device_orig
#define snd_ctl_event_elem_get_subdevice snd_ctl_event_elem_get_subdevice_orig
#define snd_ctl_event_elem_get_name snd_ctl_event_elem_get_name_orig
#define snd_ctl_event_elem_get_index snd_ctl_event_elem_get_index_orig
#define snd_ctl_elem_list_alloc_space snd_ctl_elem_list_alloc_space_orig
#define snd_ctl_elem_list_free_space snd_ctl_elem_list_free_space_orig
#define snd_ctl_ascii_elem_id_get snd_ctl_ascii_elem_id_get_orig
#define snd_ctl_ascii_elem_id_parse snd_ctl_ascii_elem_id_parse_orig
#define snd_ctl_ascii_value_parse snd_ctl_ascii_value_parse_orig
#define snd_ctl_elem_id_sizeof snd_ctl_elem_id_sizeof_orig
#define snd_ctl_elem_id_malloc snd_ctl_elem_id_malloc_orig
#define snd_ctl_elem_id_free snd_ctl_elem_id_free_orig
#define snd_ctl_elem_id_clear snd_ctl_elem_id_clear_orig
#define snd_ctl_elem_id_copy snd_ctl_elem_id_copy_orig
#define snd_ctl_elem_id_get_numid snd_ctl_elem_id_get_numid_orig
#define snd_ctl_elem_id_get_interface snd_ctl_elem_id_get_interface_orig
#define snd_ctl_elem_id_get_device snd_ctl_elem_id_get_device_orig
#define snd_ctl_elem_id_get_subdevice snd_ctl_elem_id_get_subdevice_orig
#define snd_ctl_elem_id_get_name snd_ctl_elem_id_get_name_orig
#define snd_ctl_elem_id_get_index snd_ctl_elem_id_get_index_orig
#define snd_ctl_elem_id_set_numid snd_ctl_elem_id_set_numid_orig
#define snd_ctl_elem_id_set_interface snd_ctl_elem_id_set_interface_orig
#define snd_ctl_elem_id_set_device snd_ctl_elem_id_set_device_orig
#define snd_ctl_elem_id_set_subdevice snd_ctl_elem_id_set_subdevice_orig
#define snd_ctl_elem_id_set_name snd_ctl_elem_id_set_name_orig
#define snd_ctl_elem_id_set_index snd_ctl_elem_id_set_index_orig
#define snd_ctl_card_info_sizeof snd_ctl_card_info_sizeof_orig
#define snd_ctl_card_info_malloc snd_ctl_card_info_malloc_orig
#define snd_ctl_card_info_free snd_ctl_card_info_free_orig
#define snd_ctl_card_info_clear snd_ctl_card_info_clear_orig
#define snd_ctl_card_info_copy snd_ctl_card_info_copy_orig
#define snd_ctl_card_info_get_card snd_ctl_card_info_get_card_orig
#define snd_ctl_card_info_get_id snd_ctl_card_info_get_id_orig
#define snd_ctl_card_info_get_driver snd_ctl_card_info_get_driver_orig
#define snd_ctl_card_info_get_name snd_ctl_card_info_get_name_orig
#define snd_ctl_card_info_get_longname snd_ctl_card_info_get_longname_orig
#define snd_ctl_card_info_get_mixername snd_ctl_card_info_get_mixername_orig
#define snd_ctl_card_info_get_components snd_ctl_card_info_get_components_orig
#define snd_ctl_event_sizeof snd_ctl_event_sizeof_orig
#define snd_ctl_event_malloc snd_ctl_event_malloc_orig
#define snd_ctl_event_free snd_ctl_event_free_orig
#define snd_ctl_event_clear snd_ctl_event_clear_orig
#define snd_ctl_event_copy snd_ctl_event_copy_orig
#define snd_ctl_event_get_type snd_ctl_event_get_type_orig
#define snd_ctl_elem_list_sizeof snd_ctl_elem_list_sizeof_orig
#define snd_ctl_elem_list_malloc snd_ctl_elem_list_malloc_orig
#define snd_ctl_elem_list_free snd_ctl_elem_list_free_orig
#define snd_ctl_elem_list_clear snd_ctl_elem_list_clear_orig
#define snd_ctl_elem_list_copy snd_ctl_elem_list_copy_orig
#define snd_ctl_elem_list_set_offset snd_ctl_elem_list_set_offset_orig
#define snd_ctl_elem_list_get_used snd_ctl_elem_list_get_used_orig
#define snd_ctl_elem_list_get_count snd_ctl_elem_list_get_count_orig
#define snd_ctl_elem_list_get_id snd_ctl_elem_list_get_id_orig
#define snd_ctl_elem_list_get_numid snd_ctl_elem_list_get_numid_orig
#define snd_ctl_elem_list_get_interface snd_ctl_elem_list_get_interface_orig
#define snd_ctl_elem_list_get_device snd_ctl_elem_list_get_device_orig
#define snd_ctl_elem_list_get_subdevice snd_ctl_elem_list_get_subdevice_orig
#define snd_ctl_elem_list_get_name snd_ctl_elem_list_get_name_orig
#define snd_ctl_elem_list_get_index snd_ctl_elem_list_get_index_orig
#define snd_ctl_elem_info_sizeof snd_ctl_elem_info_sizeof_orig
#define snd_ctl_elem_info_malloc snd_ctl_elem_info_malloc_orig
#define snd_ctl_elem_info_free snd_ctl_elem_info_free_orig
#define snd_ctl_elem_info_clear snd_ctl_elem_info_clear_orig
#define snd_ctl_elem_info_copy snd_ctl_elem_info_copy_orig
#define snd_ctl_elem_info_get_type snd_ctl_elem_info_get_type_orig
#define snd_ctl_elem_info_is_readable snd_ctl_elem_info_is_readable_orig
#define snd_ctl_elem_info_is_writable snd_ctl_elem_info_is_writable_orig
#define snd_ctl_elem_info_is_volatile snd_ctl_elem_info_is_volatile_orig
#define snd_ctl_elem_info_is_inactive snd_ctl_elem_info_is_inactive_orig
#define snd_ctl_elem_info_is_locked snd_ctl_elem_info_is_locked_orig
#define snd_ctl_elem_info_is_tlv_readable snd_ctl_elem_info_is_tlv_readable_orig
#define snd_ctl_elem_info_is_tlv_writable snd_ctl_elem_info_is_tlv_writable_orig
#define snd_ctl_elem_info_is_tlv_commandable snd_ctl_elem_info_is_tlv_commandable_orig
#define snd_ctl_elem_info_is_owner snd_ctl_elem_info_is_owner_orig
#define snd_ctl_elem_info_is_user snd_ctl_elem_info_is_user_orig
#define snd_ctl_elem_info_get_owner snd_ctl_elem_info_get_owner_orig
#define snd_ctl_elem_info_get_count snd_ctl_elem_info_get_count_orig
#define snd_ctl_elem_info_get_min snd_ctl_elem_info_get_min_orig
#define snd_ctl_elem_info_get_max snd_ctl_elem_info_get_max_orig
#define snd_ctl_elem_info_get_step snd_ctl_elem_info_get_step_orig
#define snd_ctl_elem_info_get_min64 snd_ctl_elem_info_get_min64_orig
#define snd_ctl_elem_info_get_max64 snd_ctl_elem_info_get_max64_orig
#define snd_ctl_elem_info_get_step64 snd_ctl_elem_info_get_step64_orig
#define snd_ctl_elem_info_get_items snd_ctl_elem_info_get_items_orig
#define snd_ctl_elem_info_set_item snd_ctl_elem_info_set_item_orig
#define snd_ctl_elem_info_get_item_name snd_ctl_elem_info_get_item_name_orig
#define snd_ctl_elem_info_get_dimensions snd_ctl_elem_info_get_dimensions_orig
#define snd_ctl_elem_info_get_dimension snd_ctl_elem_info_get_dimension_orig
#define snd_ctl_elem_info_set_dimension snd_ctl_elem_info_set_dimension_orig
#define snd_ctl_elem_info_get_id snd_ctl_elem_info_get_id_orig
#define snd_ctl_elem_info_get_numid snd_ctl_elem_info_get_numid_orig
#define snd_ctl_elem_info_get_interface snd_ctl_elem_info_get_interface_orig
#define snd_ctl_elem_info_get_device snd_ctl_elem_info_get_device_orig
#define snd_ctl_elem_info_get_subdevice snd_ctl_elem_info_get_subdevice_orig
#define snd_ctl_elem_info_get_name snd_ctl_elem_info_get_name_orig
#define snd_ctl_elem_info_get_index snd_ctl_elem_info_get_index_orig
#define snd_ctl_elem_info_set_id snd_ctl_elem_info_set_id_orig
#define snd_ctl_elem_info_set_numid snd_ctl_elem_info_set_numid_orig
#define snd_ctl_elem_info_set_interface snd_ctl_elem_info_set_interface_orig
#define snd_ctl_elem_info_set_device snd_ctl_elem_info_set_device_orig
#define snd_ctl_elem_info_set_subdevice snd_ctl_elem_info_set_subdevice_orig
#define snd_ctl_elem_info_set_name snd_ctl_elem_info_set_name_orig
#define snd_ctl_elem_info_set_index snd_ctl_elem_info_set_index_orig
#define snd_ctl_add_integer_elem_set snd_ctl_add_integer_elem_set_orig
#define snd_ctl_add_integer64_elem_set snd_ctl_add_integer64_elem_set_orig
#define snd_ctl_add_boolean_elem_set snd_ctl_add_boolean_elem_set_orig
#define snd_ctl_add_enumerated_elem_set snd_ctl_add_enumerated_elem_set_orig
#define snd_ctl_add_bytes_elem_set snd_ctl_add_bytes_elem_set_orig
#define snd_ctl_elem_add_integer snd_ctl_elem_add_integer_orig
#define snd_ctl_elem_add_integer64 snd_ctl_elem_add_integer64_orig
#define snd_ctl_elem_add_boolean snd_ctl_elem_add_boolean_orig
#define snd_ctl_elem_add_enumerated snd_ctl_elem_add_enumerated_orig
#define snd_ctl_elem_add_iec958 snd_ctl_elem_add_iec958_orig
#define snd_ctl_elem_remove snd_ctl_elem_remove_orig
#define snd_ctl_elem_value_sizeof snd_ctl_elem_value_sizeof_orig
#define snd_ctl_elem_value_malloc snd_ctl_elem_value_malloc_orig
#define snd_ctl_elem_value_free snd_ctl_elem_value_free_orig
#define snd_ctl_elem_value_clear snd_ctl_elem_value_clear_orig
#define snd_ctl_elem_value_copy snd_ctl_elem_value_copy_orig
#define snd_ctl_elem_value_compare snd_ctl_elem_value_compare_orig
#define snd_ctl_elem_value_get_id snd_ctl_elem_value_get_id_orig
#define snd_ctl_elem_value_get_numid snd_ctl_elem_value_get_numid_orig
#define snd_ctl_elem_value_get_interface snd_ctl_elem_value_get_interface_orig
#define snd_ctl_elem_value_get_device snd_ctl_elem_value_get_device_orig
#define snd_ctl_elem_value_get_subdevice snd_ctl_elem_value_get_subdevice_orig
#define snd_ctl_elem_value_get_name snd_ctl_elem_value_get_name_orig
#define snd_ctl_elem_value_get_index snd_ctl_elem_value_get_index_orig
#define snd_ctl_elem_value_set_id snd_ctl_elem_value_set_id_orig
#define snd_ctl_elem_value_set_numid snd_ctl_elem_value_set_numid_orig
#define snd_ctl_elem_value_set_interface snd_ctl_elem_value_set_interface_orig
#define snd_ctl_elem_value_set_device snd_ctl_elem_value_set_device_orig
#define snd_ctl_elem_value_set_subdevice snd_ctl_elem_value_set_subdevice_orig
#define snd_ctl_elem_value_set_name snd_ctl_elem_value_set_name_orig
#define snd_ctl_elem_value_set_index snd_ctl_elem_value_set_index_orig
#define snd_ctl_elem_value_get_boolean snd_ctl_elem_value_get_boolean_orig
#define snd_ctl_elem_value_get_integer snd_ctl_elem_value_get_integer_orig
#define snd_ctl_elem_value_get_integer64 snd_ctl_elem_value_get_integer64_orig
#define snd_ctl_elem_value_get_enumerated snd_ctl_elem_value_get_enumerated_orig
#define snd_ctl_elem_value_get_byte snd_ctl_elem_value_get_byte_orig
#define snd_ctl_elem_value_set_boolean snd_ctl_elem_value_set_boolean_orig
#define snd_ctl_elem_value_set_integer snd_ctl_elem_value_set_integer_orig
#define snd_ctl_elem_value_set_integer64 snd_ctl_elem_value_set_integer64_orig
#define snd_ctl_elem_value_set_enumerated snd_ctl_elem_value_set_enumerated_orig
#define snd_ctl_elem_value_set_byte snd_ctl_elem_value_set_byte_orig
#define snd_ctl_elem_set_bytes snd_ctl_elem_set_bytes_orig
#define snd_ctl_elem_value_get_bytes snd_ctl_elem_value_get_bytes_orig
#define snd_ctl_elem_value_get_iec958 snd_ctl_elem_value_get_iec958_orig
#define snd_ctl_elem_value_set_iec958 snd_ctl_elem_value_set_iec958_orig
#define snd_tlv_parse_dB_info snd_tlv_parse_dB_info_orig
#define snd_tlv_get_dB_range snd_tlv_get_dB_range_orig
#define snd_tlv_convert_to_dB snd_tlv_convert_to_dB_orig
#define snd_tlv_convert_from_dB snd_tlv_convert_from_dB_orig
#define snd_ctl_get_dB_range snd_ctl_get_dB_range_orig
#define snd_ctl_convert_to_dB snd_ctl_convert_to_dB_orig
#define snd_ctl_convert_from_dB snd_ctl_convert_from_dB_orig
#define snd_hctl_compare_fast snd_hctl_compare_fast_orig
#define snd_hctl_open snd_hctl_open_orig
#define snd_hctl_open_ctl snd_hctl_open_ctl_orig
#define snd_hctl_close snd_hctl_close_orig
#define snd_hctl_nonblock snd_hctl_nonblock_orig
#define snd_hctl_poll_descriptors_count snd_hctl_poll_descriptors_count_orig
#define snd_hctl_poll_descriptors snd_hctl_poll_descriptors_orig
#define snd_hctl_poll_descriptors_revents snd_hctl_poll_descriptors_revents_orig
#define snd_hctl_get_count snd_hctl_get_count_orig
#define snd_hctl_set_compare snd_hctl_set_compare_orig
#define snd_hctl_first_elem snd_hctl_first_elem_orig
#define snd_hctl_last_elem snd_hctl_last_elem_orig
#define snd_hctl_find_elem snd_hctl_find_elem_orig
#define snd_hctl_set_callback snd_hctl_set_callback_orig
#define snd_hctl_set_callback_private snd_hctl_set_callback_private_orig
#define snd_hctl_get_callback_private snd_hctl_get_callback_private_orig
#define snd_hctl_load snd_hctl_load_orig
#define snd_hctl_free snd_hctl_free_orig
#define snd_hctl_handle_events snd_hctl_handle_events_orig
#define snd_hctl_name snd_hctl_name_orig
#define snd_hctl_wait snd_hctl_wait_orig
#define snd_hctl_ctl snd_hctl_ctl_orig
#define snd_hctl_elem_next snd_hctl_elem_next_orig
#define snd_hctl_elem_prev snd_hctl_elem_prev_orig
#define snd_hctl_elem_info snd_hctl_elem_info_orig
#define snd_hctl_elem_read snd_hctl_elem_read_orig
#define snd_hctl_elem_write snd_hctl_elem_write_orig
#define snd_hctl_elem_tlv_read snd_hctl_elem_tlv_read_orig
#define snd_hctl_elem_tlv_write snd_hctl_elem_tlv_write_orig
#define snd_hctl_elem_tlv_command snd_hctl_elem_tlv_command_orig
#define snd_hctl_elem_get_hctl snd_hctl_elem_get_hctl_orig
#define snd_hctl_elem_get_id snd_hctl_elem_get_id_orig
#define snd_hctl_elem_get_numid snd_hctl_elem_get_numid_orig
#define snd_hctl_elem_get_interface snd_hctl_elem_get_interface_orig
#define snd_hctl_elem_get_device snd_hctl_elem_get_device_orig
#define snd_hctl_elem_get_subdevice snd_hctl_elem_get_subdevice_orig
#define snd_hctl_elem_get_name snd_hctl_elem_get_name_orig
#define snd_hctl_elem_get_index snd_hctl_elem_get_index_orig
#define snd_hctl_elem_set_callback snd_hctl_elem_set_callback_orig
#define snd_hctl_elem_get_callback_private snd_hctl_elem_get_callback_private_orig
#define snd_hctl_elem_set_callback_private snd_hctl_elem_set_callback_private_orig
#define snd_sctl_build snd_sctl_build_orig
#define snd_sctl_free snd_sctl_free_orig
#define snd_sctl_install snd_sctl_install_orig
#define snd_sctl_remove snd_sctl_remove_orig
#define snd_mixer_open snd_mixer_open_orig
#define snd_mixer_close snd_mixer_close_orig
#define snd_mixer_first_elem snd_mixer_first_elem_orig
#define snd_mixer_last_elem snd_mixer_last_elem_orig
#define snd_mixer_handle_events snd_mixer_handle_events_orig
#define snd_mixer_attach snd_mixer_attach_orig
#define snd_mixer_attach_hctl snd_mixer_attach_hctl_orig
#define snd_mixer_detach snd_mixer_detach_orig
#define snd_mixer_detach_hctl snd_mixer_detach_hctl_orig
#define snd_mixer_get_hctl snd_mixer_get_hctl_orig
#define snd_mixer_poll_descriptors_count snd_mixer_poll_descriptors_count_orig
#define snd_mixer_poll_descriptors snd_mixer_poll_descriptors_orig
#define snd_mixer_poll_descriptors_revents snd_mixer_poll_descriptors_revents_orig
#define snd_mixer_load snd_mixer_load_orig
#define snd_mixer_free snd_mixer_free_orig
#define snd_mixer_wait snd_mixer_wait_orig
#define snd_mixer_set_compare snd_mixer_set_compare_orig
#define snd_mixer_set_callback snd_mixer_set_callback_orig
#define snd_mixer_get_callback_private snd_mixer_get_callback_private_orig
#define snd_mixer_set_callback_private snd_mixer_set_callback_private_orig
#define snd_mixer_get_count snd_mixer_get_count_orig
#define snd_mixer_class_unregister snd_mixer_class_unregister_orig
#define snd_mixer_elem_next snd_mixer_elem_next_orig
#define snd_mixer_elem_prev snd_mixer_elem_prev_orig
#define snd_mixer_elem_set_callback snd_mixer_elem_set_callback_orig
#define snd_mixer_elem_get_callback_private snd_mixer_elem_get_callback_private_orig
#define snd_mixer_elem_set_callback_private snd_mixer_elem_set_callback_private_orig
#define snd_mixer_elem_get_type snd_mixer_elem_get_type_orig
#define snd_mixer_class_register snd_mixer_class_register_orig
#define snd_mixer_elem_new snd_mixer_elem_new_orig
#define snd_mixer_elem_add snd_mixer_elem_add_orig
#define snd_mixer_elem_remove snd_mixer_elem_remove_orig
#define snd_mixer_elem_free snd_mixer_elem_free_orig
#define snd_mixer_elem_info snd_mixer_elem_info_orig
#define snd_mixer_elem_value snd_mixer_elem_value_orig
#define snd_mixer_elem_attach snd_mixer_elem_attach_orig
#define snd_mixer_elem_detach snd_mixer_elem_detach_orig
#define snd_mixer_elem_empty snd_mixer_elem_empty_orig
#define snd_mixer_elem_get_private snd_mixer_elem_get_private_orig
#define snd_mixer_class_sizeof snd_mixer_class_sizeof_orig
#define snd_mixer_class_malloc snd_mixer_class_malloc_orig
#define snd_mixer_class_free snd_mixer_class_free_orig
#define snd_mixer_class_copy snd_mixer_class_copy_orig
#define snd_mixer_class_get_mixer snd_mixer_class_get_mixer_orig
#define snd_mixer_class_get_event snd_mixer_class_get_event_orig
#define snd_mixer_class_get_private snd_mixer_class_get_private_orig
#define snd_mixer_class_get_compare snd_mixer_class_get_compare_orig
#define snd_mixer_class_set_event snd_mixer_class_set_event_orig
#define snd_mixer_class_set_private snd_mixer_class_set_private_orig
#define snd_mixer_class_set_private_free snd_mixer_class_set_private_free_orig
#define snd_mixer_class_set_compare snd_mixer_class_set_compare_orig
#define snd_mixer_selem_channel_name snd_mixer_selem_channel_name_orig
#define snd_mixer_selem_register snd_mixer_selem_register_orig
#define snd_mixer_selem_get_id snd_mixer_selem_get_id_orig
#define snd_mixer_selem_get_name snd_mixer_selem_get_name_orig
#define snd_mixer_selem_get_index snd_mixer_selem_get_index_orig
#define snd_mixer_find_selem snd_mixer_find_selem_orig
#define snd_mixer_selem_is_active snd_mixer_selem_is_active_orig
#define snd_mixer_selem_is_playback_mono snd_mixer_selem_is_playback_mono_orig
#define snd_mixer_selem_has_playback_channel snd_mixer_selem_has_playback_channel_orig
#define snd_mixer_selem_is_capture_mono snd_mixer_selem_is_capture_mono_orig
#define snd_mixer_selem_has_capture_channel snd_mixer_selem_has_capture_channel_orig
#define snd_mixer_selem_get_capture_group snd_mixer_selem_get_capture_group_orig
#define snd_mixer_selem_has_common_volume snd_mixer_selem_has_common_volume_orig
#define snd_mixer_selem_has_playback_volume snd_mixer_selem_has_playback_volume_orig
#define snd_mixer_selem_has_playback_volume_joined snd_mixer_selem_has_playback_volume_joined_orig
#define snd_mixer_selem_has_capture_volume snd_mixer_selem_has_capture_volume_orig
#define snd_mixer_selem_has_capture_volume_joined snd_mixer_selem_has_capture_volume_joined_orig
#define snd_mixer_selem_has_common_switch snd_mixer_selem_has_common_switch_orig
#define snd_mixer_selem_has_playback_switch snd_mixer_selem_has_playback_switch_orig
#define snd_mixer_selem_has_playback_switch_joined snd_mixer_selem_has_playback_switch_joined_orig
#define snd_mixer_selem_has_capture_switch snd_mixer_selem_has_capture_switch_orig
#define snd_mixer_selem_has_capture_switch_joined snd_mixer_selem_has_capture_switch_joined_orig
#define snd_mixer_selem_has_capture_switch_exclusive snd_mixer_selem_has_capture_switch_exclusive_orig
#define snd_mixer_selem_ask_playback_vol_dB snd_mixer_selem_ask_playback_vol_dB_orig
#define snd_mixer_selem_ask_capture_vol_dB snd_mixer_selem_ask_capture_vol_dB_orig
#define snd_mixer_selem_ask_playback_dB_vol snd_mixer_selem_ask_playback_dB_vol_orig
#define snd_mixer_selem_ask_capture_dB_vol snd_mixer_selem_ask_capture_dB_vol_orig
#define snd_mixer_selem_get_playback_volume snd_mixer_selem_get_playback_volume_orig
#define snd_mixer_selem_get_capture_volume snd_mixer_selem_get_capture_volume_orig
#define snd_mixer_selem_get_playback_dB snd_mixer_selem_get_playback_dB_orig
#define snd_mixer_selem_get_capture_dB snd_mixer_selem_get_capture_dB_orig
#define snd_mixer_selem_get_playback_switch snd_mixer_selem_get_playback_switch_orig
#define snd_mixer_selem_get_capture_switch snd_mixer_selem_get_capture_switch_orig
#define snd_mixer_selem_set_playback_volume snd_mixer_selem_set_playback_volume_orig
#define snd_mixer_selem_set_capture_volume snd_mixer_selem_set_capture_volume_orig
#define snd_mixer_selem_set_playback_dB snd_mixer_selem_set_playback_dB_orig
#define snd_mixer_selem_set_capture_dB snd_mixer_selem_set_capture_dB_orig
#define snd_mixer_selem_set_playback_volume_all snd_mixer_selem_set_playback_volume_all_orig
#define snd_mixer_selem_set_capture_volume_all snd_mixer_selem_set_capture_volume_all_orig
#define snd_mixer_selem_set_playback_dB_all snd_mixer_selem_set_playback_dB_all_orig
#define snd_mixer_selem_set_capture_dB_all snd_mixer_selem_set_capture_dB_all_orig
#define snd_mixer_selem_set_playback_switch snd_mixer_selem_set_playback_switch_orig
#define snd_mixer_selem_set_capture_switch snd_mixer_selem_set_capture_switch_orig
#define snd_mixer_selem_set_playback_switch_all snd_mixer_selem_set_playback_switch_all_orig
#define snd_mixer_selem_set_capture_switch_all snd_mixer_selem_set_capture_switch_all_orig
#define snd_mixer_selem_get_playback_volume_range snd_mixer_selem_get_playback_volume_range_orig
#define snd_mixer_selem_get_playback_dB_range snd_mixer_selem_get_playback_dB_range_orig
#define snd_mixer_selem_set_playback_volume_range snd_mixer_selem_set_playback_volume_range_orig
#define snd_mixer_selem_get_capture_volume_range snd_mixer_selem_get_capture_volume_range_orig
#define snd_mixer_selem_get_capture_dB_range snd_mixer_selem_get_capture_dB_range_orig
#define snd_mixer_selem_set_capture_volume_range snd_mixer_selem_set_capture_volume_range_orig
#define snd_mixer_selem_is_enumerated snd_mixer_selem_is_enumerated_orig
#define snd_mixer_selem_is_enum_playback snd_mixer_selem_is_enum_playback_orig
#define snd_mixer_selem_is_enum_capture snd_mixer_selem_is_enum_capture_orig
#define snd_mixer_selem_get_enum_items snd_mixer_selem_get_enum_items_orig
#define snd_mixer_selem_get_enum_item_name snd_mixer_selem_get_enum_item_name_orig
#define snd_mixer_selem_get_enum_item snd_mixer_selem_get_enum_item_orig
#define snd_mixer_selem_set_enum_item snd_mixer_selem_set_enum_item_orig
#define snd_mixer_selem_id_sizeof snd_mixer_selem_id_sizeof_orig
#define snd_mixer_selem_id_malloc snd_mixer_selem_id_malloc_orig
#define snd_mixer_selem_id_free snd_mixer_selem_id_free_orig
#define snd_mixer_selem_id_copy snd_mixer_selem_id_copy_orig
#define snd_mixer_selem_id_get_name snd_mixer_selem_id_get_name_orig
#define snd_mixer_selem_id_get_index snd_mixer_selem_id_get_index_orig
#define snd_mixer_selem_id_set_name snd_mixer_selem_id_set_name_orig
#define snd_mixer_selem_id_set_index snd_mixer_selem_id_set_index_orig
#define snd_mixer_selem_id_parse snd_mixer_selem_id_parse_orig
#define snd_seq_open snd_seq_open_orig
#define snd_seq_open_lconf snd_seq_open_lconf_orig
#define snd_seq_name snd_seq_name_orig
#define snd_seq_type snd_seq_type_orig
#define snd_seq_close snd_seq_close_orig
#define snd_seq_poll_descriptors_count snd_seq_poll_descriptors_count_orig
#define snd_seq_poll_descriptors snd_seq_poll_descriptors_orig
#define snd_seq_poll_descriptors_revents snd_seq_poll_descriptors_revents_orig
#define snd_seq_nonblock snd_seq_nonblock_orig
#define snd_seq_client_id snd_seq_client_id_orig
#define snd_seq_get_output_buffer_size snd_seq_get_output_buffer_size_orig
#define snd_seq_get_input_buffer_size snd_seq_get_input_buffer_size_orig
#define snd_seq_set_output_buffer_size snd_seq_set_output_buffer_size_orig
#define snd_seq_set_input_buffer_size snd_seq_set_input_buffer_size_orig
#define snd_seq_system_info_sizeof snd_seq_system_info_sizeof_orig
#define snd_seq_system_info_malloc snd_seq_system_info_malloc_orig
#define snd_seq_system_info_free snd_seq_system_info_free_orig
#define snd_seq_system_info_copy snd_seq_system_info_copy_orig
#define snd_seq_system_info_get_queues snd_seq_system_info_get_queues_orig
#define snd_seq_system_info_get_clients snd_seq_system_info_get_clients_orig
#define snd_seq_system_info_get_ports snd_seq_system_info_get_ports_orig
#define snd_seq_system_info_get_channels snd_seq_system_info_get_channels_orig
#define snd_seq_system_info_get_cur_clients snd_seq_system_info_get_cur_clients_orig
#define snd_seq_system_info_get_cur_queues snd_seq_system_info_get_cur_queues_orig
#define snd_seq_system_info snd_seq_system_info_orig
#define snd_seq_client_info_sizeof snd_seq_client_info_sizeof_orig
#define snd_seq_client_info_malloc snd_seq_client_info_malloc_orig
#define snd_seq_client_info_free snd_seq_client_info_free_orig
#define snd_seq_client_info_copy snd_seq_client_info_copy_orig
#define snd_seq_client_info_get_client snd_seq_client_info_get_client_orig
#define snd_seq_client_info_get_type snd_seq_client_info_get_type_orig
#define snd_seq_client_info_get_name snd_seq_client_info_get_name_orig
#define snd_seq_client_info_get_broadcast_filter snd_seq_client_info_get_broadcast_filter_orig
#define snd_seq_client_info_get_error_bounce snd_seq_client_info_get_error_bounce_orig
#define snd_seq_client_info_get_card snd_seq_client_info_get_card_orig
#define snd_seq_client_info_get_pid snd_seq_client_info_get_pid_orig
#define snd_seq_client_info_get_event_filter snd_seq_client_info_get_event_filter_orig
#define snd_seq_client_info_get_num_ports snd_seq_client_info_get_num_ports_orig
#define snd_seq_client_info_get_event_lost snd_seq_client_info_get_event_lost_orig
#define snd_seq_client_info_set_client snd_seq_client_info_set_client_orig
#define snd_seq_client_info_set_name snd_seq_client_info_set_name_orig
#define snd_seq_client_info_set_broadcast_filter snd_seq_client_info_set_broadcast_filter_orig
#define snd_seq_client_info_set_error_bounce snd_seq_client_info_set_error_bounce_orig
#define snd_seq_client_info_set_event_filter snd_seq_client_info_set_event_filter_orig
#define snd_seq_client_info_event_filter_clear snd_seq_client_info_event_filter_clear_orig
#define snd_seq_client_info_event_filter_add snd_seq_client_info_event_filter_add_orig
#define snd_seq_client_info_event_filter_del snd_seq_client_info_event_filter_del_orig
#define snd_seq_client_info_event_filter_check snd_seq_client_info_event_filter_check_orig
#define snd_seq_get_client_info snd_seq_get_client_info_orig
#define snd_seq_get_any_client_info snd_seq_get_any_client_info_orig
#define snd_seq_set_client_info snd_seq_set_client_info_orig
#define snd_seq_query_next_client snd_seq_query_next_client_orig
#define snd_seq_client_pool_sizeof snd_seq_client_pool_sizeof_orig
#define snd_seq_client_pool_malloc snd_seq_client_pool_malloc_orig
#define snd_seq_client_pool_free snd_seq_client_pool_free_orig
#define snd_seq_client_pool_copy snd_seq_client_pool_copy_orig
#define snd_seq_client_pool_get_client snd_seq_client_pool_get_client_orig
#define snd_seq_client_pool_get_output_pool snd_seq_client_pool_get_output_pool_orig
#define snd_seq_client_pool_get_input_pool snd_seq_client_pool_get_input_pool_orig
#define snd_seq_client_pool_get_output_room snd_seq_client_pool_get_output_room_orig
#define snd_seq_client_pool_get_output_free snd_seq_client_pool_get_output_free_orig
#define snd_seq_client_pool_get_input_free snd_seq_client_pool_get_input_free_orig
#define snd_seq_client_pool_set_output_pool snd_seq_client_pool_set_output_pool_orig
#define snd_seq_client_pool_set_input_pool snd_seq_client_pool_set_input_pool_orig
#define snd_seq_client_pool_set_output_room snd_seq_client_pool_set_output_room_orig
#define snd_seq_get_client_pool snd_seq_get_client_pool_orig
#define snd_seq_set_client_pool snd_seq_set_client_pool_orig
#define snd_seq_port_info_sizeof snd_seq_port_info_sizeof_orig
#define snd_seq_port_info_malloc snd_seq_port_info_malloc_orig
#define snd_seq_port_info_free snd_seq_port_info_free_orig
#define snd_seq_port_info_copy snd_seq_port_info_copy_orig
#define snd_seq_port_info_get_client snd_seq_port_info_get_client_orig
#define snd_seq_port_info_get_port snd_seq_port_info_get_port_orig
#define snd_seq_port_info_get_addr snd_seq_port_info_get_addr_orig
#define snd_seq_port_info_get_name snd_seq_port_info_get_name_orig
#define snd_seq_port_info_get_capability snd_seq_port_info_get_capability_orig
#define snd_seq_port_info_get_type snd_seq_port_info_get_type_orig
#define snd_seq_port_info_get_midi_channels snd_seq_port_info_get_midi_channels_orig
#define snd_seq_port_info_get_midi_voices snd_seq_port_info_get_midi_voices_orig
#define snd_seq_port_info_get_synth_voices snd_seq_port_info_get_synth_voices_orig
#define snd_seq_port_info_get_read_use snd_seq_port_info_get_read_use_orig
#define snd_seq_port_info_get_write_use snd_seq_port_info_get_write_use_orig
#define snd_seq_port_info_get_port_specified snd_seq_port_info_get_port_specified_orig
#define snd_seq_port_info_get_timestamping snd_seq_port_info_get_timestamping_orig
#define snd_seq_port_info_get_timestamp_real snd_seq_port_info_get_timestamp_real_orig
#define snd_seq_port_info_get_timestamp_queue snd_seq_port_info_get_timestamp_queue_orig
#define snd_seq_port_info_set_client snd_seq_port_info_set_client_orig
#define snd_seq_port_info_set_port snd_seq_port_info_set_port_orig
#define snd_seq_port_info_set_addr snd_seq_port_info_set_addr_orig
#define snd_seq_port_info_set_name snd_seq_port_info_set_name_orig
#define snd_seq_port_info_set_capability snd_seq_port_info_set_capability_orig
#define snd_seq_port_info_set_type snd_seq_port_info_set_type_orig
#define snd_seq_port_info_set_midi_channels snd_seq_port_info_set_midi_channels_orig
#define snd_seq_port_info_set_midi_voices snd_seq_port_info_set_midi_voices_orig
#define snd_seq_port_info_set_synth_voices snd_seq_port_info_set_synth_voices_orig
#define snd_seq_port_info_set_port_specified snd_seq_port_info_set_port_specified_orig
#define snd_seq_port_info_set_timestamping snd_seq_port_info_set_timestamping_orig
#define snd_seq_port_info_set_timestamp_real snd_seq_port_info_set_timestamp_real_orig
#define snd_seq_port_info_set_timestamp_queue snd_seq_port_info_set_timestamp_queue_orig
#define snd_seq_create_port snd_seq_create_port_orig
#define snd_seq_delete_port snd_seq_delete_port_orig
#define snd_seq_get_port_info snd_seq_get_port_info_orig
#define snd_seq_get_any_port_info snd_seq_get_any_port_info_orig
#define snd_seq_set_port_info snd_seq_set_port_info_orig
#define snd_seq_query_next_port snd_seq_query_next_port_orig
#define snd_seq_port_subscribe_sizeof snd_seq_port_subscribe_sizeof_orig
#define snd_seq_port_subscribe_malloc snd_seq_port_subscribe_malloc_orig
#define snd_seq_port_subscribe_free snd_seq_port_subscribe_free_orig
#define snd_seq_port_subscribe_copy snd_seq_port_subscribe_copy_orig
#define snd_seq_port_subscribe_get_sender snd_seq_port_subscribe_get_sender_orig
#define snd_seq_port_subscribe_get_dest snd_seq_port_subscribe_get_dest_orig
#define snd_seq_port_subscribe_get_queue snd_seq_port_subscribe_get_queue_orig
#define snd_seq_port_subscribe_get_exclusive snd_seq_port_subscribe_get_exclusive_orig
#define snd_seq_port_subscribe_get_time_update snd_seq_port_subscribe_get_time_update_orig
#define snd_seq_port_subscribe_get_time_real snd_seq_port_subscribe_get_time_real_orig
#define snd_seq_port_subscribe_set_sender snd_seq_port_subscribe_set_sender_orig
#define snd_seq_port_subscribe_set_dest snd_seq_port_subscribe_set_dest_orig
#define snd_seq_port_subscribe_set_queue snd_seq_port_subscribe_set_queue_orig
#define snd_seq_port_subscribe_set_exclusive snd_seq_port_subscribe_set_exclusive_orig
#define snd_seq_port_subscribe_set_time_update snd_seq_port_subscribe_set_time_update_orig
#define snd_seq_port_subscribe_set_time_real snd_seq_port_subscribe_set_time_real_orig
#define snd_seq_get_port_subscription snd_seq_get_port_subscription_orig
#define snd_seq_subscribe_port snd_seq_subscribe_port_orig
#define snd_seq_unsubscribe_port snd_seq_unsubscribe_port_orig
#define snd_seq_query_subscribe_sizeof snd_seq_query_subscribe_sizeof_orig
#define snd_seq_query_subscribe_malloc snd_seq_query_subscribe_malloc_orig
#define snd_seq_query_subscribe_free snd_seq_query_subscribe_free_orig
#define snd_seq_query_subscribe_copy snd_seq_query_subscribe_copy_orig
#define snd_seq_query_subscribe_get_client snd_seq_query_subscribe_get_client_orig
#define snd_seq_query_subscribe_get_port snd_seq_query_subscribe_get_port_orig
#define snd_seq_query_subscribe_get_root snd_seq_query_subscribe_get_root_orig
#define snd_seq_query_subscribe_get_type snd_seq_query_subscribe_get_type_orig
#define snd_seq_query_subscribe_get_index snd_seq_query_subscribe_get_index_orig
#define snd_seq_query_subscribe_get_num_subs snd_seq_query_subscribe_get_num_subs_orig
#define snd_seq_query_subscribe_get_addr snd_seq_query_subscribe_get_addr_orig
#define snd_seq_query_subscribe_get_queue snd_seq_query_subscribe_get_queue_orig
#define snd_seq_query_subscribe_get_exclusive snd_seq_query_subscribe_get_exclusive_orig
#define snd_seq_query_subscribe_get_time_update snd_seq_query_subscribe_get_time_update_orig
#define snd_seq_query_subscribe_get_time_real snd_seq_query_subscribe_get_time_real_orig
#define snd_seq_query_subscribe_set_client snd_seq_query_subscribe_set_client_orig
#define snd_seq_query_subscribe_set_port snd_seq_query_subscribe_set_port_orig
#define snd_seq_query_subscribe_set_root snd_seq_query_subscribe_set_root_orig
#define snd_seq_query_subscribe_set_type snd_seq_query_subscribe_set_type_orig
#define snd_seq_query_subscribe_set_index snd_seq_query_subscribe_set_index_orig
#define snd_seq_query_port_subscribers snd_seq_query_port_subscribers_orig
#define snd_seq_queue_info_sizeof snd_seq_queue_info_sizeof_orig
#define snd_seq_queue_info_malloc snd_seq_queue_info_malloc_orig
#define snd_seq_queue_info_free snd_seq_queue_info_free_orig
#define snd_seq_queue_info_copy snd_seq_queue_info_copy_orig
#define snd_seq_queue_info_get_queue snd_seq_queue_info_get_queue_orig
#define snd_seq_queue_info_get_name snd_seq_queue_info_get_name_orig
#define snd_seq_queue_info_get_owner snd_seq_queue_info_get_owner_orig
#define snd_seq_queue_info_get_locked snd_seq_queue_info_get_locked_orig
#define snd_seq_queue_info_get_flags snd_seq_queue_info_get_flags_orig
#define snd_seq_queue_info_set_name snd_seq_queue_info_set_name_orig
#define snd_seq_queue_info_set_owner snd_seq_queue_info_set_owner_orig
#define snd_seq_queue_info_set_locked snd_seq_queue_info_set_locked_orig
#define snd_seq_queue_info_set_flags snd_seq_queue_info_set_flags_orig
#define snd_seq_create_queue snd_seq_create_queue_orig
#define snd_seq_alloc_named_queue snd_seq_alloc_named_queue_orig
#define snd_seq_alloc_queue snd_seq_alloc_queue_orig
#define snd_seq_free_queue snd_seq_free_queue_orig
#define snd_seq_get_queue_info snd_seq_get_queue_info_orig
#define snd_seq_set_queue_info snd_seq_set_queue_info_orig
#define snd_seq_query_named_queue snd_seq_query_named_queue_orig
#define snd_seq_get_queue_usage snd_seq_get_queue_usage_orig
#define snd_seq_set_queue_usage snd_seq_set_queue_usage_orig
#define snd_seq_queue_status_sizeof snd_seq_queue_status_sizeof_orig
#define snd_seq_queue_status_malloc snd_seq_queue_status_malloc_orig
#define snd_seq_queue_status_free snd_seq_queue_status_free_orig
#define snd_seq_queue_status_copy snd_seq_queue_status_copy_orig
#define snd_seq_queue_status_get_queue snd_seq_queue_status_get_queue_orig
#define snd_seq_queue_status_get_events snd_seq_queue_status_get_events_orig
#define snd_seq_queue_status_get_tick_time snd_seq_queue_status_get_tick_time_orig
#define snd_seq_queue_status_get_real_time snd_seq_queue_status_get_real_time_orig
#define snd_seq_queue_status_get_status snd_seq_queue_status_get_status_orig
#define snd_seq_get_queue_status snd_seq_get_queue_status_orig
#define snd_seq_queue_tempo_sizeof snd_seq_queue_tempo_sizeof_orig
#define snd_seq_queue_tempo_malloc snd_seq_queue_tempo_malloc_orig
#define snd_seq_queue_tempo_free snd_seq_queue_tempo_free_orig
#define snd_seq_queue_tempo_copy snd_seq_queue_tempo_copy_orig
#define snd_seq_queue_tempo_get_queue snd_seq_queue_tempo_get_queue_orig
#define snd_seq_queue_tempo_get_tempo snd_seq_queue_tempo_get_tempo_orig
#define snd_seq_queue_tempo_get_ppq snd_seq_queue_tempo_get_ppq_orig
#define snd_seq_queue_tempo_get_skew snd_seq_queue_tempo_get_skew_orig
#define snd_seq_queue_tempo_get_skew_base snd_seq_queue_tempo_get_skew_base_orig
#define snd_seq_queue_tempo_set_tempo snd_seq_queue_tempo_set_tempo_orig
#define snd_seq_queue_tempo_set_ppq snd_seq_queue_tempo_set_ppq_orig
#define snd_seq_queue_tempo_set_skew snd_seq_queue_tempo_set_skew_orig
#define snd_seq_queue_tempo_set_skew_base snd_seq_queue_tempo_set_skew_base_orig
#define snd_seq_get_queue_tempo snd_seq_get_queue_tempo_orig
#define snd_seq_set_queue_tempo snd_seq_set_queue_tempo_orig
#define snd_seq_queue_timer_sizeof snd_seq_queue_timer_sizeof_orig
#define snd_seq_queue_timer_malloc snd_seq_queue_timer_malloc_orig
#define snd_seq_queue_timer_free snd_seq_queue_timer_free_orig
#define snd_seq_queue_timer_copy snd_seq_queue_timer_copy_orig
#define snd_seq_queue_timer_get_queue snd_seq_queue_timer_get_queue_orig
#define snd_seq_queue_timer_get_type snd_seq_queue_timer_get_type_orig
#define snd_seq_queue_timer_get_id snd_seq_queue_timer_get_id_orig
#define snd_seq_queue_timer_get_resolution snd_seq_queue_timer_get_resolution_orig
#define snd_seq_queue_timer_set_type snd_seq_queue_timer_set_type_orig
#define snd_seq_queue_timer_set_id snd_seq_queue_timer_set_id_orig
#define snd_seq_queue_timer_set_resolution snd_seq_queue_timer_set_resolution_orig
#define snd_seq_get_queue_timer snd_seq_get_queue_timer_orig
#define snd_seq_set_queue_timer snd_seq_set_queue_timer_orig
#define snd_seq_free_event snd_seq_free_event_orig
#define snd_seq_event_length snd_seq_event_length_orig
#define snd_seq_event_output snd_seq_event_output_orig
#define snd_seq_event_output_buffer snd_seq_event_output_buffer_orig
#define snd_seq_event_output_direct snd_seq_event_output_direct_orig
#define snd_seq_event_input snd_seq_event_input_orig
#define snd_seq_event_input_pending snd_seq_event_input_pending_orig
#define snd_seq_drain_output snd_seq_drain_output_orig
#define snd_seq_event_output_pending snd_seq_event_output_pending_orig
#define snd_seq_extract_output snd_seq_extract_output_orig
#define snd_seq_drop_output snd_seq_drop_output_orig
#define snd_seq_drop_output_buffer snd_seq_drop_output_buffer_orig
#define snd_seq_drop_input snd_seq_drop_input_orig
#define snd_seq_drop_input_buffer snd_seq_drop_input_buffer_orig
#define snd_seq_remove_events_sizeof snd_seq_remove_events_sizeof_orig
#define snd_seq_remove_events_malloc snd_seq_remove_events_malloc_orig
#define snd_seq_remove_events_free snd_seq_remove_events_free_orig
#define snd_seq_remove_events_copy snd_seq_remove_events_copy_orig
#define snd_seq_remove_events_get_condition snd_seq_remove_events_get_condition_orig
#define snd_seq_remove_events_get_queue snd_seq_remove_events_get_queue_orig
#define snd_seq_remove_events_get_time snd_seq_remove_events_get_time_orig
#define snd_seq_remove_events_get_dest snd_seq_remove_events_get_dest_orig
#define snd_seq_remove_events_get_channel snd_seq_remove_events_get_channel_orig
#define snd_seq_remove_events_get_event_type snd_seq_remove_events_get_event_type_orig
#define snd_seq_remove_events_get_tag snd_seq_remove_events_get_tag_orig
#define snd_seq_remove_events_set_condition snd_seq_remove_events_set_condition_orig
#define snd_seq_remove_events_set_queue snd_seq_remove_events_set_queue_orig
#define snd_seq_remove_events_set_time snd_seq_remove_events_set_time_orig
#define snd_seq_remove_events_set_dest snd_seq_remove_events_set_dest_orig
#define snd_seq_remove_events_set_channel snd_seq_remove_events_set_channel_orig
#define snd_seq_remove_events_set_event_type snd_seq_remove_events_set_event_type_orig
#define snd_seq_remove_events_set_tag snd_seq_remove_events_set_tag_orig
#define snd_seq_remove_events snd_seq_remove_events_orig
#define snd_seq_set_bit snd_seq_set_bit_orig
#define snd_seq_unset_bit snd_seq_unset_bit_orig
#define snd_seq_change_bit snd_seq_change_bit_orig
#define snd_seq_get_bit snd_seq_get_bit_orig
#define snd_seq_control_queue snd_seq_control_queue_orig
#define snd_seq_create_simple_port snd_seq_create_simple_port_orig
#define snd_seq_delete_simple_port snd_seq_delete_simple_port_orig
#define snd_seq_connect_from snd_seq_connect_from_orig
#define snd_seq_connect_to snd_seq_connect_to_orig
#define snd_seq_disconnect_from snd_seq_disconnect_from_orig
#define snd_seq_disconnect_to snd_seq_disconnect_to_orig
#define snd_seq_set_client_name snd_seq_set_client_name_orig
#define snd_seq_set_client_event_filter snd_seq_set_client_event_filter_orig
#define snd_seq_set_client_pool_output snd_seq_set_client_pool_output_orig
#define snd_seq_set_client_pool_output_room snd_seq_set_client_pool_output_room_orig
#define snd_seq_set_client_pool_input snd_seq_set_client_pool_input_orig
#define snd_seq_sync_output_queue snd_seq_sync_output_queue_orig
#define snd_seq_parse_address snd_seq_parse_address_orig
#define snd_seq_reset_pool_output snd_seq_reset_pool_output_orig
#define snd_seq_reset_pool_input snd_seq_reset_pool_input_orig
#define snd_midi_event_new snd_midi_event_new_orig
#define snd_midi_event_resize_buffer snd_midi_event_resize_buffer_orig
#define snd_midi_event_free snd_midi_event_free_orig
#define snd_midi_event_init snd_midi_event_init_orig
#define snd_midi_event_reset_encode snd_midi_event_reset_encode_orig
#define snd_midi_event_reset_decode snd_midi_event_reset_decode_orig
#define snd_midi_event_no_status snd_midi_event_no_status_orig
#define snd_midi_event_encode snd_midi_event_encode_orig
#define snd_midi_event_encode_byte snd_midi_event_encode_byte_orig
#define snd_midi_event_decode snd_midi_event_decode_orig
#include <alsa/asoundlib.h>
#undef snd_asoundlib_version
#undef snd_dlpath
#undef snd_dlopen
#undef snd_dlsym
#undef snd_dlclose
#undef snd_async_add_handler
#undef snd_async_del_handler
#undef snd_async_handler_get_fd
#undef snd_async_handler_get_signo
#undef snd_async_handler_get_callback_private
#undef snd_shm_area_create
#undef snd_shm_area_share
#undef snd_shm_area_destroy
#undef snd_user_file
#undef snd_input_stdio_open
#undef snd_input_stdio_attach
#undef snd_input_buffer_open
#undef snd_input_close
#undef snd_input_scanf
#undef snd_input_gets
#undef snd_input_getc
#undef snd_input_ungetc
#undef snd_output_stdio_open
#undef snd_output_stdio_attach
#undef snd_output_buffer_open
#undef snd_output_buffer_string
#undef snd_output_close
#undef snd_output_printf
#undef snd_output_vprintf
#undef snd_output_puts
#undef snd_output_putc
#undef snd_output_flush
#undef snd_strerror
#undef snd_lib_error_set_handler
#undef snd_lib_error_set_local
#undef snd_config_topdir
#undef snd_config_top
#undef snd_config_load
#undef snd_config_load_override
#undef snd_config_save
#undef snd_config_update
#undef snd_config_update_r
#undef snd_config_update_free
#undef snd_config_update_free_global
#undef snd_config_update_ref
#undef snd_config_ref
#undef snd_config_unref
#undef snd_config_search
#undef snd_config_searchv
#undef snd_config_search_definition
#undef snd_config_expand
#undef snd_config_evaluate
#undef snd_config_add
#undef snd_config_add_before
#undef snd_config_add_after
#undef snd_config_remove
#undef snd_config_delete
#undef snd_config_delete_compound_members
#undef snd_config_copy
#undef snd_config_make
#undef snd_config_make_integer
#undef snd_config_make_integer64
#undef snd_config_make_real
#undef snd_config_make_string
#undef snd_config_make_pointer
#undef snd_config_make_compound
#undef snd_config_imake_integer
#undef snd_config_imake_integer64
#undef snd_config_imake_real
#undef snd_config_imake_string
#undef snd_config_imake_safe_string
#undef snd_config_imake_pointer
#undef snd_config_get_type
#undef snd_config_is_array
#undef snd_config_set_id
#undef snd_config_set_integer
#undef snd_config_set_integer64
#undef snd_config_set_real
#undef snd_config_set_string
#undef snd_config_set_ascii
#undef snd_config_set_pointer
#undef snd_config_get_id
#undef snd_config_get_integer
#undef snd_config_get_integer64
#undef snd_config_get_real
#undef snd_config_get_ireal
#undef snd_config_get_string
#undef snd_config_get_ascii
#undef snd_config_get_pointer
#undef snd_config_test_id
#undef snd_config_iterator_first
#undef snd_config_iterator_next
#undef snd_config_iterator_end
#undef snd_config_iterator_entry
#undef snd_config_get_bool_ascii
#undef snd_config_get_bool
#undef snd_config_get_ctl_iface_ascii
#undef snd_config_get_ctl_iface
#undef snd_names_list
#undef snd_names_list_free
#undef snd_pcm_open
#undef snd_pcm_open_lconf
#undef snd_pcm_open_fallback
#undef snd_pcm_close
#undef snd_pcm_name
#undef snd_pcm_type
#undef snd_pcm_stream
#undef snd_pcm_poll_descriptors_count
#undef snd_pcm_poll_descriptors
#undef snd_pcm_poll_descriptors_revents
#undef snd_pcm_nonblock
#undef snd_async_add_pcm_handler
#undef snd_async_handler_get_pcm
#undef snd_pcm_info
#undef snd_pcm_hw_params_current
#undef snd_pcm_hw_params
#undef snd_pcm_hw_free
#undef snd_pcm_sw_params_current
#undef snd_pcm_sw_params
#undef snd_pcm_prepare
#undef snd_pcm_reset
#undef snd_pcm_status
#undef snd_pcm_start
#undef snd_pcm_drop
#undef snd_pcm_drain
#undef snd_pcm_pause
#undef snd_pcm_state
#undef snd_pcm_hwsync
#undef snd_pcm_delay
#undef snd_pcm_resume
#undef snd_pcm_htimestamp
#undef snd_pcm_avail
#undef snd_pcm_avail_update
#undef snd_pcm_avail_delay
#undef snd_pcm_rewindable
#undef snd_pcm_rewind
#undef snd_pcm_forwardable
#undef snd_pcm_forward
#undef snd_pcm_writei
#undef snd_pcm_readi
#undef snd_pcm_writen
#undef snd_pcm_readn
#undef snd_pcm_wait
#undef snd_pcm_link
#undef snd_pcm_unlink
#undef snd_pcm_query_chmaps
#undef snd_pcm_query_chmaps_from_hw
#undef snd_pcm_free_chmaps
#undef snd_pcm_get_chmap
#undef snd_pcm_set_chmap
#undef snd_pcm_chmap_type_name
#undef snd_pcm_chmap_name
#undef snd_pcm_chmap_long_name
#undef snd_pcm_chmap_print
#undef snd_pcm_chmap_from_string
#undef snd_pcm_chmap_parse_string
#undef snd_pcm_recover
#undef snd_pcm_set_params
#undef snd_pcm_get_params
#undef snd_pcm_info_sizeof
#undef snd_pcm_info_malloc
#undef snd_pcm_info_free
#undef snd_pcm_info_copy
#undef snd_pcm_info_get_device
#undef snd_pcm_info_get_subdevice
#undef snd_pcm_info_get_stream
#undef snd_pcm_info_get_card
#undef snd_pcm_info_get_id
#undef snd_pcm_info_get_name
#undef snd_pcm_info_get_subdevice_name
#undef snd_pcm_info_get_class
#undef snd_pcm_info_get_subclass
#undef snd_pcm_info_get_subdevices_count
#undef snd_pcm_info_get_subdevices_avail
#undef snd_pcm_info_get_sync
#undef snd_pcm_info_set_device
#undef snd_pcm_info_set_subdevice
#undef snd_pcm_info_set_stream
#undef snd_pcm_hw_params_any
#undef snd_pcm_hw_params_can_mmap_sample_resolution
#undef snd_pcm_hw_params_is_double
#undef snd_pcm_hw_params_is_batch
#undef snd_pcm_hw_params_is_block_transfer
#undef snd_pcm_hw_params_is_monotonic
#undef snd_pcm_hw_params_can_overrange
#undef snd_pcm_hw_params_can_pause
#undef snd_pcm_hw_params_can_resume
#undef snd_pcm_hw_params_is_half_duplex
#undef snd_pcm_hw_params_is_joint_duplex
#undef snd_pcm_hw_params_can_sync_start
#undef snd_pcm_hw_params_can_disable_period_wakeup
#undef snd_pcm_hw_params_supports_audio_wallclock_ts
#undef snd_pcm_hw_params_supports_audio_ts_type
#undef snd_pcm_hw_params_get_rate_numden
#undef snd_pcm_hw_params_get_sbits
#undef snd_pcm_hw_params_get_fifo_size
#undef snd_pcm_hw_params_sizeof
#undef snd_pcm_hw_params_malloc
#undef snd_pcm_hw_params_free
#undef snd_pcm_hw_params_copy
#undef snd_pcm_hw_params_get_access
#undef snd_pcm_hw_params_test_access
#undef snd_pcm_hw_params_set_access
#undef snd_pcm_hw_params_set_access_first
#undef snd_pcm_hw_params_set_access_last
#undef snd_pcm_hw_params_set_access_mask
#undef snd_pcm_hw_params_get_access_mask
#undef snd_pcm_hw_params_get_format
#undef snd_pcm_hw_params_test_format
#undef snd_pcm_hw_params_set_format
#undef snd_pcm_hw_params_set_format_first
#undef snd_pcm_hw_params_set_format_last
#undef snd_pcm_hw_params_set_format_mask
#undef snd_pcm_hw_params_get_format_mask
#undef snd_pcm_hw_params_get_subformat
#undef snd_pcm_hw_params_test_subformat
#undef snd_pcm_hw_params_set_subformat
#undef snd_pcm_hw_params_set_subformat_first
#undef snd_pcm_hw_params_set_subformat_last
#undef snd_pcm_hw_params_set_subformat_mask
#undef snd_pcm_hw_params_get_subformat_mask
#undef snd_pcm_hw_params_get_channels
#undef snd_pcm_hw_params_get_channels_min
#undef snd_pcm_hw_params_get_channels_max
#undef snd_pcm_hw_params_test_channels
#undef snd_pcm_hw_params_set_channels
#undef snd_pcm_hw_params_set_channels_min
#undef snd_pcm_hw_params_set_channels_max
#undef snd_pcm_hw_params_set_channels_minmax
#undef snd_pcm_hw_params_set_channels_near
#undef snd_pcm_hw_params_set_channels_first
#undef snd_pcm_hw_params_set_channels_last
#undef snd_pcm_hw_params_get_rate
#undef snd_pcm_hw_params_get_rate_min
#undef snd_pcm_hw_params_get_rate_max
#undef snd_pcm_hw_params_test_rate
#undef snd_pcm_hw_params_set_rate
#undef snd_pcm_hw_params_set_rate_min
#undef snd_pcm_hw_params_set_rate_max
#undef snd_pcm_hw_params_set_rate_minmax
#undef snd_pcm_hw_params_set_rate_near
#undef snd_pcm_hw_params_set_rate_first
#undef snd_pcm_hw_params_set_rate_last
#undef snd_pcm_hw_params_set_rate_resample
#undef snd_pcm_hw_params_get_rate_resample
#undef snd_pcm_hw_params_set_export_buffer
#undef snd_pcm_hw_params_get_export_buffer
#undef snd_pcm_hw_params_set_period_wakeup
#undef snd_pcm_hw_params_get_period_wakeup
#undef snd_pcm_hw_params_get_period_time
#undef snd_pcm_hw_params_get_period_time_min
#undef snd_pcm_hw_params_get_period_time_max
#undef snd_pcm_hw_params_test_period_time
#undef snd_pcm_hw_params_set_period_time
#undef snd_pcm_hw_params_set_period_time_min
#undef snd_pcm_hw_params_set_period_time_max
#undef snd_pcm_hw_params_set_period_time_minmax
#undef snd_pcm_hw_params_set_period_time_near
#undef snd_pcm_hw_params_set_period_time_first
#undef snd_pcm_hw_params_set_period_time_last
#undef snd_pcm_hw_params_get_period_size
#undef snd_pcm_hw_params_get_period_size_min
#undef snd_pcm_hw_params_get_period_size_max
#undef snd_pcm_hw_params_test_period_size
#undef snd_pcm_hw_params_set_period_size
#undef snd_pcm_hw_params_set_period_size_min
#undef snd_pcm_hw_params_set_period_size_max
#undef snd_pcm_hw_params_set_period_size_minmax
#undef snd_pcm_hw_params_set_period_size_near
#undef snd_pcm_hw_params_set_period_size_first
#undef snd_pcm_hw_params_set_period_size_last
#undef snd_pcm_hw_params_set_period_size_integer
#undef snd_pcm_hw_params_get_periods
#undef snd_pcm_hw_params_get_periods_min
#undef snd_pcm_hw_params_get_periods_max
#undef snd_pcm_hw_params_test_periods
#undef snd_pcm_hw_params_set_periods
#undef snd_pcm_hw_params_set_periods_min
#undef snd_pcm_hw_params_set_periods_max
#undef snd_pcm_hw_params_set_periods_minmax
#undef snd_pcm_hw_params_set_periods_near
#undef snd_pcm_hw_params_set_periods_first
#undef snd_pcm_hw_params_set_periods_last
#undef snd_pcm_hw_params_set_periods_integer
#undef snd_pcm_hw_params_get_buffer_time
#undef snd_pcm_hw_params_get_buffer_time_min
#undef snd_pcm_hw_params_get_buffer_time_max
#undef snd_pcm_hw_params_test_buffer_time
#undef snd_pcm_hw_params_set_buffer_time
#undef snd_pcm_hw_params_set_buffer_time_min
#undef snd_pcm_hw_params_set_buffer_time_max
#undef snd_pcm_hw_params_set_buffer_time_minmax
#undef snd_pcm_hw_params_set_buffer_time_near
#undef snd_pcm_hw_params_set_buffer_time_first
#undef snd_pcm_hw_params_set_buffer_time_last
#undef snd_pcm_hw_params_get_buffer_size
#undef snd_pcm_hw_params_get_buffer_size_min
#undef snd_pcm_hw_params_get_buffer_size_max
#undef snd_pcm_hw_params_test_buffer_size
#undef snd_pcm_hw_params_set_buffer_size
#undef snd_pcm_hw_params_set_buffer_size_min
#undef snd_pcm_hw_params_set_buffer_size_max
#undef snd_pcm_hw_params_set_buffer_size_minmax
#undef snd_pcm_hw_params_set_buffer_size_near
#undef snd_pcm_hw_params_set_buffer_size_first
#undef snd_pcm_hw_params_set_buffer_size_last
#undef snd_pcm_hw_params_get_min_align
#undef snd_pcm_sw_params_sizeof
#undef snd_pcm_sw_params_malloc
#undef snd_pcm_sw_params_free
#undef snd_pcm_sw_params_copy
#undef snd_pcm_sw_params_get_boundary
#undef snd_pcm_sw_params_set_tstamp_mode
#undef snd_pcm_sw_params_get_tstamp_mode
#undef snd_pcm_sw_params_set_tstamp_type
#undef snd_pcm_sw_params_get_tstamp_type
#undef snd_pcm_sw_params_set_avail_min
#undef snd_pcm_sw_params_get_avail_min
#undef snd_pcm_sw_params_set_period_event
#undef snd_pcm_sw_params_get_period_event
#undef snd_pcm_sw_params_set_start_threshold
#undef snd_pcm_sw_params_get_start_threshold
#undef snd_pcm_sw_params_set_stop_threshold
#undef snd_pcm_sw_params_get_stop_threshold
#undef snd_pcm_sw_params_set_silence_threshold
#undef snd_pcm_sw_params_get_silence_threshold
#undef snd_pcm_sw_params_set_silence_size
#undef snd_pcm_sw_params_get_silence_size
#undef snd_pcm_access_mask_sizeof
#undef snd_pcm_access_mask_malloc
#undef snd_pcm_access_mask_free
#undef snd_pcm_access_mask_copy
#undef snd_pcm_access_mask_none
#undef snd_pcm_access_mask_any
#undef snd_pcm_access_mask_test
#undef snd_pcm_access_mask_empty
#undef snd_pcm_access_mask_set
#undef snd_pcm_access_mask_reset
#undef snd_pcm_format_mask_sizeof
#undef snd_pcm_format_mask_malloc
#undef snd_pcm_format_mask_free
#undef snd_pcm_format_mask_copy
#undef snd_pcm_format_mask_none
#undef snd_pcm_format_mask_any
#undef snd_pcm_format_mask_test
#undef snd_pcm_format_mask_empty
#undef snd_pcm_format_mask_set
#undef snd_pcm_format_mask_reset
#undef snd_pcm_subformat_mask_sizeof
#undef snd_pcm_subformat_mask_malloc
#undef snd_pcm_subformat_mask_free
#undef snd_pcm_subformat_mask_copy
#undef snd_pcm_subformat_mask_none
#undef snd_pcm_subformat_mask_any
#undef snd_pcm_subformat_mask_test
#undef snd_pcm_subformat_mask_empty
#undef snd_pcm_subformat_mask_set
#undef snd_pcm_subformat_mask_reset
#undef snd_pcm_status_sizeof
#undef snd_pcm_status_malloc
#undef snd_pcm_status_free
#undef snd_pcm_status_copy
#undef snd_pcm_status_get_state
#undef snd_pcm_status_get_trigger_tstamp
#undef snd_pcm_status_get_trigger_htstamp
#undef snd_pcm_status_get_tstamp
#undef snd_pcm_status_get_htstamp
#undef snd_pcm_status_get_audio_htstamp
#undef snd_pcm_status_get_driver_htstamp
#undef snd_pcm_status_get_audio_htstamp_report
#undef snd_pcm_status_set_audio_htstamp_config
#undef snd_pcm_status_get_delay
#undef snd_pcm_status_get_avail
#undef snd_pcm_status_get_avail_max
#undef snd_pcm_status_get_overrange
#undef snd_pcm_type_name
#undef snd_pcm_stream_name
#undef snd_pcm_access_name
#undef snd_pcm_format_name
#undef snd_pcm_format_description
#undef snd_pcm_subformat_name
#undef snd_pcm_subformat_description
#undef snd_pcm_format_value
#undef snd_pcm_tstamp_mode_name
#undef snd_pcm_state_name
#undef snd_pcm_dump
#undef snd_pcm_dump_hw_setup
#undef snd_pcm_dump_sw_setup
#undef snd_pcm_dump_setup
#undef snd_pcm_hw_params_dump
#undef snd_pcm_sw_params_dump
#undef snd_pcm_status_dump
#undef snd_pcm_mmap_begin
#undef snd_pcm_mmap_commit
#undef snd_pcm_mmap_writei
#undef snd_pcm_mmap_readi
#undef snd_pcm_mmap_writen
#undef snd_pcm_mmap_readn
#undef snd_pcm_format_signed
#undef snd_pcm_format_unsigned
#undef snd_pcm_format_linear
#undef snd_pcm_format_float
#undef snd_pcm_format_little_endian
#undef snd_pcm_format_big_endian
#undef snd_pcm_format_cpu_endian
#undef snd_pcm_format_width
#undef snd_pcm_format_physical_width
#undef snd_pcm_build_linear_format
#undef snd_pcm_format_size
#undef snd_pcm_format_silence
#undef snd_pcm_format_silence_16
#undef snd_pcm_format_silence_32
#undef snd_pcm_format_silence_64
#undef snd_pcm_format_set_silence
#undef snd_pcm_bytes_to_frames
#undef snd_pcm_frames_to_bytes
#undef snd_pcm_bytes_to_samples
#undef snd_pcm_samples_to_bytes
#undef snd_pcm_area_silence
#undef snd_pcm_areas_silence
#undef snd_pcm_area_copy
#undef snd_pcm_areas_copy
#undef snd_pcm_areas_copy_wrap
#undef snd_pcm_hook_get_pcm
#undef snd_pcm_hook_get_private
#undef snd_pcm_hook_set_private
#undef snd_pcm_hook_add
#undef snd_pcm_hook_remove
#undef snd_pcm_meter_get_bufsize
#undef snd_pcm_meter_get_channels
#undef snd_pcm_meter_get_rate
#undef snd_pcm_meter_get_now
#undef snd_pcm_meter_get_boundary
#undef snd_pcm_meter_add_scope
#undef snd_pcm_meter_search_scope
#undef snd_pcm_scope_malloc
#undef snd_pcm_scope_set_ops
#undef snd_pcm_scope_set_name
#undef snd_pcm_scope_get_name
#undef snd_pcm_scope_get_callback_private
#undef snd_pcm_scope_set_callback_private
#undef snd_pcm_scope_s16_open
#undef snd_pcm_scope_s16_get_channel_buffer
#undef snd_spcm_init
#undef snd_spcm_init_duplex
#undef snd_spcm_init_get_params
#undef snd_pcm_start_mode_name
#undef snd_pcm_xrun_mode_name
#undef snd_pcm_sw_params_set_start_mode
#undef snd_pcm_sw_params_get_start_mode
#undef snd_pcm_sw_params_set_xrun_mode
#undef snd_pcm_sw_params_get_xrun_mode
#undef snd_pcm_sw_params_set_xfer_align
#undef snd_pcm_sw_params_get_xfer_align
#undef snd_pcm_sw_params_set_sleep_min
#undef snd_pcm_sw_params_get_sleep_min
#undef snd_pcm_hw_params_get_tick_time
#undef snd_pcm_hw_params_get_tick_time_min
#undef snd_pcm_hw_params_get_tick_time_max
#undef snd_pcm_hw_params_test_tick_time
#undef snd_pcm_hw_params_set_tick_time
#undef snd_pcm_hw_params_set_tick_time_min
#undef snd_pcm_hw_params_set_tick_time_max
#undef snd_pcm_hw_params_set_tick_time_minmax
#undef snd_pcm_hw_params_set_tick_time_near
#undef snd_pcm_hw_params_set_tick_time_first
#undef snd_pcm_hw_params_set_tick_time_last
#undef snd_rawmidi_open
#undef snd_rawmidi_open_lconf
#undef snd_rawmidi_close
#undef snd_rawmidi_poll_descriptors_count
#undef snd_rawmidi_poll_descriptors
#undef snd_rawmidi_poll_descriptors_revents
#undef snd_rawmidi_nonblock
#undef snd_rawmidi_info_sizeof
#undef snd_rawmidi_info_malloc
#undef snd_rawmidi_info_free
#undef snd_rawmidi_info_copy
#undef snd_rawmidi_info_get_device
#undef snd_rawmidi_info_get_subdevice
#undef snd_rawmidi_info_get_stream
#undef snd_rawmidi_info_get_card
#undef snd_rawmidi_info_get_flags
#undef snd_rawmidi_info_get_id
#undef snd_rawmidi_info_get_name
#undef snd_rawmidi_info_get_subdevice_name
#undef snd_rawmidi_info_get_subdevices_count
#undef snd_rawmidi_info_get_subdevices_avail
#undef snd_rawmidi_info_set_device
#undef snd_rawmidi_info_set_subdevice
#undef snd_rawmidi_info_set_stream
#undef snd_rawmidi_info
#undef snd_rawmidi_params_sizeof
#undef snd_rawmidi_params_malloc
#undef snd_rawmidi_params_free
#undef snd_rawmidi_params_copy
#undef snd_rawmidi_params_set_buffer_size
#undef snd_rawmidi_params_get_buffer_size
#undef snd_rawmidi_params_set_avail_min
#undef snd_rawmidi_params_get_avail_min
#undef snd_rawmidi_params_set_no_active_sensing
#undef snd_rawmidi_params_get_no_active_sensing
#undef snd_rawmidi_params
#undef snd_rawmidi_params_current
#undef snd_rawmidi_status_sizeof
#undef snd_rawmidi_status_malloc
#undef snd_rawmidi_status_free
#undef snd_rawmidi_status_copy
#undef snd_rawmidi_status_get_tstamp
#undef snd_rawmidi_status_get_avail
#undef snd_rawmidi_status_get_xruns
#undef snd_rawmidi_status
#undef snd_rawmidi_drain
#undef snd_rawmidi_drop
#undef snd_rawmidi_write
#undef snd_rawmidi_read
#undef snd_rawmidi_name
#undef snd_rawmidi_type
#undef snd_rawmidi_stream
#undef snd_timer_query_open
#undef snd_timer_query_open_lconf
#undef snd_timer_query_close
#undef snd_timer_query_next_device
#undef snd_timer_query_info
#undef snd_timer_query_params
#undef snd_timer_query_status
#undef snd_timer_open
#undef snd_timer_open_lconf
#undef snd_timer_close
#undef snd_async_add_timer_handler
#undef snd_async_handler_get_timer
#undef snd_timer_poll_descriptors_count
#undef snd_timer_poll_descriptors
#undef snd_timer_poll_descriptors_revents
#undef snd_timer_info
#undef snd_timer_params
#undef snd_timer_status
#undef snd_timer_start
#undef snd_timer_stop
#undef snd_timer_continue
#undef snd_timer_read
#undef snd_timer_id_sizeof
#undef snd_timer_id_malloc
#undef snd_timer_id_free
#undef snd_timer_id_copy
#undef snd_timer_id_set_class
#undef snd_timer_id_get_class
#undef snd_timer_id_set_sclass
#undef snd_timer_id_get_sclass
#undef snd_timer_id_set_card
#undef snd_timer_id_get_card
#undef snd_timer_id_set_device
#undef snd_timer_id_get_device
#undef snd_timer_id_set_subdevice
#undef snd_timer_id_get_subdevice
#undef snd_timer_ginfo_sizeof
#undef snd_timer_ginfo_malloc
#undef snd_timer_ginfo_free
#undef snd_timer_ginfo_copy
#undef snd_timer_ginfo_set_tid
#undef snd_timer_ginfo_get_tid
#undef snd_timer_ginfo_get_flags
#undef snd_timer_ginfo_get_card
#undef snd_timer_ginfo_get_id
#undef snd_timer_ginfo_get_name
#undef snd_timer_ginfo_get_resolution
#undef snd_timer_ginfo_get_resolution_min
#undef snd_timer_ginfo_get_resolution_max
#undef snd_timer_ginfo_get_clients
#undef snd_timer_info_sizeof
#undef snd_timer_info_malloc
#undef snd_timer_info_free
#undef snd_timer_info_copy
#undef snd_timer_info_is_slave
#undef snd_timer_info_get_card
#undef snd_timer_info_get_id
#undef snd_timer_info_get_name
#undef snd_timer_info_get_resolution
#undef snd_timer_params_sizeof
#undef snd_timer_params_malloc
#undef snd_timer_params_free
#undef snd_timer_params_copy
#undef snd_timer_params_set_auto_start
#undef snd_timer_params_get_auto_start
#undef snd_timer_params_set_exclusive
#undef snd_timer_params_get_exclusive
#undef snd_timer_params_set_early_event
#undef snd_timer_params_get_early_event
#undef snd_timer_params_set_ticks
#undef snd_timer_params_get_ticks
#undef snd_timer_params_set_queue_size
#undef snd_timer_params_get_queue_size
#undef snd_timer_params_set_filter
#undef snd_timer_params_get_filter
#undef snd_timer_status_sizeof
#undef snd_timer_status_malloc
#undef snd_timer_status_free
#undef snd_timer_status_copy
#undef snd_timer_status_get_timestamp
#undef snd_timer_status_get_resolution
#undef snd_timer_status_get_lost
#undef snd_timer_status_get_overrun
#undef snd_timer_status_get_queue
#undef snd_timer_info_get_ticks
#undef snd_hwdep_open
#undef snd_hwdep_close
#undef snd_hwdep_poll_descriptors
#undef snd_hwdep_poll_descriptors_count
#undef snd_hwdep_poll_descriptors_revents
#undef snd_hwdep_nonblock
#undef snd_hwdep_info
#undef snd_hwdep_dsp_status
#undef snd_hwdep_dsp_load
#undef snd_hwdep_ioctl
#undef snd_hwdep_write
#undef snd_hwdep_read
#undef snd_hwdep_info_sizeof
#undef snd_hwdep_info_malloc
#undef snd_hwdep_info_free
#undef snd_hwdep_info_copy
#undef snd_hwdep_info_get_device
#undef snd_hwdep_info_get_card
#undef snd_hwdep_info_get_id
#undef snd_hwdep_info_get_name
#undef snd_hwdep_info_get_iface
#undef snd_hwdep_info_set_device
#undef snd_hwdep_dsp_status_sizeof
#undef snd_hwdep_dsp_status_malloc
#undef snd_hwdep_dsp_status_free
#undef snd_hwdep_dsp_status_copy
#undef snd_hwdep_dsp_status_get_version
#undef snd_hwdep_dsp_status_get_id
#undef snd_hwdep_dsp_status_get_num_dsps
#undef snd_hwdep_dsp_status_get_dsp_loaded
#undef snd_hwdep_dsp_status_get_chip_ready
#undef snd_hwdep_dsp_image_sizeof
#undef snd_hwdep_dsp_image_malloc
#undef snd_hwdep_dsp_image_free
#undef snd_hwdep_dsp_image_copy
#undef snd_hwdep_dsp_image_get_index
#undef snd_hwdep_dsp_image_get_name
#undef snd_hwdep_dsp_image_get_image
#undef snd_hwdep_dsp_image_get_length
#undef snd_hwdep_dsp_image_set_index
#undef snd_hwdep_dsp_image_set_name
#undef snd_hwdep_dsp_image_set_image
#undef snd_hwdep_dsp_image_set_length
#undef snd_card_load
#undef snd_card_next
#undef snd_card_get_index
#undef snd_card_get_name
#undef snd_card_get_longname
#undef snd_device_name_hint
#undef snd_device_name_free_hint
#undef snd_device_name_get_hint
#undef snd_ctl_open
#undef snd_ctl_open_lconf
#undef snd_ctl_open_fallback
#undef snd_ctl_close
#undef snd_ctl_nonblock
#undef snd_async_add_ctl_handler
#undef snd_async_handler_get_ctl
#undef snd_ctl_poll_descriptors_count
#undef snd_ctl_poll_descriptors
#undef snd_ctl_poll_descriptors_revents
#undef snd_ctl_subscribe_events
#undef snd_ctl_card_info
#undef snd_ctl_elem_list
#undef snd_ctl_elem_info
#undef snd_ctl_elem_read
#undef snd_ctl_elem_write
#undef snd_ctl_elem_lock
#undef snd_ctl_elem_unlock
#undef snd_ctl_elem_tlv_read
#undef snd_ctl_elem_tlv_write
#undef snd_ctl_elem_tlv_command
#undef snd_ctl_hwdep_next_device
#undef snd_ctl_hwdep_info
#undef snd_ctl_pcm_next_device
#undef snd_ctl_pcm_info
#undef snd_ctl_pcm_prefer_subdevice
#undef snd_ctl_rawmidi_next_device
#undef snd_ctl_rawmidi_info
#undef snd_ctl_rawmidi_prefer_subdevice
#undef snd_ctl_set_power_state
#undef snd_ctl_get_power_state
#undef snd_ctl_read
#undef snd_ctl_wait
#undef snd_ctl_name
#undef snd_ctl_type
#undef snd_ctl_elem_type_name
#undef snd_ctl_elem_iface_name
#undef snd_ctl_event_type_name
#undef snd_ctl_event_elem_get_mask
#undef snd_ctl_event_elem_get_numid
#undef snd_ctl_event_elem_get_id
#undef snd_ctl_event_elem_get_interface
#undef snd_ctl_event_elem_get_device
#undef snd_ctl_event_elem_get_subdevice
#undef snd_ctl_event_elem_get_name
#undef snd_ctl_event_elem_get_index
#undef snd_ctl_elem_list_alloc_space
#undef snd_ctl_elem_list_free_space
#undef snd_ctl_ascii_elem_id_get
#undef snd_ctl_ascii_elem_id_parse
#undef snd_ctl_ascii_value_parse
#undef snd_ctl_elem_id_sizeof
#undef snd_ctl_elem_id_malloc
#undef snd_ctl_elem_id_free
#undef snd_ctl_elem_id_clear
#undef snd_ctl_elem_id_copy
#undef snd_ctl_elem_id_get_numid
#undef snd_ctl_elem_id_get_interface
#undef snd_ctl_elem_id_get_device
#undef snd_ctl_elem_id_get_subdevice
#undef snd_ctl_elem_id_get_name
#undef snd_ctl_elem_id_get_index
#undef snd_ctl_elem_id_set_numid
#undef snd_ctl_elem_id_set_interface
#undef snd_ctl_elem_id_set_device
#undef snd_ctl_elem_id_set_subdevice
#undef snd_ctl_elem_id_set_name
#undef snd_ctl_elem_id_set_index
#undef snd_ctl_card_info_sizeof
#undef snd_ctl_card_info_malloc
#undef snd_ctl_card_info_free
#undef snd_ctl_card_info_clear
#undef snd_ctl_card_info_copy
#undef snd_ctl_card_info_get_card
#undef snd_ctl_card_info_get_id
#undef snd_ctl_card_info_get_driver
#undef snd_ctl_card_info_get_name
#undef snd_ctl_card_info_get_longname
#undef snd_ctl_card_info_get_mixername
#undef snd_ctl_card_info_get_components
#undef snd_ctl_event_sizeof
#undef snd_ctl_event_malloc
#undef snd_ctl_event_free
#undef snd_ctl_event_clear
#undef snd_ctl_event_copy
#undef snd_ctl_event_get_type
#undef snd_ctl_elem_list_sizeof
#undef snd_ctl_elem_list_malloc
#undef snd_ctl_elem_list_free
#undef snd_ctl_elem_list_clear
#undef snd_ctl_elem_list_copy
#undef snd_ctl_elem_list_set_offset
#undef snd_ctl_elem_list_get_used
#undef snd_ctl_elem_list_get_count
#undef snd_ctl_elem_list_get_id
#undef snd_ctl_elem_list_get_numid
#undef snd_ctl_elem_list_get_interface
#undef snd_ctl_elem_list_get_device
#undef snd_ctl_elem_list_get_subdevice
#undef snd_ctl_elem_list_get_name
#undef snd_ctl_elem_list_get_index
#undef snd_ctl_elem_info_sizeof
#undef snd_ctl_elem_info_malloc
#undef snd_ctl_elem_info_free
#undef snd_ctl_elem_info_clear
#undef snd_ctl_elem_info_copy
#undef snd_ctl_elem_info_get_type
#undef snd_ctl_elem_info_is_readable
#undef snd_ctl_elem_info_is_writable
#undef snd_ctl_elem_info_is_volatile
#undef snd_ctl_elem_info_is_inactive
#undef snd_ctl_elem_info_is_locked
#undef snd_ctl_elem_info_is_tlv_readable
#undef snd_ctl_elem_info_is_tlv_writable
#undef snd_ctl_elem_info_is_tlv_commandable
#undef snd_ctl_elem_info_is_owner
#undef snd_ctl_elem_info_is_user
#undef snd_ctl_elem_info_get_owner
#undef snd_ctl_elem_info_get_count
#undef snd_ctl_elem_info_get_min
#undef snd_ctl_elem_info_get_max
#undef snd_ctl_elem_info_get_step
#undef snd_ctl_elem_info_get_min64
#undef snd_ctl_elem_info_get_max64
#undef snd_ctl_elem_info_get_step64
#undef snd_ctl_elem_info_get_items
#undef snd_ctl_elem_info_set_item
#undef snd_ctl_elem_info_get_item_name
#undef snd_ctl_elem_info_get_dimensions
#undef snd_ctl_elem_info_get_dimension
#undef snd_ctl_elem_info_set_dimension
#undef snd_ctl_elem_info_get_id
#undef snd_ctl_elem_info_get_numid
#undef snd_ctl_elem_info_get_interface
#undef snd_ctl_elem_info_get_device
#undef snd_ctl_elem_info_get_subdevice
#undef snd_ctl_elem_info_get_name
#undef snd_ctl_elem_info_get_index
#undef snd_ctl_elem_info_set_id
#undef snd_ctl_elem_info_set_numid
#undef snd_ctl_elem_info_set_interface
#undef snd_ctl_elem_info_set_device
#undef snd_ctl_elem_info_set_subdevice
#undef snd_ctl_elem_info_set_name
#undef snd_ctl_elem_info_set_index
#undef snd_ctl_add_integer_elem_set
#undef snd_ctl_add_integer64_elem_set
#undef snd_ctl_add_boolean_elem_set
#undef snd_ctl_add_enumerated_elem_set
#undef snd_ctl_add_bytes_elem_set
#undef snd_ctl_elem_add_integer
#undef snd_ctl_elem_add_integer64
#undef snd_ctl_elem_add_boolean
#undef snd_ctl_elem_add_enumerated
#undef snd_ctl_elem_add_iec958
#undef snd_ctl_elem_remove
#undef snd_ctl_elem_value_sizeof
#undef snd_ctl_elem_value_malloc
#undef snd_ctl_elem_value_free
#undef snd_ctl_elem_value_clear
#undef snd_ctl_elem_value_copy
#undef snd_ctl_elem_value_compare
#undef snd_ctl_elem_value_get_id
#undef snd_ctl_elem_value_get_numid
#undef snd_ctl_elem_value_get_interface
#undef snd_ctl_elem_value_get_device
#undef snd_ctl_elem_value_get_subdevice
#undef snd_ctl_elem_value_get_name
#undef snd_ctl_elem_value_get_index
#undef snd_ctl_elem_value_set_id
#undef snd_ctl_elem_value_set_numid
#undef snd_ctl_elem_value_set_interface
#undef snd_ctl_elem_value_set_device
#undef snd_ctl_elem_value_set_subdevice
#undef snd_ctl_elem_value_set_name
#undef snd_ctl_elem_value_set_index
#undef snd_ctl_elem_value_get_boolean
#undef snd_ctl_elem_value_get_integer
#undef snd_ctl_elem_value_get_integer64
#undef snd_ctl_elem_value_get_enumerated
#undef snd_ctl_elem_value_get_byte
#undef snd_ctl_elem_value_set_boolean
#undef snd_ctl_elem_value_set_integer
#undef snd_ctl_elem_value_set_integer64
#undef snd_ctl_elem_value_set_enumerated
#undef snd_ctl_elem_value_set_byte
#undef snd_ctl_elem_set_bytes
#undef snd_ctl_elem_value_get_bytes
#undef snd_ctl_elem_value_get_iec958
#undef snd_ctl_elem_value_set_iec958
#undef snd_tlv_parse_dB_info
#undef snd_tlv_get_dB_range
#undef snd_tlv_convert_to_dB
#undef snd_tlv_convert_from_dB
#undef snd_ctl_get_dB_range
#undef snd_ctl_convert_to_dB
#undef snd_ctl_convert_from_dB
#undef snd_hctl_compare_fast
#undef snd_hctl_open
#undef snd_hctl_open_ctl
#undef snd_hctl_close
#undef snd_hctl_nonblock
#undef snd_hctl_poll_descriptors_count
#undef snd_hctl_poll_descriptors
#undef snd_hctl_poll_descriptors_revents
#undef snd_hctl_get_count
#undef snd_hctl_set_compare
#undef snd_hctl_first_elem
#undef snd_hctl_last_elem
#undef snd_hctl_find_elem
#undef snd_hctl_set_callback
#undef snd_hctl_set_callback_private
#undef snd_hctl_get_callback_private
#undef snd_hctl_load
#undef snd_hctl_free
#undef snd_hctl_handle_events
#undef snd_hctl_name
#undef snd_hctl_wait
#undef snd_hctl_ctl
#undef snd_hctl_elem_next
#undef snd_hctl_elem_prev
#undef snd_hctl_elem_info
#undef snd_hctl_elem_read
#undef snd_hctl_elem_write
#undef snd_hctl_elem_tlv_read
#undef snd_hctl_elem_tlv_write
#undef snd_hctl_elem_tlv_command
#undef snd_hctl_elem_get_hctl
#undef snd_hctl_elem_get_id
#undef snd_hctl_elem_get_numid
#undef snd_hctl_elem_get_interface
#undef snd_hctl_elem_get_device
#undef snd_hctl_elem_get_subdevice
#undef snd_hctl_elem_get_name
#undef snd_hctl_elem_get_index
#undef snd_hctl_elem_set_callback
#undef snd_hctl_elem_get_callback_private
#undef snd_hctl_elem_set_callback_private
#undef snd_sctl_build
#undef snd_sctl_free
#undef snd_sctl_install
#undef snd_sctl_remove
#undef snd_mixer_open
#undef snd_mixer_close
#undef snd_mixer_first_elem
#undef snd_mixer_last_elem
#undef snd_mixer_handle_events
#undef snd_mixer_attach
#undef snd_mixer_attach_hctl
#undef snd_mixer_detach
#undef snd_mixer_detach_hctl
#undef snd_mixer_get_hctl
#undef snd_mixer_poll_descriptors_count
#undef snd_mixer_poll_descriptors
#undef snd_mixer_poll_descriptors_revents
#undef snd_mixer_load
#undef snd_mixer_free
#undef snd_mixer_wait
#undef snd_mixer_set_compare
#undef snd_mixer_set_callback
#undef snd_mixer_get_callback_private
#undef snd_mixer_set_callback_private
#undef snd_mixer_get_count
#undef snd_mixer_class_unregister
#undef snd_mixer_elem_next
#undef snd_mixer_elem_prev
#undef snd_mixer_elem_set_callback
#undef snd_mixer_elem_get_callback_private
#undef snd_mixer_elem_set_callback_private
#undef snd_mixer_elem_get_type
#undef snd_mixer_class_register
#undef snd_mixer_elem_new
#undef snd_mixer_elem_add
#undef snd_mixer_elem_remove
#undef snd_mixer_elem_free
#undef snd_mixer_elem_info
#undef snd_mixer_elem_value
#undef snd_mixer_elem_attach
#undef snd_mixer_elem_detach
#undef snd_mixer_elem_empty
#undef snd_mixer_elem_get_private
#undef snd_mixer_class_sizeof
#undef snd_mixer_class_malloc
#undef snd_mixer_class_free
#undef snd_mixer_class_copy
#undef snd_mixer_class_get_mixer
#undef snd_mixer_class_get_event
#undef snd_mixer_class_get_private
#undef snd_mixer_class_get_compare
#undef snd_mixer_class_set_event
#undef snd_mixer_class_set_private
#undef snd_mixer_class_set_private_free
#undef snd_mixer_class_set_compare
#undef snd_mixer_selem_channel_name
#undef snd_mixer_selem_register
#undef snd_mixer_selem_get_id
#undef snd_mixer_selem_get_name
#undef snd_mixer_selem_get_index
#undef snd_mixer_find_selem
#undef snd_mixer_selem_is_active
#undef snd_mixer_selem_is_playback_mono
#undef snd_mixer_selem_has_playback_channel
#undef snd_mixer_selem_is_capture_mono
#undef snd_mixer_selem_has_capture_channel
#undef snd_mixer_selem_get_capture_group
#undef snd_mixer_selem_has_common_volume
#undef snd_mixer_selem_has_playback_volume
#undef snd_mixer_selem_has_playback_volume_joined
#undef snd_mixer_selem_has_capture_volume
#undef snd_mixer_selem_has_capture_volume_joined
#undef snd_mixer_selem_has_common_switch
#undef snd_mixer_selem_has_playback_switch
#undef snd_mixer_selem_has_playback_switch_joined
#undef snd_mixer_selem_has_capture_switch
#undef snd_mixer_selem_has_capture_switch_joined
#undef snd_mixer_selem_has_capture_switch_exclusive
#undef snd_mixer_selem_ask_playback_vol_dB
#undef snd_mixer_selem_ask_capture_vol_dB
#undef snd_mixer_selem_ask_playback_dB_vol
#undef snd_mixer_selem_ask_capture_dB_vol
#undef snd_mixer_selem_get_playback_volume
#undef snd_mixer_selem_get_capture_volume
#undef snd_mixer_selem_get_playback_dB
#undef snd_mixer_selem_get_capture_dB
#undef snd_mixer_selem_get_playback_switch
#undef snd_mixer_selem_get_capture_switch
#undef snd_mixer_selem_set_playback_volume
#undef snd_mixer_selem_set_capture_volume
#undef snd_mixer_selem_set_playback_dB
#undef snd_mixer_selem_set_capture_dB
#undef snd_mixer_selem_set_playback_volume_all
#undef snd_mixer_selem_set_capture_volume_all
#undef snd_mixer_selem_set_playback_dB_all
#undef snd_mixer_selem_set_capture_dB_all
#undef snd_mixer_selem_set_playback_switch
#undef snd_mixer_selem_set_capture_switch
#undef snd_mixer_selem_set_playback_switch_all
#undef snd_mixer_selem_set_capture_switch_all
#undef snd_mixer_selem_get_playback_volume_range
#undef snd_mixer_selem_get_playback_dB_range
#undef snd_mixer_selem_set_playback_volume_range
#undef snd_mixer_selem_get_capture_volume_range
#undef snd_mixer_selem_get_capture_dB_range
#undef snd_mixer_selem_set_capture_volume_range
#undef snd_mixer_selem_is_enumerated
#undef snd_mixer_selem_is_enum_playback
#undef snd_mixer_selem_is_enum_capture
#undef snd_mixer_selem_get_enum_items
#undef snd_mixer_selem_get_enum_item_name
#undef snd_mixer_selem_get_enum_item
#undef snd_mixer_selem_set_enum_item
#undef snd_mixer_selem_id_sizeof
#undef snd_mixer_selem_id_malloc
#undef snd_mixer_selem_id_free
#undef snd_mixer_selem_id_copy
#undef snd_mixer_selem_id_get_name
#undef snd_mixer_selem_id_get_index
#undef snd_mixer_selem_id_set_name
#undef snd_mixer_selem_id_set_index
#undef snd_mixer_selem_id_parse
#undef snd_seq_open
#undef snd_seq_open_lconf
#undef snd_seq_name
#undef snd_seq_type
#undef snd_seq_close
#undef snd_seq_poll_descriptors_count
#undef snd_seq_poll_descriptors
#undef snd_seq_poll_descriptors_revents
#undef snd_seq_nonblock
#undef snd_seq_client_id
#undef snd_seq_get_output_buffer_size
#undef snd_seq_get_input_buffer_size
#undef snd_seq_set_output_buffer_size
#undef snd_seq_set_input_buffer_size
#undef snd_seq_system_info_sizeof
#undef snd_seq_system_info_malloc
#undef snd_seq_system_info_free
#undef snd_seq_system_info_copy
#undef snd_seq_system_info_get_queues
#undef snd_seq_system_info_get_clients
#undef snd_seq_system_info_get_ports
#undef snd_seq_system_info_get_channels
#undef snd_seq_system_info_get_cur_clients
#undef snd_seq_system_info_get_cur_queues
#undef snd_seq_system_info
#undef snd_seq_client_info_sizeof
#undef snd_seq_client_info_malloc
#undef snd_seq_client_info_free
#undef snd_seq_client_info_copy
#undef snd_seq_client_info_get_client
#undef snd_seq_client_info_get_type
#undef snd_seq_client_info_get_name
#undef snd_seq_client_info_get_broadcast_filter
#undef snd_seq_client_info_get_error_bounce
#undef snd_seq_client_info_get_card
#undef snd_seq_client_info_get_pid
#undef snd_seq_client_info_get_event_filter
#undef snd_seq_client_info_get_num_ports
#undef snd_seq_client_info_get_event_lost
#undef snd_seq_client_info_set_client
#undef snd_seq_client_info_set_name
#undef snd_seq_client_info_set_broadcast_filter
#undef snd_seq_client_info_set_error_bounce
#undef snd_seq_client_info_set_event_filter
#undef snd_seq_client_info_event_filter_clear
#undef snd_seq_client_info_event_filter_add
#undef snd_seq_client_info_event_filter_del
#undef snd_seq_client_info_event_filter_check
#undef snd_seq_get_client_info
#undef snd_seq_get_any_client_info
#undef snd_seq_set_client_info
#undef snd_seq_query_next_client
#undef snd_seq_client_pool_sizeof
#undef snd_seq_client_pool_malloc
#undef snd_seq_client_pool_free
#undef snd_seq_client_pool_copy
#undef snd_seq_client_pool_get_client
#undef snd_seq_client_pool_get_output_pool
#undef snd_seq_client_pool_get_input_pool
#undef snd_seq_client_pool_get_output_room
#undef snd_seq_client_pool_get_output_free
#undef snd_seq_client_pool_get_input_free
#undef snd_seq_client_pool_set_output_pool
#undef snd_seq_client_pool_set_input_pool
#undef snd_seq_client_pool_set_output_room
#undef snd_seq_get_client_pool
#undef snd_seq_set_client_pool
#undef snd_seq_port_info_sizeof
#undef snd_seq_port_info_malloc
#undef snd_seq_port_info_free
#undef snd_seq_port_info_copy
#undef snd_seq_port_info_get_client
#undef snd_seq_port_info_get_port
#undef snd_seq_port_info_get_addr
#undef snd_seq_port_info_get_name
#undef snd_seq_port_info_get_capability
#undef snd_seq_port_info_get_type
#undef snd_seq_port_info_get_midi_channels
#undef snd_seq_port_info_get_midi_voices
#undef snd_seq_port_info_get_synth_voices
#undef snd_seq_port_info_get_read_use
#undef snd_seq_port_info_get_write_use
#undef snd_seq_port_info_get_port_specified
#undef snd_seq_port_info_get_timestamping
#undef snd_seq_port_info_get_timestamp_real
#undef snd_seq_port_info_get_timestamp_queue
#undef snd_seq_port_info_set_client
#undef snd_seq_port_info_set_port
#undef snd_seq_port_info_set_addr
#undef snd_seq_port_info_set_name
#undef snd_seq_port_info_set_capability
#undef snd_seq_port_info_set_type
#undef snd_seq_port_info_set_midi_channels
#undef snd_seq_port_info_set_midi_voices
#undef snd_seq_port_info_set_synth_voices
#undef snd_seq_port_info_set_port_specified
#undef snd_seq_port_info_set_timestamping
#undef snd_seq_port_info_set_timestamp_real
#undef snd_seq_port_info_set_timestamp_queue
#undef snd_seq_create_port
#undef snd_seq_delete_port
#undef snd_seq_get_port_info
#undef snd_seq_get_any_port_info
#undef snd_seq_set_port_info
#undef snd_seq_query_next_port
#undef snd_seq_port_subscribe_sizeof
#undef snd_seq_port_subscribe_malloc
#undef snd_seq_port_subscribe_free
#undef snd_seq_port_subscribe_copy
#undef snd_seq_port_subscribe_get_sender
#undef snd_seq_port_subscribe_get_dest
#undef snd_seq_port_subscribe_get_queue
#undef snd_seq_port_subscribe_get_exclusive
#undef snd_seq_port_subscribe_get_time_update
#undef snd_seq_port_subscribe_get_time_real
#undef snd_seq_port_subscribe_set_sender
#undef snd_seq_port_subscribe_set_dest
#undef snd_seq_port_subscribe_set_queue
#undef snd_seq_port_subscribe_set_exclusive
#undef snd_seq_port_subscribe_set_time_update
#undef snd_seq_port_subscribe_set_time_real
#undef snd_seq_get_port_subscription
#undef snd_seq_subscribe_port
#undef snd_seq_unsubscribe_port
#undef snd_seq_query_subscribe_sizeof
#undef snd_seq_query_subscribe_malloc
#undef snd_seq_query_subscribe_free
#undef snd_seq_query_subscribe_copy
#undef snd_seq_query_subscribe_get_client
#undef snd_seq_query_subscribe_get_port
#undef snd_seq_query_subscribe_get_root
#undef snd_seq_query_subscribe_get_type
#undef snd_seq_query_subscribe_get_index
#undef snd_seq_query_subscribe_get_num_subs
#undef snd_seq_query_subscribe_get_addr
#undef snd_seq_query_subscribe_get_queue
#undef snd_seq_query_subscribe_get_exclusive
#undef snd_seq_query_subscribe_get_time_update
#undef snd_seq_query_subscribe_get_time_real
#undef snd_seq_query_subscribe_set_client
#undef snd_seq_query_subscribe_set_port
#undef snd_seq_query_subscribe_set_root
#undef snd_seq_query_subscribe_set_type
#undef snd_seq_query_subscribe_set_index
#undef snd_seq_query_port_subscribers
#undef snd_seq_queue_info_sizeof
#undef snd_seq_queue_info_malloc
#undef snd_seq_queue_info_free
#undef snd_seq_queue_info_copy
#undef snd_seq_queue_info_get_queue
#undef snd_seq_queue_info_get_name
#undef snd_seq_queue_info_get_owner
#undef snd_seq_queue_info_get_locked
#undef snd_seq_queue_info_get_flags
#undef snd_seq_queue_info_set_name
#undef snd_seq_queue_info_set_owner
#undef snd_seq_queue_info_set_locked
#undef snd_seq_queue_info_set_flags
#undef snd_seq_create_queue
#undef snd_seq_alloc_named_queue
#undef snd_seq_alloc_queue
#undef snd_seq_free_queue
#undef snd_seq_get_queue_info
#undef snd_seq_set_queue_info
#undef snd_seq_query_named_queue
#undef snd_seq_get_queue_usage
#undef snd_seq_set_queue_usage
#undef snd_seq_queue_status_sizeof
#undef snd_seq_queue_status_malloc
#undef snd_seq_queue_status_free
#undef snd_seq_queue_status_copy
#undef snd_seq_queue_status_get_queue
#undef snd_seq_queue_status_get_events
#undef snd_seq_queue_status_get_tick_time
#undef snd_seq_queue_status_get_real_time
#undef snd_seq_queue_status_get_status
#undef snd_seq_get_queue_status
#undef snd_seq_queue_tempo_sizeof
#undef snd_seq_queue_tempo_malloc
#undef snd_seq_queue_tempo_free
#undef snd_seq_queue_tempo_copy
#undef snd_seq_queue_tempo_get_queue
#undef snd_seq_queue_tempo_get_tempo
#undef snd_seq_queue_tempo_get_ppq
#undef snd_seq_queue_tempo_get_skew
#undef snd_seq_queue_tempo_get_skew_base
#undef snd_seq_queue_tempo_set_tempo
#undef snd_seq_queue_tempo_set_ppq
#undef snd_seq_queue_tempo_set_skew
#undef snd_seq_queue_tempo_set_skew_base
#undef snd_seq_get_queue_tempo
#undef snd_seq_set_queue_tempo
#undef snd_seq_queue_timer_sizeof
#undef snd_seq_queue_timer_malloc
#undef snd_seq_queue_timer_free
#undef snd_seq_queue_timer_copy
#undef snd_seq_queue_timer_get_queue
#undef snd_seq_queue_timer_get_type
#undef snd_seq_queue_timer_get_id
#undef snd_seq_queue_timer_get_resolution
#undef snd_seq_queue_timer_set_type
#undef snd_seq_queue_timer_set_id
#undef snd_seq_queue_timer_set_resolution
#undef snd_seq_get_queue_timer
#undef snd_seq_set_queue_timer
#undef snd_seq_free_event
#undef snd_seq_event_length
#undef snd_seq_event_output
#undef snd_seq_event_output_buffer
#undef snd_seq_event_output_direct
#undef snd_seq_event_input
#undef snd_seq_event_input_pending
#undef snd_seq_drain_output
#undef snd_seq_event_output_pending
#undef snd_seq_extract_output
#undef snd_seq_drop_output
#undef snd_seq_drop_output_buffer
#undef snd_seq_drop_input
#undef snd_seq_drop_input_buffer
#undef snd_seq_remove_events_sizeof
#undef snd_seq_remove_events_malloc
#undef snd_seq_remove_events_free
#undef snd_seq_remove_events_copy
#undef snd_seq_remove_events_get_condition
#undef snd_seq_remove_events_get_queue
#undef snd_seq_remove_events_get_time
#undef snd_seq_remove_events_get_dest
#undef snd_seq_remove_events_get_channel
#undef snd_seq_remove_events_get_event_type
#undef snd_seq_remove_events_get_tag
#undef snd_seq_remove_events_set_condition
#undef snd_seq_remove_events_set_queue
#undef snd_seq_remove_events_set_time
#undef snd_seq_remove_events_set_dest
#undef snd_seq_remove_events_set_channel
#undef snd_seq_remove_events_set_event_type
#undef snd_seq_remove_events_set_tag
#undef snd_seq_remove_events
#undef snd_seq_set_bit
#undef snd_seq_unset_bit
#undef snd_seq_change_bit
#undef snd_seq_get_bit
#undef snd_seq_control_queue
#undef snd_seq_create_simple_port
#undef snd_seq_delete_simple_port
#undef snd_seq_connect_from
#undef snd_seq_connect_to
#undef snd_seq_disconnect_from
#undef snd_seq_disconnect_to
#undef snd_seq_set_client_name
#undef snd_seq_set_client_event_filter
#undef snd_seq_set_client_pool_output
#undef snd_seq_set_client_pool_output_room
#undef snd_seq_set_client_pool_input
#undef snd_seq_sync_output_queue
#undef snd_seq_parse_address
#undef snd_seq_reset_pool_output
#undef snd_seq_reset_pool_input
#undef snd_midi_event_new
#undef snd_midi_event_resize_buffer
#undef snd_midi_event_free
#undef snd_midi_event_init
#undef snd_midi_event_reset_encode
#undef snd_midi_event_reset_decode
#undef snd_midi_event_no_status
#undef snd_midi_event_encode
#undef snd_midi_event_encode_byte
#undef snd_midi_event_decode
#ifdef __cplusplus
extern "C" {
#endif
extern const char* (*snd_asoundlib_version)( void);
extern int (*snd_dlpath)( char*, size_t,const char*);
extern void* (*snd_dlopen)(const char*, int, char*, size_t);
extern void* (*snd_dlsym)( void*,const char*,const char*);
extern int (*snd_dlclose)( void*);
extern int (*snd_async_add_handler)( snd_async_handler_t**, int, snd_async_callback_t, void*);
extern int (*snd_async_del_handler)( snd_async_handler_t*);
extern int (*snd_async_handler_get_fd)( snd_async_handler_t*);
extern int (*snd_async_handler_get_signo)( snd_async_handler_t*);
extern void* (*snd_async_handler_get_callback_private)( snd_async_handler_t*);
extern struct snd_shm_area* (*snd_shm_area_create)( int, void*);
extern struct snd_shm_area* (*snd_shm_area_share)(struct snd_shm_area*);
extern int (*snd_shm_area_destroy)(struct snd_shm_area*);
extern int (*snd_user_file)(const char*, char**);
extern int (*snd_input_stdio_open)( snd_input_t**,const char*,const char*);
extern int (*snd_input_stdio_attach)( snd_input_t**, FILE*, int);
extern int (*snd_input_buffer_open)( snd_input_t**,const char*, ssize_t);
extern int (*snd_input_close)( snd_input_t*);
extern int (*snd_input_scanf)( snd_input_t*,const char*,...);
extern char* (*snd_input_gets)( snd_input_t*, char*, size_t);
extern int (*snd_input_getc)( snd_input_t*);
extern int (*snd_input_ungetc)( snd_input_t*, int);
extern int (*snd_output_stdio_open)( snd_output_t**,const char*,const char*);
extern int (*snd_output_stdio_attach)( snd_output_t**, FILE*, int);
extern int (*snd_output_buffer_open)( snd_output_t**);
extern size_t (*snd_output_buffer_string)( snd_output_t*, char**);
extern int (*snd_output_close)( snd_output_t*);
extern int (*snd_output_printf)( snd_output_t*,const char*,...);
extern int (*snd_output_vprintf)( snd_output_t*,const char*, va_list);
extern int (*snd_output_puts)( snd_output_t*,const char*);
extern int (*snd_output_putc)( snd_output_t*, int);
extern int (*snd_output_flush)( snd_output_t*);
extern const char* (*snd_strerror)( int);
extern int (*snd_lib_error_set_handler)( snd_lib_error_handler_t);
extern snd_local_error_handler_t (*snd_lib_error_set_local)( snd_local_error_handler_t);
extern const char* (*snd_config_topdir)( void);
extern int (*snd_config_top)( snd_config_t**);
extern int (*snd_config_load)( snd_config_t*, snd_input_t*);
extern int (*snd_config_load_override)( snd_config_t*, snd_input_t*);
extern int (*snd_config_save)( snd_config_t*, snd_output_t*);
extern int (*snd_config_update)( void);
extern int (*snd_config_update_r)( snd_config_t**, snd_config_update_t**,const char*);
extern int (*snd_config_update_free)( snd_config_update_t*);
extern int (*snd_config_update_free_global)( void);
extern int (*snd_config_update_ref)( snd_config_t**);
extern void (*snd_config_ref)( snd_config_t*);
extern void (*snd_config_unref)( snd_config_t*);
extern int (*snd_config_search)( snd_config_t*,const char*, snd_config_t**);
extern int (*snd_config_searchv)( snd_config_t*, snd_config_t**,...);
extern int (*snd_config_search_definition)( snd_config_t*,const char*,const char*, snd_config_t**);
extern int (*snd_config_expand)( snd_config_t*, snd_config_t*,const char*, snd_config_t*, snd_config_t**);
extern int (*snd_config_evaluate)( snd_config_t*, snd_config_t*, snd_config_t*, snd_config_t**);
extern int (*snd_config_add)( snd_config_t*, snd_config_t*);
extern int (*snd_config_add_before)( snd_config_t*, snd_config_t*);
extern int (*snd_config_add_after)( snd_config_t*, snd_config_t*);
extern int (*snd_config_remove)( snd_config_t*);
extern int (*snd_config_delete)( snd_config_t*);
extern int (*snd_config_delete_compound_members)(const snd_config_t*);
extern int (*snd_config_copy)( snd_config_t**, snd_config_t*);
extern int (*snd_config_make)( snd_config_t**,const char*, snd_config_type_t);
extern int (*snd_config_make_integer)( snd_config_t**,const char*);
extern int (*snd_config_make_integer64)( snd_config_t**,const char*);
extern int (*snd_config_make_real)( snd_config_t**,const char*);
extern int (*snd_config_make_string)( snd_config_t**,const char*);
extern int (*snd_config_make_pointer)( snd_config_t**,const char*);
extern int (*snd_config_make_compound)( snd_config_t**,const char*, int);
extern int (*snd_config_imake_integer)( snd_config_t**,const char*,const long);
extern int (*snd_config_imake_integer64)( snd_config_t**,const char*,const long long);
extern int (*snd_config_imake_real)( snd_config_t**,const char*,const double);
extern int (*snd_config_imake_string)( snd_config_t**,const char*,const char*);
extern int (*snd_config_imake_safe_string)( snd_config_t**,const char*,const char*);
extern int (*snd_config_imake_pointer)( snd_config_t**,const char*,const void*);
extern snd_config_type_t (*snd_config_get_type)(const snd_config_t*);
extern int (*snd_config_is_array)(const snd_config_t*);
extern int (*snd_config_set_id)( snd_config_t*,const char*);
extern int (*snd_config_set_integer)( snd_config_t*, long);
extern int (*snd_config_set_integer64)( snd_config_t*, long long);
extern int (*snd_config_set_real)( snd_config_t*, double);
extern int (*snd_config_set_string)( snd_config_t*,const char*);
extern int (*snd_config_set_ascii)( snd_config_t*,const char*);
extern int (*snd_config_set_pointer)( snd_config_t*,const void*);
extern int (*snd_config_get_id)(const snd_config_t*,const char**);
extern int (*snd_config_get_integer)(const snd_config_t*, long*);
extern int (*snd_config_get_integer64)(const snd_config_t*, long long*);
extern int (*snd_config_get_real)(const snd_config_t*, double*);
extern int (*snd_config_get_ireal)(const snd_config_t*, double*);
extern int (*snd_config_get_string)(const snd_config_t*,const char**);
extern int (*snd_config_get_ascii)(const snd_config_t*, char**);
extern int (*snd_config_get_pointer)(const snd_config_t*,const void**);
extern int (*snd_config_test_id)(const snd_config_t*,const char*);
extern snd_config_iterator_t (*snd_config_iterator_first)(const snd_config_t*);
extern snd_config_iterator_t (*snd_config_iterator_next)(const snd_config_iterator_t);
extern snd_config_iterator_t (*snd_config_iterator_end)(const snd_config_t*);
extern snd_config_t* (*snd_config_iterator_entry)(const snd_config_iterator_t);
extern int (*snd_config_get_bool_ascii)(const char*);
extern int (*snd_config_get_bool)(const snd_config_t*);
extern int (*snd_config_get_ctl_iface_ascii)(const char*);
extern int (*snd_config_get_ctl_iface)(const snd_config_t*);
extern int (*snd_names_list)(const char*, snd_devname_t**);
extern void (*snd_names_list_free)( snd_devname_t*);
extern int (*snd_pcm_open)( snd_pcm_t**,const char*, snd_pcm_stream_t, int);
extern int (*snd_pcm_open_lconf)( snd_pcm_t**,const char*, snd_pcm_stream_t, int, snd_config_t*);
extern int (*snd_pcm_open_fallback)( snd_pcm_t**, snd_config_t*,const char*,const char*, snd_pcm_stream_t, int);
extern int (*snd_pcm_close)( snd_pcm_t*);
extern const char* (*snd_pcm_name)( snd_pcm_t*);
extern snd_pcm_type_t (*snd_pcm_type)( snd_pcm_t*);
extern snd_pcm_stream_t (*snd_pcm_stream)( snd_pcm_t*);
extern int (*snd_pcm_poll_descriptors_count)( snd_pcm_t*);
extern int (*snd_pcm_poll_descriptors)( snd_pcm_t*,struct pollfd*, unsigned int);
extern int (*snd_pcm_poll_descriptors_revents)( snd_pcm_t*,struct pollfd*, unsigned int, unsigned short*);
extern int (*snd_pcm_nonblock)( snd_pcm_t*, int);
extern int (*snd_async_add_pcm_handler)( snd_async_handler_t**, snd_pcm_t*, snd_async_callback_t, void*);
extern snd_pcm_t* (*snd_async_handler_get_pcm)( snd_async_handler_t*);
extern int (*snd_pcm_info)( snd_pcm_t*, snd_pcm_info_t*);
extern int (*snd_pcm_hw_params_current)( snd_pcm_t*, snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params)( snd_pcm_t*, snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_free)( snd_pcm_t*);
extern int (*snd_pcm_sw_params_current)( snd_pcm_t*, snd_pcm_sw_params_t*);
extern int (*snd_pcm_sw_params)( snd_pcm_t*, snd_pcm_sw_params_t*);
extern int (*snd_pcm_prepare)( snd_pcm_t*);
extern int (*snd_pcm_reset)( snd_pcm_t*);
extern int (*snd_pcm_status)( snd_pcm_t*, snd_pcm_status_t*);
extern int (*snd_pcm_start)( snd_pcm_t*);
extern int (*snd_pcm_drop)( snd_pcm_t*);
extern int (*snd_pcm_drain)( snd_pcm_t*);
extern int (*snd_pcm_pause)( snd_pcm_t*, int);
extern snd_pcm_state_t (*snd_pcm_state)( snd_pcm_t*);
extern int (*snd_pcm_hwsync)( snd_pcm_t*);
extern int (*snd_pcm_delay)( snd_pcm_t*, snd_pcm_sframes_t*);
extern int (*snd_pcm_resume)( snd_pcm_t*);
extern int (*snd_pcm_htimestamp)( snd_pcm_t*, snd_pcm_uframes_t*, snd_htimestamp_t*);
extern snd_pcm_sframes_t (*snd_pcm_avail)( snd_pcm_t*);
extern snd_pcm_sframes_t (*snd_pcm_avail_update)( snd_pcm_t*);
extern int (*snd_pcm_avail_delay)( snd_pcm_t*, snd_pcm_sframes_t*, snd_pcm_sframes_t*);
extern snd_pcm_sframes_t (*snd_pcm_rewindable)( snd_pcm_t*);
extern snd_pcm_sframes_t (*snd_pcm_rewind)( snd_pcm_t*, snd_pcm_uframes_t);
extern snd_pcm_sframes_t (*snd_pcm_forwardable)( snd_pcm_t*);
extern snd_pcm_sframes_t (*snd_pcm_forward)( snd_pcm_t*, snd_pcm_uframes_t);
extern snd_pcm_sframes_t (*snd_pcm_writei)( snd_pcm_t*,const void*, snd_pcm_uframes_t);
extern snd_pcm_sframes_t (*snd_pcm_readi)( snd_pcm_t*, void*, snd_pcm_uframes_t);
extern snd_pcm_sframes_t (*snd_pcm_writen)( snd_pcm_t*, void**, snd_pcm_uframes_t);
extern snd_pcm_sframes_t (*snd_pcm_readn)( snd_pcm_t*, void**, snd_pcm_uframes_t);
extern int (*snd_pcm_wait)( snd_pcm_t*, int);
extern int (*snd_pcm_link)( snd_pcm_t*, snd_pcm_t*);
extern int (*snd_pcm_unlink)( snd_pcm_t*);
extern snd_pcm_chmap_query_t** (*snd_pcm_query_chmaps)( snd_pcm_t*);
extern snd_pcm_chmap_query_t** (*snd_pcm_query_chmaps_from_hw)( int, int, int, snd_pcm_stream_t);
extern void (*snd_pcm_free_chmaps)( snd_pcm_chmap_query_t**);
extern snd_pcm_chmap_t* (*snd_pcm_get_chmap)( snd_pcm_t*);
extern int (*snd_pcm_set_chmap)( snd_pcm_t*,const snd_pcm_chmap_t*);
extern const char* (*snd_pcm_chmap_type_name)(enum snd_pcm_chmap_type);
extern const char* (*snd_pcm_chmap_name)(enum snd_pcm_chmap_position);
extern const char* (*snd_pcm_chmap_long_name)(enum snd_pcm_chmap_position);
extern int (*snd_pcm_chmap_print)(const snd_pcm_chmap_t*, size_t, char*);
extern unsigned int (*snd_pcm_chmap_from_string)(const char*);
extern snd_pcm_chmap_t* (*snd_pcm_chmap_parse_string)(const char*);
extern int (*snd_pcm_recover)( snd_pcm_t*, int, int);
extern int (*snd_pcm_set_params)( snd_pcm_t*, snd_pcm_format_t, snd_pcm_access_t, unsigned int, unsigned int, int, unsigned int);
extern int (*snd_pcm_get_params)( snd_pcm_t*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
extern size_t (*snd_pcm_info_sizeof)( void);
extern int (*snd_pcm_info_malloc)( snd_pcm_info_t**);
extern void (*snd_pcm_info_free)( snd_pcm_info_t*);
extern void (*snd_pcm_info_copy)( snd_pcm_info_t*,const snd_pcm_info_t*);
extern unsigned int (*snd_pcm_info_get_device)(const snd_pcm_info_t*);
extern unsigned int (*snd_pcm_info_get_subdevice)(const snd_pcm_info_t*);
extern snd_pcm_stream_t (*snd_pcm_info_get_stream)(const snd_pcm_info_t*);
extern int (*snd_pcm_info_get_card)(const snd_pcm_info_t*);
extern const char* (*snd_pcm_info_get_id)(const snd_pcm_info_t*);
extern const char* (*snd_pcm_info_get_name)(const snd_pcm_info_t*);
extern const char* (*snd_pcm_info_get_subdevice_name)(const snd_pcm_info_t*);
extern snd_pcm_class_t (*snd_pcm_info_get_class)(const snd_pcm_info_t*);
extern snd_pcm_subclass_t (*snd_pcm_info_get_subclass)(const snd_pcm_info_t*);
extern unsigned int (*snd_pcm_info_get_subdevices_count)(const snd_pcm_info_t*);
extern unsigned int (*snd_pcm_info_get_subdevices_avail)(const snd_pcm_info_t*);
extern snd_pcm_sync_id_t (*snd_pcm_info_get_sync)(const snd_pcm_info_t*);
extern void (*snd_pcm_info_set_device)( snd_pcm_info_t*, unsigned int);
extern void (*snd_pcm_info_set_subdevice)( snd_pcm_info_t*, unsigned int);
extern void (*snd_pcm_info_set_stream)( snd_pcm_info_t*, snd_pcm_stream_t);
extern int (*snd_pcm_hw_params_any)( snd_pcm_t*, snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_can_mmap_sample_resolution)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_is_double)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_is_batch)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_is_block_transfer)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_is_monotonic)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_can_overrange)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_can_pause)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_can_resume)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_is_half_duplex)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_is_joint_duplex)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_can_sync_start)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_can_disable_period_wakeup)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_supports_audio_wallclock_ts)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_supports_audio_ts_type)(const snd_pcm_hw_params_t*, int);
extern int (*snd_pcm_hw_params_get_rate_numden)(const snd_pcm_hw_params_t*, unsigned int*, unsigned int*);
extern int (*snd_pcm_hw_params_get_sbits)(const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_get_fifo_size)(const snd_pcm_hw_params_t*);
extern size_t (*snd_pcm_hw_params_sizeof)( void);
extern int (*snd_pcm_hw_params_malloc)( snd_pcm_hw_params_t**);
extern void (*snd_pcm_hw_params_free)( snd_pcm_hw_params_t*);
extern void (*snd_pcm_hw_params_copy)( snd_pcm_hw_params_t*,const snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_get_access)(const snd_pcm_hw_params_t*, snd_pcm_access_t*);
extern int (*snd_pcm_hw_params_test_access)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t);
extern int (*snd_pcm_hw_params_set_access)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t);
extern int (*snd_pcm_hw_params_set_access_first)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t*);
extern int (*snd_pcm_hw_params_set_access_last)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_t*);
extern int (*snd_pcm_hw_params_set_access_mask)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_access_mask_t*);
extern int (*snd_pcm_hw_params_get_access_mask)( snd_pcm_hw_params_t*, snd_pcm_access_mask_t*);
extern int (*snd_pcm_hw_params_get_format)(const snd_pcm_hw_params_t*, snd_pcm_format_t*);
extern int (*snd_pcm_hw_params_test_format)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t);
extern int (*snd_pcm_hw_params_set_format)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t);
extern int (*snd_pcm_hw_params_set_format_first)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t*);
extern int (*snd_pcm_hw_params_set_format_last)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_t*);
extern int (*snd_pcm_hw_params_set_format_mask)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_format_mask_t*);
extern void (*snd_pcm_hw_params_get_format_mask)( snd_pcm_hw_params_t*, snd_pcm_format_mask_t*);
extern int (*snd_pcm_hw_params_get_subformat)(const snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
extern int (*snd_pcm_hw_params_test_subformat)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t);
extern int (*snd_pcm_hw_params_set_subformat)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t);
extern int (*snd_pcm_hw_params_set_subformat_first)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
extern int (*snd_pcm_hw_params_set_subformat_last)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_t*);
extern int (*snd_pcm_hw_params_set_subformat_mask)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_subformat_mask_t*);
extern void (*snd_pcm_hw_params_get_subformat_mask)( snd_pcm_hw_params_t*, snd_pcm_subformat_mask_t*);
extern int (*snd_pcm_hw_params_get_channels)(const snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_get_channels_min)(const snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_get_channels_max)(const snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_test_channels)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
extern int (*snd_pcm_hw_params_set_channels)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
extern int (*snd_pcm_hw_params_set_channels_min)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_set_channels_max)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_set_channels_minmax)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, unsigned int*);
extern int (*snd_pcm_hw_params_set_channels_near)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_set_channels_first)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_set_channels_last)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_get_rate)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_rate_min)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_rate_max)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_test_rate)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_rate)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_rate_min)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_rate_max)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_rate_minmax)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_rate_near)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_rate_first)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_rate_last)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_rate_resample)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
extern int (*snd_pcm_hw_params_get_rate_resample)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_set_export_buffer)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
extern int (*snd_pcm_hw_params_get_export_buffer)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_set_period_wakeup)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int);
extern int (*snd_pcm_hw_params_get_period_wakeup)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_get_period_time)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_period_time_min)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_period_time_max)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_test_period_time)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_period_time)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_period_time_min)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_period_time_max)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_period_time_minmax)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_period_time_near)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_period_time_first)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_period_time_last)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_period_size)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
extern int (*snd_pcm_hw_params_get_period_size_min)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
extern int (*snd_pcm_hw_params_get_period_size_max)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
extern int (*snd_pcm_hw_params_test_period_size)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t, int);
extern int (*snd_pcm_hw_params_set_period_size)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t, int);
extern int (*snd_pcm_hw_params_set_period_size_min)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
extern int (*snd_pcm_hw_params_set_period_size_max)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
extern int (*snd_pcm_hw_params_set_period_size_minmax)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*, snd_pcm_uframes_t*, int*);
extern int (*snd_pcm_hw_params_set_period_size_near)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
extern int (*snd_pcm_hw_params_set_period_size_first)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
extern int (*snd_pcm_hw_params_set_period_size_last)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, int*);
extern int (*snd_pcm_hw_params_set_period_size_integer)( snd_pcm_t*, snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_get_periods)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_periods_min)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_periods_max)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_test_periods)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_periods)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_periods_min)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_periods_max)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_periods_minmax)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_periods_near)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_periods_first)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_periods_last)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_periods_integer)( snd_pcm_t*, snd_pcm_hw_params_t*);
extern int (*snd_pcm_hw_params_get_buffer_time)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_buffer_time_min)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_buffer_time_max)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_test_buffer_time)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_buffer_time)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_buffer_time_min)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_buffer_time_max)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_buffer_time_minmax)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_buffer_time_near)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_buffer_time_first)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_buffer_time_last)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_buffer_size)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_hw_params_get_buffer_size_min)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_hw_params_get_buffer_size_max)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_hw_params_test_buffer_size)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t);
extern int (*snd_pcm_hw_params_set_buffer_size)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t);
extern int (*snd_pcm_hw_params_set_buffer_size_min)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_hw_params_set_buffer_size_max)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_hw_params_set_buffer_size_minmax)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_hw_params_set_buffer_size_near)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_hw_params_set_buffer_size_first)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_hw_params_set_buffer_size_last)( snd_pcm_t*, snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_hw_params_get_min_align)(const snd_pcm_hw_params_t*, snd_pcm_uframes_t*);
extern size_t (*snd_pcm_sw_params_sizeof)( void);
extern int (*snd_pcm_sw_params_malloc)( snd_pcm_sw_params_t**);
extern void (*snd_pcm_sw_params_free)( snd_pcm_sw_params_t*);
extern void (*snd_pcm_sw_params_copy)( snd_pcm_sw_params_t*,const snd_pcm_sw_params_t*);
extern int (*snd_pcm_sw_params_get_boundary)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_sw_params_set_tstamp_mode)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_tstamp_t);
extern int (*snd_pcm_sw_params_get_tstamp_mode)(const snd_pcm_sw_params_t*, snd_pcm_tstamp_t*);
extern int (*snd_pcm_sw_params_set_tstamp_type)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_tstamp_type_t);
extern int (*snd_pcm_sw_params_get_tstamp_type)(const snd_pcm_sw_params_t*, snd_pcm_tstamp_type_t*);
extern int (*snd_pcm_sw_params_set_avail_min)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
extern int (*snd_pcm_sw_params_get_avail_min)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_sw_params_set_period_event)( snd_pcm_t*, snd_pcm_sw_params_t*, int);
extern int (*snd_pcm_sw_params_get_period_event)(const snd_pcm_sw_params_t*, int*);
extern int (*snd_pcm_sw_params_set_start_threshold)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
extern int (*snd_pcm_sw_params_get_start_threshold)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_sw_params_set_stop_threshold)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
extern int (*snd_pcm_sw_params_get_stop_threshold)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_sw_params_set_silence_threshold)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
extern int (*snd_pcm_sw_params_get_silence_threshold)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_sw_params_set_silence_size)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
extern int (*snd_pcm_sw_params_get_silence_size)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
extern size_t (*snd_pcm_access_mask_sizeof)( void);
extern int (*snd_pcm_access_mask_malloc)( snd_pcm_access_mask_t**);
extern void (*snd_pcm_access_mask_free)( snd_pcm_access_mask_t*);
extern void (*snd_pcm_access_mask_copy)( snd_pcm_access_mask_t*,const snd_pcm_access_mask_t*);
extern void (*snd_pcm_access_mask_none)( snd_pcm_access_mask_t*);
extern void (*snd_pcm_access_mask_any)( snd_pcm_access_mask_t*);
extern int (*snd_pcm_access_mask_test)(const snd_pcm_access_mask_t*, snd_pcm_access_t);
extern int (*snd_pcm_access_mask_empty)(const snd_pcm_access_mask_t*);
extern void (*snd_pcm_access_mask_set)( snd_pcm_access_mask_t*, snd_pcm_access_t);
extern void (*snd_pcm_access_mask_reset)( snd_pcm_access_mask_t*, snd_pcm_access_t);
extern size_t (*snd_pcm_format_mask_sizeof)( void);
extern int (*snd_pcm_format_mask_malloc)( snd_pcm_format_mask_t**);
extern void (*snd_pcm_format_mask_free)( snd_pcm_format_mask_t*);
extern void (*snd_pcm_format_mask_copy)( snd_pcm_format_mask_t*,const snd_pcm_format_mask_t*);
extern void (*snd_pcm_format_mask_none)( snd_pcm_format_mask_t*);
extern void (*snd_pcm_format_mask_any)( snd_pcm_format_mask_t*);
extern int (*snd_pcm_format_mask_test)(const snd_pcm_format_mask_t*, snd_pcm_format_t);
extern int (*snd_pcm_format_mask_empty)(const snd_pcm_format_mask_t*);
extern void (*snd_pcm_format_mask_set)( snd_pcm_format_mask_t*, snd_pcm_format_t);
extern void (*snd_pcm_format_mask_reset)( snd_pcm_format_mask_t*, snd_pcm_format_t);
extern size_t (*snd_pcm_subformat_mask_sizeof)( void);
extern int (*snd_pcm_subformat_mask_malloc)( snd_pcm_subformat_mask_t**);
extern void (*snd_pcm_subformat_mask_free)( snd_pcm_subformat_mask_t*);
extern void (*snd_pcm_subformat_mask_copy)( snd_pcm_subformat_mask_t*,const snd_pcm_subformat_mask_t*);
extern void (*snd_pcm_subformat_mask_none)( snd_pcm_subformat_mask_t*);
extern void (*snd_pcm_subformat_mask_any)( snd_pcm_subformat_mask_t*);
extern int (*snd_pcm_subformat_mask_test)(const snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
extern int (*snd_pcm_subformat_mask_empty)(const snd_pcm_subformat_mask_t*);
extern void (*snd_pcm_subformat_mask_set)( snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
extern void (*snd_pcm_subformat_mask_reset)( snd_pcm_subformat_mask_t*, snd_pcm_subformat_t);
extern size_t (*snd_pcm_status_sizeof)( void);
extern int (*snd_pcm_status_malloc)( snd_pcm_status_t**);
extern void (*snd_pcm_status_free)( snd_pcm_status_t*);
extern void (*snd_pcm_status_copy)( snd_pcm_status_t*,const snd_pcm_status_t*);
extern snd_pcm_state_t (*snd_pcm_status_get_state)(const snd_pcm_status_t*);
extern void (*snd_pcm_status_get_trigger_tstamp)(const snd_pcm_status_t*, snd_timestamp_t*);
extern void (*snd_pcm_status_get_trigger_htstamp)(const snd_pcm_status_t*, snd_htimestamp_t*);
extern void (*snd_pcm_status_get_tstamp)(const snd_pcm_status_t*, snd_timestamp_t*);
extern void (*snd_pcm_status_get_htstamp)(const snd_pcm_status_t*, snd_htimestamp_t*);
extern void (*snd_pcm_status_get_audio_htstamp)(const snd_pcm_status_t*, snd_htimestamp_t*);
extern void (*snd_pcm_status_get_driver_htstamp)(const snd_pcm_status_t*, snd_htimestamp_t*);
extern void (*snd_pcm_status_get_audio_htstamp_report)(const snd_pcm_status_t*, snd_pcm_audio_tstamp_report_t*);
extern void (*snd_pcm_status_set_audio_htstamp_config)( snd_pcm_status_t*, snd_pcm_audio_tstamp_config_t*);
extern snd_pcm_sframes_t (*snd_pcm_status_get_delay)(const snd_pcm_status_t*);
extern snd_pcm_uframes_t (*snd_pcm_status_get_avail)(const snd_pcm_status_t*);
extern snd_pcm_uframes_t (*snd_pcm_status_get_avail_max)(const snd_pcm_status_t*);
extern snd_pcm_uframes_t (*snd_pcm_status_get_overrange)(const snd_pcm_status_t*);
extern const char* (*snd_pcm_type_name)( snd_pcm_type_t);
extern const char* (*snd_pcm_stream_name)(const snd_pcm_stream_t);
extern const char* (*snd_pcm_access_name)(const snd_pcm_access_t);
extern const char* (*snd_pcm_format_name)(const snd_pcm_format_t);
extern const char* (*snd_pcm_format_description)(const snd_pcm_format_t);
extern const char* (*snd_pcm_subformat_name)(const snd_pcm_subformat_t);
extern const char* (*snd_pcm_subformat_description)(const snd_pcm_subformat_t);
extern snd_pcm_format_t (*snd_pcm_format_value)(const char*);
extern const char* (*snd_pcm_tstamp_mode_name)(const snd_pcm_tstamp_t);
extern const char* (*snd_pcm_state_name)(const snd_pcm_state_t);
extern int (*snd_pcm_dump)( snd_pcm_t*, snd_output_t*);
extern int (*snd_pcm_dump_hw_setup)( snd_pcm_t*, snd_output_t*);
extern int (*snd_pcm_dump_sw_setup)( snd_pcm_t*, snd_output_t*);
extern int (*snd_pcm_dump_setup)( snd_pcm_t*, snd_output_t*);
extern int (*snd_pcm_hw_params_dump)( snd_pcm_hw_params_t*, snd_output_t*);
extern int (*snd_pcm_sw_params_dump)( snd_pcm_sw_params_t*, snd_output_t*);
extern int (*snd_pcm_status_dump)( snd_pcm_status_t*, snd_output_t*);
extern int (*snd_pcm_mmap_begin)( snd_pcm_t*,const snd_pcm_channel_area_t**, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
extern snd_pcm_sframes_t (*snd_pcm_mmap_commit)( snd_pcm_t*, snd_pcm_uframes_t, snd_pcm_uframes_t);
extern snd_pcm_sframes_t (*snd_pcm_mmap_writei)( snd_pcm_t*,const void*, snd_pcm_uframes_t);
extern snd_pcm_sframes_t (*snd_pcm_mmap_readi)( snd_pcm_t*, void*, snd_pcm_uframes_t);
extern snd_pcm_sframes_t (*snd_pcm_mmap_writen)( snd_pcm_t*, void**, snd_pcm_uframes_t);
extern snd_pcm_sframes_t (*snd_pcm_mmap_readn)( snd_pcm_t*, void**, snd_pcm_uframes_t);
extern int (*snd_pcm_format_signed)( snd_pcm_format_t);
extern int (*snd_pcm_format_unsigned)( snd_pcm_format_t);
extern int (*snd_pcm_format_linear)( snd_pcm_format_t);
extern int (*snd_pcm_format_float)( snd_pcm_format_t);
extern int (*snd_pcm_format_little_endian)( snd_pcm_format_t);
extern int (*snd_pcm_format_big_endian)( snd_pcm_format_t);
extern int (*snd_pcm_format_cpu_endian)( snd_pcm_format_t);
extern int (*snd_pcm_format_width)( snd_pcm_format_t);
extern int (*snd_pcm_format_physical_width)( snd_pcm_format_t);
extern snd_pcm_format_t (*snd_pcm_build_linear_format)( int, int, int, int);
extern ssize_t (*snd_pcm_format_size)( snd_pcm_format_t, size_t);
extern uint8_t (*snd_pcm_format_silence)( snd_pcm_format_t);
extern uint16_t (*snd_pcm_format_silence_16)( snd_pcm_format_t);
extern uint32_t (*snd_pcm_format_silence_32)( snd_pcm_format_t);
extern uint64_t (*snd_pcm_format_silence_64)( snd_pcm_format_t);
extern int (*snd_pcm_format_set_silence)( snd_pcm_format_t, void*, unsigned int);
extern snd_pcm_sframes_t (*snd_pcm_bytes_to_frames)( snd_pcm_t*, ssize_t);
extern ssize_t (*snd_pcm_frames_to_bytes)( snd_pcm_t*, snd_pcm_sframes_t);
extern long (*snd_pcm_bytes_to_samples)( snd_pcm_t*, ssize_t);
extern ssize_t (*snd_pcm_samples_to_bytes)( snd_pcm_t*, long);
extern int (*snd_pcm_area_silence)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_format_t);
extern int (*snd_pcm_areas_silence)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_uframes_t, snd_pcm_format_t);
extern int (*snd_pcm_area_copy)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t,const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_format_t);
extern int (*snd_pcm_areas_copy)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t,const snd_pcm_channel_area_t*, snd_pcm_uframes_t, unsigned int, snd_pcm_uframes_t, snd_pcm_format_t);
extern int (*snd_pcm_areas_copy_wrap)(const snd_pcm_channel_area_t*, snd_pcm_uframes_t,const snd_pcm_uframes_t,const snd_pcm_channel_area_t*, snd_pcm_uframes_t,const snd_pcm_uframes_t,const unsigned int, snd_pcm_uframes_t,const snd_pcm_format_t);
extern snd_pcm_t* (*snd_pcm_hook_get_pcm)( snd_pcm_hook_t*);
extern void* (*snd_pcm_hook_get_private)( snd_pcm_hook_t*);
extern void (*snd_pcm_hook_set_private)( snd_pcm_hook_t*, void*);
extern int (*snd_pcm_hook_add)( snd_pcm_hook_t**, snd_pcm_t*, snd_pcm_hook_type_t, snd_pcm_hook_func_t, void*);
extern int (*snd_pcm_hook_remove)( snd_pcm_hook_t*);
extern snd_pcm_uframes_t (*snd_pcm_meter_get_bufsize)( snd_pcm_t*);
extern unsigned int (*snd_pcm_meter_get_channels)( snd_pcm_t*);
extern unsigned int (*snd_pcm_meter_get_rate)( snd_pcm_t*);
extern snd_pcm_uframes_t (*snd_pcm_meter_get_now)( snd_pcm_t*);
extern snd_pcm_uframes_t (*snd_pcm_meter_get_boundary)( snd_pcm_t*);
extern int (*snd_pcm_meter_add_scope)( snd_pcm_t*, snd_pcm_scope_t*);
extern snd_pcm_scope_t* (*snd_pcm_meter_search_scope)( snd_pcm_t*,const char*);
extern int (*snd_pcm_scope_malloc)( snd_pcm_scope_t**);
extern void (*snd_pcm_scope_set_ops)( snd_pcm_scope_t*,const snd_pcm_scope_ops_t*);
extern void (*snd_pcm_scope_set_name)( snd_pcm_scope_t*,const char*);
extern const char* (*snd_pcm_scope_get_name)( snd_pcm_scope_t*);
extern void* (*snd_pcm_scope_get_callback_private)( snd_pcm_scope_t*);
extern void (*snd_pcm_scope_set_callback_private)( snd_pcm_scope_t*, void*);
extern int (*snd_pcm_scope_s16_open)( snd_pcm_t*,const char*, snd_pcm_scope_t**);
extern int16_t* (*snd_pcm_scope_s16_get_channel_buffer)( snd_pcm_scope_t*, unsigned int);
extern int (*snd_spcm_init)( snd_pcm_t*, unsigned int, unsigned int, snd_pcm_format_t, snd_pcm_subformat_t, snd_spcm_latency_t, snd_pcm_access_t, snd_spcm_xrun_type_t);
extern int (*snd_spcm_init_duplex)( snd_pcm_t*, snd_pcm_t*, unsigned int, unsigned int, snd_pcm_format_t, snd_pcm_subformat_t, snd_spcm_latency_t, snd_pcm_access_t, snd_spcm_xrun_type_t, snd_spcm_duplex_type_t);
extern int (*snd_spcm_init_get_params)( snd_pcm_t*, unsigned int*, snd_pcm_uframes_t*, snd_pcm_uframes_t*);
extern const char* (*snd_pcm_start_mode_name)( snd_pcm_start_t);
extern const char* (*snd_pcm_xrun_mode_name)( snd_pcm_xrun_t);
extern int (*snd_pcm_sw_params_set_start_mode)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_start_t);
extern snd_pcm_start_t (*snd_pcm_sw_params_get_start_mode)(const snd_pcm_sw_params_t*);
extern int (*snd_pcm_sw_params_set_xrun_mode)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_xrun_t);
extern snd_pcm_xrun_t (*snd_pcm_sw_params_get_xrun_mode)(const snd_pcm_sw_params_t*);
extern int (*snd_pcm_sw_params_set_xfer_align)( snd_pcm_t*, snd_pcm_sw_params_t*, snd_pcm_uframes_t);
extern int (*snd_pcm_sw_params_get_xfer_align)(const snd_pcm_sw_params_t*, snd_pcm_uframes_t*);
extern int (*snd_pcm_sw_params_set_sleep_min)( snd_pcm_t*, snd_pcm_sw_params_t*, unsigned int);
extern int (*snd_pcm_sw_params_get_sleep_min)(const snd_pcm_sw_params_t*, unsigned int*);
extern int (*snd_pcm_hw_params_get_tick_time)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_tick_time_min)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_get_tick_time_max)(const snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_test_tick_time)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_tick_time)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int, int);
extern int (*snd_pcm_hw_params_set_tick_time_min)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_tick_time_max)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_tick_time_minmax)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_tick_time_near)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_tick_time_first)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_pcm_hw_params_set_tick_time_last)( snd_pcm_t*, snd_pcm_hw_params_t*, unsigned int*, int*);
extern int (*snd_rawmidi_open)( snd_rawmidi_t**, snd_rawmidi_t**,const char*, int);
extern int (*snd_rawmidi_open_lconf)( snd_rawmidi_t**, snd_rawmidi_t**,const char*, int, snd_config_t*);
extern int (*snd_rawmidi_close)( snd_rawmidi_t*);
extern int (*snd_rawmidi_poll_descriptors_count)( snd_rawmidi_t*);
extern int (*snd_rawmidi_poll_descriptors)( snd_rawmidi_t*,struct pollfd*, unsigned int);
extern int (*snd_rawmidi_poll_descriptors_revents)( snd_rawmidi_t*,struct pollfd*, unsigned int, unsigned short*);
extern int (*snd_rawmidi_nonblock)( snd_rawmidi_t*, int);
extern size_t (*snd_rawmidi_info_sizeof)( void);
extern int (*snd_rawmidi_info_malloc)( snd_rawmidi_info_t**);
extern void (*snd_rawmidi_info_free)( snd_rawmidi_info_t*);
extern void (*snd_rawmidi_info_copy)( snd_rawmidi_info_t*,const snd_rawmidi_info_t*);
extern unsigned int (*snd_rawmidi_info_get_device)(const snd_rawmidi_info_t*);
extern unsigned int (*snd_rawmidi_info_get_subdevice)(const snd_rawmidi_info_t*);
extern snd_rawmidi_stream_t (*snd_rawmidi_info_get_stream)(const snd_rawmidi_info_t*);
extern int (*snd_rawmidi_info_get_card)(const snd_rawmidi_info_t*);
extern unsigned int (*snd_rawmidi_info_get_flags)(const snd_rawmidi_info_t*);
extern const char* (*snd_rawmidi_info_get_id)(const snd_rawmidi_info_t*);
extern const char* (*snd_rawmidi_info_get_name)(const snd_rawmidi_info_t*);
extern const char* (*snd_rawmidi_info_get_subdevice_name)(const snd_rawmidi_info_t*);
extern unsigned int (*snd_rawmidi_info_get_subdevices_count)(const snd_rawmidi_info_t*);
extern unsigned int (*snd_rawmidi_info_get_subdevices_avail)(const snd_rawmidi_info_t*);
extern void (*snd_rawmidi_info_set_device)( snd_rawmidi_info_t*, unsigned int);
extern void (*snd_rawmidi_info_set_subdevice)( snd_rawmidi_info_t*, unsigned int);
extern void (*snd_rawmidi_info_set_stream)( snd_rawmidi_info_t*, snd_rawmidi_stream_t);
extern int (*snd_rawmidi_info)( snd_rawmidi_t*, snd_rawmidi_info_t*);
extern size_t (*snd_rawmidi_params_sizeof)( void);
extern int (*snd_rawmidi_params_malloc)( snd_rawmidi_params_t**);
extern void (*snd_rawmidi_params_free)( snd_rawmidi_params_t*);
extern void (*snd_rawmidi_params_copy)( snd_rawmidi_params_t*,const snd_rawmidi_params_t*);
extern int (*snd_rawmidi_params_set_buffer_size)( snd_rawmidi_t*, snd_rawmidi_params_t*, size_t);
extern size_t (*snd_rawmidi_params_get_buffer_size)(const snd_rawmidi_params_t*);
extern int (*snd_rawmidi_params_set_avail_min)( snd_rawmidi_t*, snd_rawmidi_params_t*, size_t);
extern size_t (*snd_rawmidi_params_get_avail_min)(const snd_rawmidi_params_t*);
extern int (*snd_rawmidi_params_set_no_active_sensing)( snd_rawmidi_t*, snd_rawmidi_params_t*, int);
extern int (*snd_rawmidi_params_get_no_active_sensing)(const snd_rawmidi_params_t*);
extern int (*snd_rawmidi_params)( snd_rawmidi_t*, snd_rawmidi_params_t*);
extern int (*snd_rawmidi_params_current)( snd_rawmidi_t*, snd_rawmidi_params_t*);
extern size_t (*snd_rawmidi_status_sizeof)( void);
extern int (*snd_rawmidi_status_malloc)( snd_rawmidi_status_t**);
extern void (*snd_rawmidi_status_free)( snd_rawmidi_status_t*);
extern void (*snd_rawmidi_status_copy)( snd_rawmidi_status_t*,const snd_rawmidi_status_t*);
extern void (*snd_rawmidi_status_get_tstamp)(const snd_rawmidi_status_t*, snd_htimestamp_t*);
extern size_t (*snd_rawmidi_status_get_avail)(const snd_rawmidi_status_t*);
extern size_t (*snd_rawmidi_status_get_xruns)(const snd_rawmidi_status_t*);
extern int (*snd_rawmidi_status)( snd_rawmidi_t*, snd_rawmidi_status_t*);
extern int (*snd_rawmidi_drain)( snd_rawmidi_t*);
extern int (*snd_rawmidi_drop)( snd_rawmidi_t*);
extern ssize_t (*snd_rawmidi_write)( snd_rawmidi_t*,const void*, size_t);
extern ssize_t (*snd_rawmidi_read)( snd_rawmidi_t*, void*, size_t);
extern const char* (*snd_rawmidi_name)( snd_rawmidi_t*);
extern snd_rawmidi_type_t (*snd_rawmidi_type)( snd_rawmidi_t*);
extern snd_rawmidi_stream_t (*snd_rawmidi_stream)( snd_rawmidi_t*);
extern int (*snd_timer_query_open)( snd_timer_query_t**,const char*, int);
extern int (*snd_timer_query_open_lconf)( snd_timer_query_t**,const char*, int, snd_config_t*);
extern int (*snd_timer_query_close)( snd_timer_query_t*);
extern int (*snd_timer_query_next_device)( snd_timer_query_t*, snd_timer_id_t*);
extern int (*snd_timer_query_info)( snd_timer_query_t*, snd_timer_ginfo_t*);
extern int (*snd_timer_query_params)( snd_timer_query_t*, snd_timer_gparams_t*);
extern int (*snd_timer_query_status)( snd_timer_query_t*, snd_timer_gstatus_t*);
extern int (*snd_timer_open)( snd_timer_t**,const char*, int);
extern int (*snd_timer_open_lconf)( snd_timer_t**,const char*, int, snd_config_t*);
extern int (*snd_timer_close)( snd_timer_t*);
extern int (*snd_async_add_timer_handler)( snd_async_handler_t**, snd_timer_t*, snd_async_callback_t, void*);
extern snd_timer_t* (*snd_async_handler_get_timer)( snd_async_handler_t*);
extern int (*snd_timer_poll_descriptors_count)( snd_timer_t*);
extern int (*snd_timer_poll_descriptors)( snd_timer_t*,struct pollfd*, unsigned int);
extern int (*snd_timer_poll_descriptors_revents)( snd_timer_t*,struct pollfd*, unsigned int, unsigned short*);
extern int (*snd_timer_info)( snd_timer_t*, snd_timer_info_t*);
extern int (*snd_timer_params)( snd_timer_t*, snd_timer_params_t*);
extern int (*snd_timer_status)( snd_timer_t*, snd_timer_status_t*);
extern int (*snd_timer_start)( snd_timer_t*);
extern int (*snd_timer_stop)( snd_timer_t*);
extern int (*snd_timer_continue)( snd_timer_t*);
extern ssize_t (*snd_timer_read)( snd_timer_t*, void*, size_t);
extern size_t (*snd_timer_id_sizeof)( void);
extern int (*snd_timer_id_malloc)( snd_timer_id_t**);
extern void (*snd_timer_id_free)( snd_timer_id_t*);
extern void (*snd_timer_id_copy)( snd_timer_id_t*,const snd_timer_id_t*);
extern void (*snd_timer_id_set_class)( snd_timer_id_t*, int);
extern int (*snd_timer_id_get_class)( snd_timer_id_t*);
extern void (*snd_timer_id_set_sclass)( snd_timer_id_t*, int);
extern int (*snd_timer_id_get_sclass)( snd_timer_id_t*);
extern void (*snd_timer_id_set_card)( snd_timer_id_t*, int);
extern int (*snd_timer_id_get_card)( snd_timer_id_t*);
extern void (*snd_timer_id_set_device)( snd_timer_id_t*, int);
extern int (*snd_timer_id_get_device)( snd_timer_id_t*);
extern void (*snd_timer_id_set_subdevice)( snd_timer_id_t*, int);
extern int (*snd_timer_id_get_subdevice)( snd_timer_id_t*);
extern size_t (*snd_timer_ginfo_sizeof)( void);
extern int (*snd_timer_ginfo_malloc)( snd_timer_ginfo_t**);
extern void (*snd_timer_ginfo_free)( snd_timer_ginfo_t*);
extern void (*snd_timer_ginfo_copy)( snd_timer_ginfo_t*,const snd_timer_ginfo_t*);
extern int (*snd_timer_ginfo_set_tid)( snd_timer_ginfo_t*, snd_timer_id_t*);
extern snd_timer_id_t* (*snd_timer_ginfo_get_tid)( snd_timer_ginfo_t*);
extern unsigned int (*snd_timer_ginfo_get_flags)( snd_timer_ginfo_t*);
extern int (*snd_timer_ginfo_get_card)( snd_timer_ginfo_t*);
extern char* (*snd_timer_ginfo_get_id)( snd_timer_ginfo_t*);
extern char* (*snd_timer_ginfo_get_name)( snd_timer_ginfo_t*);
extern unsigned long (*snd_timer_ginfo_get_resolution)( snd_timer_ginfo_t*);
extern unsigned long (*snd_timer_ginfo_get_resolution_min)( snd_timer_ginfo_t*);
extern unsigned long (*snd_timer_ginfo_get_resolution_max)( snd_timer_ginfo_t*);
extern unsigned int (*snd_timer_ginfo_get_clients)( snd_timer_ginfo_t*);
extern size_t (*snd_timer_info_sizeof)( void);
extern int (*snd_timer_info_malloc)( snd_timer_info_t**);
extern void (*snd_timer_info_free)( snd_timer_info_t*);
extern void (*snd_timer_info_copy)( snd_timer_info_t*,const snd_timer_info_t*);
extern int (*snd_timer_info_is_slave)( snd_timer_info_t*);
extern int (*snd_timer_info_get_card)( snd_timer_info_t*);
extern const char* (*snd_timer_info_get_id)( snd_timer_info_t*);
extern const char* (*snd_timer_info_get_name)( snd_timer_info_t*);
extern long (*snd_timer_info_get_resolution)( snd_timer_info_t*);
extern size_t (*snd_timer_params_sizeof)( void);
extern int (*snd_timer_params_malloc)( snd_timer_params_t**);
extern void (*snd_timer_params_free)( snd_timer_params_t*);
extern void (*snd_timer_params_copy)( snd_timer_params_t*,const snd_timer_params_t*);
extern int (*snd_timer_params_set_auto_start)( snd_timer_params_t*, int);
extern int (*snd_timer_params_get_auto_start)( snd_timer_params_t*);
extern int (*snd_timer_params_set_exclusive)( snd_timer_params_t*, int);
extern int (*snd_timer_params_get_exclusive)( snd_timer_params_t*);
extern int (*snd_timer_params_set_early_event)( snd_timer_params_t*, int);
extern int (*snd_timer_params_get_early_event)( snd_timer_params_t*);
extern void (*snd_timer_params_set_ticks)( snd_timer_params_t*, long);
extern long (*snd_timer_params_get_ticks)( snd_timer_params_t*);
extern void (*snd_timer_params_set_queue_size)( snd_timer_params_t*, long);
extern long (*snd_timer_params_get_queue_size)( snd_timer_params_t*);
extern void (*snd_timer_params_set_filter)( snd_timer_params_t*, unsigned int);
extern unsigned int (*snd_timer_params_get_filter)( snd_timer_params_t*);
extern size_t (*snd_timer_status_sizeof)( void);
extern int (*snd_timer_status_malloc)( snd_timer_status_t**);
extern void (*snd_timer_status_free)( snd_timer_status_t*);
extern void (*snd_timer_status_copy)( snd_timer_status_t*,const snd_timer_status_t*);
extern snd_htimestamp_t (*snd_timer_status_get_timestamp)( snd_timer_status_t*);
extern long (*snd_timer_status_get_resolution)( snd_timer_status_t*);
extern long (*snd_timer_status_get_lost)( snd_timer_status_t*);
extern long (*snd_timer_status_get_overrun)( snd_timer_status_t*);
extern long (*snd_timer_status_get_queue)( snd_timer_status_t*);
extern long (*snd_timer_info_get_ticks)( snd_timer_info_t*);
extern int (*snd_hwdep_open)( snd_hwdep_t**,const char*, int);
extern int (*snd_hwdep_close)( snd_hwdep_t*);
extern int (*snd_hwdep_poll_descriptors)( snd_hwdep_t*,struct pollfd*, unsigned int);
extern int (*snd_hwdep_poll_descriptors_count)( snd_hwdep_t*);
extern int (*snd_hwdep_poll_descriptors_revents)( snd_hwdep_t*,struct pollfd*, unsigned int, unsigned short*);
extern int (*snd_hwdep_nonblock)( snd_hwdep_t*, int);
extern int (*snd_hwdep_info)( snd_hwdep_t*, snd_hwdep_info_t*);
extern int (*snd_hwdep_dsp_status)( snd_hwdep_t*, snd_hwdep_dsp_status_t*);
extern int (*snd_hwdep_dsp_load)( snd_hwdep_t*, snd_hwdep_dsp_image_t*);
extern int (*snd_hwdep_ioctl)( snd_hwdep_t*, unsigned int, void*);
extern ssize_t (*snd_hwdep_write)( snd_hwdep_t*,const void*, size_t);
extern ssize_t (*snd_hwdep_read)( snd_hwdep_t*, void*, size_t);
extern size_t (*snd_hwdep_info_sizeof)( void);
extern int (*snd_hwdep_info_malloc)( snd_hwdep_info_t**);
extern void (*snd_hwdep_info_free)( snd_hwdep_info_t*);
extern void (*snd_hwdep_info_copy)( snd_hwdep_info_t*,const snd_hwdep_info_t*);
extern unsigned int (*snd_hwdep_info_get_device)(const snd_hwdep_info_t*);
extern int (*snd_hwdep_info_get_card)(const snd_hwdep_info_t*);
extern const char* (*snd_hwdep_info_get_id)(const snd_hwdep_info_t*);
extern const char* (*snd_hwdep_info_get_name)(const snd_hwdep_info_t*);
extern snd_hwdep_iface_t (*snd_hwdep_info_get_iface)(const snd_hwdep_info_t*);
extern void (*snd_hwdep_info_set_device)( snd_hwdep_info_t*, unsigned int);
extern size_t (*snd_hwdep_dsp_status_sizeof)( void);
extern int (*snd_hwdep_dsp_status_malloc)( snd_hwdep_dsp_status_t**);
extern void (*snd_hwdep_dsp_status_free)( snd_hwdep_dsp_status_t*);
extern void (*snd_hwdep_dsp_status_copy)( snd_hwdep_dsp_status_t*,const snd_hwdep_dsp_status_t*);
extern unsigned int (*snd_hwdep_dsp_status_get_version)(const snd_hwdep_dsp_status_t*);
extern const char* (*snd_hwdep_dsp_status_get_id)(const snd_hwdep_dsp_status_t*);
extern unsigned int (*snd_hwdep_dsp_status_get_num_dsps)(const snd_hwdep_dsp_status_t*);
extern unsigned int (*snd_hwdep_dsp_status_get_dsp_loaded)(const snd_hwdep_dsp_status_t*);
extern unsigned int (*snd_hwdep_dsp_status_get_chip_ready)(const snd_hwdep_dsp_status_t*);
extern size_t (*snd_hwdep_dsp_image_sizeof)( void);
extern int (*snd_hwdep_dsp_image_malloc)( snd_hwdep_dsp_image_t**);
extern void (*snd_hwdep_dsp_image_free)( snd_hwdep_dsp_image_t*);
extern void (*snd_hwdep_dsp_image_copy)( snd_hwdep_dsp_image_t*,const snd_hwdep_dsp_image_t*);
extern unsigned int (*snd_hwdep_dsp_image_get_index)(const snd_hwdep_dsp_image_t*);
extern const char* (*snd_hwdep_dsp_image_get_name)(const snd_hwdep_dsp_image_t*);
extern const void* (*snd_hwdep_dsp_image_get_image)(const snd_hwdep_dsp_image_t*);
extern size_t (*snd_hwdep_dsp_image_get_length)(const snd_hwdep_dsp_image_t*);
extern void (*snd_hwdep_dsp_image_set_index)( snd_hwdep_dsp_image_t*, unsigned int);
extern void (*snd_hwdep_dsp_image_set_name)( snd_hwdep_dsp_image_t*,const char*);
extern void (*snd_hwdep_dsp_image_set_image)( snd_hwdep_dsp_image_t*, void*);
extern void (*snd_hwdep_dsp_image_set_length)( snd_hwdep_dsp_image_t*, size_t);
extern int (*snd_card_load)( int);
extern int (*snd_card_next)( int*);
extern int (*snd_card_get_index)(const char*);
extern int (*snd_card_get_name)( int, char**);
extern int (*snd_card_get_longname)( int, char**);
extern int (*snd_device_name_hint)( int,const char*, void***);
extern int (*snd_device_name_free_hint)( void**);
extern char* (*snd_device_name_get_hint)(const void*,const char*);
extern int (*snd_ctl_open)( snd_ctl_t**,const char*, int);
extern int (*snd_ctl_open_lconf)( snd_ctl_t**,const char*, int, snd_config_t*);
extern int (*snd_ctl_open_fallback)( snd_ctl_t**, snd_config_t*,const char*,const char*, int);
extern int (*snd_ctl_close)( snd_ctl_t*);
extern int (*snd_ctl_nonblock)( snd_ctl_t*, int);
extern int (*snd_async_add_ctl_handler)( snd_async_handler_t**, snd_ctl_t*, snd_async_callback_t, void*);
extern snd_ctl_t* (*snd_async_handler_get_ctl)( snd_async_handler_t*);
extern int (*snd_ctl_poll_descriptors_count)( snd_ctl_t*);
extern int (*snd_ctl_poll_descriptors)( snd_ctl_t*,struct pollfd*, unsigned int);
extern int (*snd_ctl_poll_descriptors_revents)( snd_ctl_t*,struct pollfd*, unsigned int, unsigned short*);
extern int (*snd_ctl_subscribe_events)( snd_ctl_t*, int);
extern int (*snd_ctl_card_info)( snd_ctl_t*, snd_ctl_card_info_t*);
extern int (*snd_ctl_elem_list)( snd_ctl_t*, snd_ctl_elem_list_t*);
extern int (*snd_ctl_elem_info)( snd_ctl_t*, snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_read)( snd_ctl_t*, snd_ctl_elem_value_t*);
extern int (*snd_ctl_elem_write)( snd_ctl_t*, snd_ctl_elem_value_t*);
extern int (*snd_ctl_elem_lock)( snd_ctl_t*, snd_ctl_elem_id_t*);
extern int (*snd_ctl_elem_unlock)( snd_ctl_t*, snd_ctl_elem_id_t*);
extern int (*snd_ctl_elem_tlv_read)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int*, unsigned int);
extern int (*snd_ctl_elem_tlv_write)( snd_ctl_t*,const snd_ctl_elem_id_t*,const unsigned int*);
extern int (*snd_ctl_elem_tlv_command)( snd_ctl_t*,const snd_ctl_elem_id_t*,const unsigned int*);
extern int (*snd_ctl_hwdep_next_device)( snd_ctl_t*, int*);
extern int (*snd_ctl_hwdep_info)( snd_ctl_t*, snd_hwdep_info_t*);
extern int (*snd_ctl_pcm_next_device)( snd_ctl_t*, int*);
extern int (*snd_ctl_pcm_info)( snd_ctl_t*, snd_pcm_info_t*);
extern int (*snd_ctl_pcm_prefer_subdevice)( snd_ctl_t*, int);
extern int (*snd_ctl_rawmidi_next_device)( snd_ctl_t*, int*);
extern int (*snd_ctl_rawmidi_info)( snd_ctl_t*, snd_rawmidi_info_t*);
extern int (*snd_ctl_rawmidi_prefer_subdevice)( snd_ctl_t*, int);
extern int (*snd_ctl_set_power_state)( snd_ctl_t*, unsigned int);
extern int (*snd_ctl_get_power_state)( snd_ctl_t*, unsigned int*);
extern int (*snd_ctl_read)( snd_ctl_t*, snd_ctl_event_t*);
extern int (*snd_ctl_wait)( snd_ctl_t*, int);
extern const char* (*snd_ctl_name)( snd_ctl_t*);
extern snd_ctl_type_t (*snd_ctl_type)( snd_ctl_t*);
extern const char* (*snd_ctl_elem_type_name)( snd_ctl_elem_type_t);
extern const char* (*snd_ctl_elem_iface_name)( snd_ctl_elem_iface_t);
extern const char* (*snd_ctl_event_type_name)( snd_ctl_event_type_t);
extern unsigned int (*snd_ctl_event_elem_get_mask)(const snd_ctl_event_t*);
extern unsigned int (*snd_ctl_event_elem_get_numid)(const snd_ctl_event_t*);
extern void (*snd_ctl_event_elem_get_id)(const snd_ctl_event_t*, snd_ctl_elem_id_t*);
extern snd_ctl_elem_iface_t (*snd_ctl_event_elem_get_interface)(const snd_ctl_event_t*);
extern unsigned int (*snd_ctl_event_elem_get_device)(const snd_ctl_event_t*);
extern unsigned int (*snd_ctl_event_elem_get_subdevice)(const snd_ctl_event_t*);
extern const char* (*snd_ctl_event_elem_get_name)(const snd_ctl_event_t*);
extern unsigned int (*snd_ctl_event_elem_get_index)(const snd_ctl_event_t*);
extern int (*snd_ctl_elem_list_alloc_space)( snd_ctl_elem_list_t*, unsigned int);
extern void (*snd_ctl_elem_list_free_space)( snd_ctl_elem_list_t*);
extern char* (*snd_ctl_ascii_elem_id_get)( snd_ctl_elem_id_t*);
extern int (*snd_ctl_ascii_elem_id_parse)( snd_ctl_elem_id_t*,const char*);
extern int (*snd_ctl_ascii_value_parse)( snd_ctl_t*, snd_ctl_elem_value_t*, snd_ctl_elem_info_t*,const char*);
extern size_t (*snd_ctl_elem_id_sizeof)( void);
extern int (*snd_ctl_elem_id_malloc)( snd_ctl_elem_id_t**);
extern void (*snd_ctl_elem_id_free)( snd_ctl_elem_id_t*);
extern void (*snd_ctl_elem_id_clear)( snd_ctl_elem_id_t*);
extern void (*snd_ctl_elem_id_copy)( snd_ctl_elem_id_t*,const snd_ctl_elem_id_t*);
extern unsigned int (*snd_ctl_elem_id_get_numid)(const snd_ctl_elem_id_t*);
extern snd_ctl_elem_iface_t (*snd_ctl_elem_id_get_interface)(const snd_ctl_elem_id_t*);
extern unsigned int (*snd_ctl_elem_id_get_device)(const snd_ctl_elem_id_t*);
extern unsigned int (*snd_ctl_elem_id_get_subdevice)(const snd_ctl_elem_id_t*);
extern const char* (*snd_ctl_elem_id_get_name)(const snd_ctl_elem_id_t*);
extern unsigned int (*snd_ctl_elem_id_get_index)(const snd_ctl_elem_id_t*);
extern void (*snd_ctl_elem_id_set_numid)( snd_ctl_elem_id_t*, unsigned int);
extern void (*snd_ctl_elem_id_set_interface)( snd_ctl_elem_id_t*, snd_ctl_elem_iface_t);
extern void (*snd_ctl_elem_id_set_device)( snd_ctl_elem_id_t*, unsigned int);
extern void (*snd_ctl_elem_id_set_subdevice)( snd_ctl_elem_id_t*, unsigned int);
extern void (*snd_ctl_elem_id_set_name)( snd_ctl_elem_id_t*,const char*);
extern void (*snd_ctl_elem_id_set_index)( snd_ctl_elem_id_t*, unsigned int);
extern size_t (*snd_ctl_card_info_sizeof)( void);
extern int (*snd_ctl_card_info_malloc)( snd_ctl_card_info_t**);
extern void (*snd_ctl_card_info_free)( snd_ctl_card_info_t*);
extern void (*snd_ctl_card_info_clear)( snd_ctl_card_info_t*);
extern void (*snd_ctl_card_info_copy)( snd_ctl_card_info_t*,const snd_ctl_card_info_t*);
extern int (*snd_ctl_card_info_get_card)(const snd_ctl_card_info_t*);
extern const char* (*snd_ctl_card_info_get_id)(const snd_ctl_card_info_t*);
extern const char* (*snd_ctl_card_info_get_driver)(const snd_ctl_card_info_t*);
extern const char* (*snd_ctl_card_info_get_name)(const snd_ctl_card_info_t*);
extern const char* (*snd_ctl_card_info_get_longname)(const snd_ctl_card_info_t*);
extern const char* (*snd_ctl_card_info_get_mixername)(const snd_ctl_card_info_t*);
extern const char* (*snd_ctl_card_info_get_components)(const snd_ctl_card_info_t*);
extern size_t (*snd_ctl_event_sizeof)( void);
extern int (*snd_ctl_event_malloc)( snd_ctl_event_t**);
extern void (*snd_ctl_event_free)( snd_ctl_event_t*);
extern void (*snd_ctl_event_clear)( snd_ctl_event_t*);
extern void (*snd_ctl_event_copy)( snd_ctl_event_t*,const snd_ctl_event_t*);
extern snd_ctl_event_type_t (*snd_ctl_event_get_type)(const snd_ctl_event_t*);
extern size_t (*snd_ctl_elem_list_sizeof)( void);
extern int (*snd_ctl_elem_list_malloc)( snd_ctl_elem_list_t**);
extern void (*snd_ctl_elem_list_free)( snd_ctl_elem_list_t*);
extern void (*snd_ctl_elem_list_clear)( snd_ctl_elem_list_t*);
extern void (*snd_ctl_elem_list_copy)( snd_ctl_elem_list_t*,const snd_ctl_elem_list_t*);
extern void (*snd_ctl_elem_list_set_offset)( snd_ctl_elem_list_t*, unsigned int);
extern unsigned int (*snd_ctl_elem_list_get_used)(const snd_ctl_elem_list_t*);
extern unsigned int (*snd_ctl_elem_list_get_count)(const snd_ctl_elem_list_t*);
extern void (*snd_ctl_elem_list_get_id)(const snd_ctl_elem_list_t*, unsigned int, snd_ctl_elem_id_t*);
extern unsigned int (*snd_ctl_elem_list_get_numid)(const snd_ctl_elem_list_t*, unsigned int);
extern snd_ctl_elem_iface_t (*snd_ctl_elem_list_get_interface)(const snd_ctl_elem_list_t*, unsigned int);
extern unsigned int (*snd_ctl_elem_list_get_device)(const snd_ctl_elem_list_t*, unsigned int);
extern unsigned int (*snd_ctl_elem_list_get_subdevice)(const snd_ctl_elem_list_t*, unsigned int);
extern const char* (*snd_ctl_elem_list_get_name)(const snd_ctl_elem_list_t*, unsigned int);
extern unsigned int (*snd_ctl_elem_list_get_index)(const snd_ctl_elem_list_t*, unsigned int);
extern size_t (*snd_ctl_elem_info_sizeof)( void);
extern int (*snd_ctl_elem_info_malloc)( snd_ctl_elem_info_t**);
extern void (*snd_ctl_elem_info_free)( snd_ctl_elem_info_t*);
extern void (*snd_ctl_elem_info_clear)( snd_ctl_elem_info_t*);
extern void (*snd_ctl_elem_info_copy)( snd_ctl_elem_info_t*,const snd_ctl_elem_info_t*);
extern snd_ctl_elem_type_t (*snd_ctl_elem_info_get_type)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_readable)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_writable)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_volatile)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_inactive)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_locked)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_tlv_readable)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_tlv_writable)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_tlv_commandable)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_owner)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_is_user)(const snd_ctl_elem_info_t*);
extern pid_t (*snd_ctl_elem_info_get_owner)(const snd_ctl_elem_info_t*);
extern unsigned int (*snd_ctl_elem_info_get_count)(const snd_ctl_elem_info_t*);
extern long (*snd_ctl_elem_info_get_min)(const snd_ctl_elem_info_t*);
extern long (*snd_ctl_elem_info_get_max)(const snd_ctl_elem_info_t*);
extern long (*snd_ctl_elem_info_get_step)(const snd_ctl_elem_info_t*);
extern long long (*snd_ctl_elem_info_get_min64)(const snd_ctl_elem_info_t*);
extern long long (*snd_ctl_elem_info_get_max64)(const snd_ctl_elem_info_t*);
extern long long (*snd_ctl_elem_info_get_step64)(const snd_ctl_elem_info_t*);
extern unsigned int (*snd_ctl_elem_info_get_items)(const snd_ctl_elem_info_t*);
extern void (*snd_ctl_elem_info_set_item)( snd_ctl_elem_info_t*, unsigned int);
extern const char* (*snd_ctl_elem_info_get_item_name)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_get_dimensions)(const snd_ctl_elem_info_t*);
extern int (*snd_ctl_elem_info_get_dimension)(const snd_ctl_elem_info_t*, unsigned int);
extern int (*snd_ctl_elem_info_set_dimension)( snd_ctl_elem_info_t*,const int [4]);
extern void (*snd_ctl_elem_info_get_id)(const snd_ctl_elem_info_t*, snd_ctl_elem_id_t*);
extern unsigned int (*snd_ctl_elem_info_get_numid)(const snd_ctl_elem_info_t*);
extern snd_ctl_elem_iface_t (*snd_ctl_elem_info_get_interface)(const snd_ctl_elem_info_t*);
extern unsigned int (*snd_ctl_elem_info_get_device)(const snd_ctl_elem_info_t*);
extern unsigned int (*snd_ctl_elem_info_get_subdevice)(const snd_ctl_elem_info_t*);
extern const char* (*snd_ctl_elem_info_get_name)(const snd_ctl_elem_info_t*);
extern unsigned int (*snd_ctl_elem_info_get_index)(const snd_ctl_elem_info_t*);
extern void (*snd_ctl_elem_info_set_id)( snd_ctl_elem_info_t*,const snd_ctl_elem_id_t*);
extern void (*snd_ctl_elem_info_set_numid)( snd_ctl_elem_info_t*, unsigned int);
extern void (*snd_ctl_elem_info_set_interface)( snd_ctl_elem_info_t*, snd_ctl_elem_iface_t);
extern void (*snd_ctl_elem_info_set_device)( snd_ctl_elem_info_t*, unsigned int);
extern void (*snd_ctl_elem_info_set_subdevice)( snd_ctl_elem_info_t*, unsigned int);
extern void (*snd_ctl_elem_info_set_name)( snd_ctl_elem_info_t*,const char*);
extern void (*snd_ctl_elem_info_set_index)( snd_ctl_elem_info_t*, unsigned int);
extern int (*snd_ctl_add_integer_elem_set)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int, long, long, long);
extern int (*snd_ctl_add_integer64_elem_set)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int, long long, long long, long long);
extern int (*snd_ctl_add_boolean_elem_set)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int);
extern int (*snd_ctl_add_enumerated_elem_set)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int, unsigned int,const char* []);
extern int (*snd_ctl_add_bytes_elem_set)( snd_ctl_t*, snd_ctl_elem_info_t*, unsigned int, unsigned int);
extern int (*snd_ctl_elem_add_integer)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, long, long, long);
extern int (*snd_ctl_elem_add_integer64)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, long long, long long, long long);
extern int (*snd_ctl_elem_add_boolean)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int);
extern int (*snd_ctl_elem_add_enumerated)( snd_ctl_t*,const snd_ctl_elem_id_t*, unsigned int, unsigned int,const char* []);
extern int (*snd_ctl_elem_add_iec958)( snd_ctl_t*,const snd_ctl_elem_id_t*);
extern int (*snd_ctl_elem_remove)( snd_ctl_t*, snd_ctl_elem_id_t*);
extern size_t (*snd_ctl_elem_value_sizeof)( void);
extern int (*snd_ctl_elem_value_malloc)( snd_ctl_elem_value_t**);
extern void (*snd_ctl_elem_value_free)( snd_ctl_elem_value_t*);
extern void (*snd_ctl_elem_value_clear)( snd_ctl_elem_value_t*);
extern void (*snd_ctl_elem_value_copy)( snd_ctl_elem_value_t*,const snd_ctl_elem_value_t*);
extern int (*snd_ctl_elem_value_compare)( snd_ctl_elem_value_t*,const snd_ctl_elem_value_t*);
extern void (*snd_ctl_elem_value_get_id)(const snd_ctl_elem_value_t*, snd_ctl_elem_id_t*);
extern unsigned int (*snd_ctl_elem_value_get_numid)(const snd_ctl_elem_value_t*);
extern snd_ctl_elem_iface_t (*snd_ctl_elem_value_get_interface)(const snd_ctl_elem_value_t*);
extern unsigned int (*snd_ctl_elem_value_get_device)(const snd_ctl_elem_value_t*);
extern unsigned int (*snd_ctl_elem_value_get_subdevice)(const snd_ctl_elem_value_t*);
extern const char* (*snd_ctl_elem_value_get_name)(const snd_ctl_elem_value_t*);
extern unsigned int (*snd_ctl_elem_value_get_index)(const snd_ctl_elem_value_t*);
extern void (*snd_ctl_elem_value_set_id)( snd_ctl_elem_value_t*,const snd_ctl_elem_id_t*);
extern void (*snd_ctl_elem_value_set_numid)( snd_ctl_elem_value_t*, unsigned int);
extern void (*snd_ctl_elem_value_set_interface)( snd_ctl_elem_value_t*, snd_ctl_elem_iface_t);
extern void (*snd_ctl_elem_value_set_device)( snd_ctl_elem_value_t*, unsigned int);
extern void (*snd_ctl_elem_value_set_subdevice)( snd_ctl_elem_value_t*, unsigned int);
extern void (*snd_ctl_elem_value_set_name)( snd_ctl_elem_value_t*,const char*);
extern void (*snd_ctl_elem_value_set_index)( snd_ctl_elem_value_t*, unsigned int);
extern int (*snd_ctl_elem_value_get_boolean)(const snd_ctl_elem_value_t*, unsigned int);
extern long (*snd_ctl_elem_value_get_integer)(const snd_ctl_elem_value_t*, unsigned int);
extern long long (*snd_ctl_elem_value_get_integer64)(const snd_ctl_elem_value_t*, unsigned int);
extern unsigned int (*snd_ctl_elem_value_get_enumerated)(const snd_ctl_elem_value_t*, unsigned int);
extern unsigned char (*snd_ctl_elem_value_get_byte)(const snd_ctl_elem_value_t*, unsigned int);
extern void (*snd_ctl_elem_value_set_boolean)( snd_ctl_elem_value_t*, unsigned int, long);
extern void (*snd_ctl_elem_value_set_integer)( snd_ctl_elem_value_t*, unsigned int, long);
extern void (*snd_ctl_elem_value_set_integer64)( snd_ctl_elem_value_t*, unsigned int, long long);
extern void (*snd_ctl_elem_value_set_enumerated)( snd_ctl_elem_value_t*, unsigned int, unsigned int);
extern void (*snd_ctl_elem_value_set_byte)( snd_ctl_elem_value_t*, unsigned int, unsigned char);
extern void (*snd_ctl_elem_set_bytes)( snd_ctl_elem_value_t*, void*, size_t);
extern const void* (*snd_ctl_elem_value_get_bytes)(const snd_ctl_elem_value_t*);
extern void (*snd_ctl_elem_value_get_iec958)(const snd_ctl_elem_value_t*, snd_aes_iec958_t*);
extern void (*snd_ctl_elem_value_set_iec958)( snd_ctl_elem_value_t*,const snd_aes_iec958_t*);
extern int (*snd_tlv_parse_dB_info)( unsigned int*, unsigned int, unsigned int**);
extern int (*snd_tlv_get_dB_range)( unsigned int*, long, long, long*, long*);
extern int (*snd_tlv_convert_to_dB)( unsigned int*, long, long, long, long*);
extern int (*snd_tlv_convert_from_dB)( unsigned int*, long, long, long, long*, int);
extern int (*snd_ctl_get_dB_range)( snd_ctl_t*,const snd_ctl_elem_id_t*, long*, long*);
extern int (*snd_ctl_convert_to_dB)( snd_ctl_t*,const snd_ctl_elem_id_t*, long, long*);
extern int (*snd_ctl_convert_from_dB)( snd_ctl_t*,const snd_ctl_elem_id_t*, long, long*, int);
extern int (*snd_hctl_compare_fast)(const snd_hctl_elem_t*,const snd_hctl_elem_t*);
extern int (*snd_hctl_open)( snd_hctl_t**,const char*, int);
extern int (*snd_hctl_open_ctl)( snd_hctl_t**, snd_ctl_t*);
extern int (*snd_hctl_close)( snd_hctl_t*);
extern int (*snd_hctl_nonblock)( snd_hctl_t*, int);
extern int (*snd_hctl_poll_descriptors_count)( snd_hctl_t*);
extern int (*snd_hctl_poll_descriptors)( snd_hctl_t*,struct pollfd*, unsigned int);
extern int (*snd_hctl_poll_descriptors_revents)( snd_hctl_t*,struct pollfd*, unsigned int, unsigned short*);
extern unsigned int (*snd_hctl_get_count)( snd_hctl_t*);
extern int (*snd_hctl_set_compare)( snd_hctl_t*, snd_hctl_compare_t);
extern snd_hctl_elem_t* (*snd_hctl_first_elem)( snd_hctl_t*);
extern snd_hctl_elem_t* (*snd_hctl_last_elem)( snd_hctl_t*);
extern snd_hctl_elem_t* (*snd_hctl_find_elem)( snd_hctl_t*,const snd_ctl_elem_id_t*);
extern void (*snd_hctl_set_callback)( snd_hctl_t*, snd_hctl_callback_t);
extern void (*snd_hctl_set_callback_private)( snd_hctl_t*, void*);
extern void* (*snd_hctl_get_callback_private)( snd_hctl_t*);
extern int (*snd_hctl_load)( snd_hctl_t*);
extern int (*snd_hctl_free)( snd_hctl_t*);
extern int (*snd_hctl_handle_events)( snd_hctl_t*);
extern const char* (*snd_hctl_name)( snd_hctl_t*);
extern int (*snd_hctl_wait)( snd_hctl_t*, int);
extern snd_ctl_t* (*snd_hctl_ctl)( snd_hctl_t*);
extern snd_hctl_elem_t* (*snd_hctl_elem_next)( snd_hctl_elem_t*);
extern snd_hctl_elem_t* (*snd_hctl_elem_prev)( snd_hctl_elem_t*);
extern int (*snd_hctl_elem_info)( snd_hctl_elem_t*, snd_ctl_elem_info_t*);
extern int (*snd_hctl_elem_read)( snd_hctl_elem_t*, snd_ctl_elem_value_t*);
extern int (*snd_hctl_elem_write)( snd_hctl_elem_t*, snd_ctl_elem_value_t*);
extern int (*snd_hctl_elem_tlv_read)( snd_hctl_elem_t*, unsigned int*, unsigned int);
extern int (*snd_hctl_elem_tlv_write)( snd_hctl_elem_t*,const unsigned int*);
extern int (*snd_hctl_elem_tlv_command)( snd_hctl_elem_t*,const unsigned int*);
extern snd_hctl_t* (*snd_hctl_elem_get_hctl)( snd_hctl_elem_t*);
extern void (*snd_hctl_elem_get_id)(const snd_hctl_elem_t*, snd_ctl_elem_id_t*);
extern unsigned int (*snd_hctl_elem_get_numid)(const snd_hctl_elem_t*);
extern snd_ctl_elem_iface_t (*snd_hctl_elem_get_interface)(const snd_hctl_elem_t*);
extern unsigned int (*snd_hctl_elem_get_device)(const snd_hctl_elem_t*);
extern unsigned int (*snd_hctl_elem_get_subdevice)(const snd_hctl_elem_t*);
extern const char* (*snd_hctl_elem_get_name)(const snd_hctl_elem_t*);
extern unsigned int (*snd_hctl_elem_get_index)(const snd_hctl_elem_t*);
extern void (*snd_hctl_elem_set_callback)( snd_hctl_elem_t*, snd_hctl_elem_callback_t);
extern void* (*snd_hctl_elem_get_callback_private)(const snd_hctl_elem_t*);
extern void (*snd_hctl_elem_set_callback_private)( snd_hctl_elem_t*, void*);
extern int (*snd_sctl_build)( snd_sctl_t**, snd_ctl_t*, snd_config_t*, snd_config_t*, int);
extern int (*snd_sctl_free)( snd_sctl_t*);
extern int (*snd_sctl_install)( snd_sctl_t*);
extern int (*snd_sctl_remove)( snd_sctl_t*);
extern int (*snd_mixer_open)( snd_mixer_t**, int);
extern int (*snd_mixer_close)( snd_mixer_t*);
extern snd_mixer_elem_t* (*snd_mixer_first_elem)( snd_mixer_t*);
extern snd_mixer_elem_t* (*snd_mixer_last_elem)( snd_mixer_t*);
extern int (*snd_mixer_handle_events)( snd_mixer_t*);
extern int (*snd_mixer_attach)( snd_mixer_t*,const char*);
extern int (*snd_mixer_attach_hctl)( snd_mixer_t*, snd_hctl_t*);
extern int (*snd_mixer_detach)( snd_mixer_t*,const char*);
extern int (*snd_mixer_detach_hctl)( snd_mixer_t*, snd_hctl_t*);
extern int (*snd_mixer_get_hctl)( snd_mixer_t*,const char*, snd_hctl_t**);
extern int (*snd_mixer_poll_descriptors_count)( snd_mixer_t*);
extern int (*snd_mixer_poll_descriptors)( snd_mixer_t*,struct pollfd*, unsigned int);
extern int (*snd_mixer_poll_descriptors_revents)( snd_mixer_t*,struct pollfd*, unsigned int, unsigned short*);
extern int (*snd_mixer_load)( snd_mixer_t*);
extern void (*snd_mixer_free)( snd_mixer_t*);
extern int (*snd_mixer_wait)( snd_mixer_t*, int);
extern int (*snd_mixer_set_compare)( snd_mixer_t*, snd_mixer_compare_t);
extern void (*snd_mixer_set_callback)( snd_mixer_t*, snd_mixer_callback_t);
extern void* (*snd_mixer_get_callback_private)(const snd_mixer_t*);
extern void (*snd_mixer_set_callback_private)( snd_mixer_t*, void*);
extern unsigned int (*snd_mixer_get_count)(const snd_mixer_t*);
extern int (*snd_mixer_class_unregister)( snd_mixer_class_t*);
extern snd_mixer_elem_t* (*snd_mixer_elem_next)( snd_mixer_elem_t*);
extern snd_mixer_elem_t* (*snd_mixer_elem_prev)( snd_mixer_elem_t*);
extern void (*snd_mixer_elem_set_callback)( snd_mixer_elem_t*, snd_mixer_elem_callback_t);
extern void* (*snd_mixer_elem_get_callback_private)(const snd_mixer_elem_t*);
extern void (*snd_mixer_elem_set_callback_private)( snd_mixer_elem_t*, void*);
extern snd_mixer_elem_type_t (*snd_mixer_elem_get_type)(const snd_mixer_elem_t*);
extern int (*snd_mixer_class_register)( snd_mixer_class_t*, snd_mixer_t*);
extern int (*snd_mixer_elem_new)( snd_mixer_elem_t**, snd_mixer_elem_type_t, int, void*, void*);
extern int (*snd_mixer_elem_add)( snd_mixer_elem_t*, snd_mixer_class_t*);
extern int (*snd_mixer_elem_remove)( snd_mixer_elem_t*);
extern void (*snd_mixer_elem_free)( snd_mixer_elem_t*);
extern int (*snd_mixer_elem_info)( snd_mixer_elem_t*);
extern int (*snd_mixer_elem_value)( snd_mixer_elem_t*);
extern int (*snd_mixer_elem_attach)( snd_mixer_elem_t*, snd_hctl_elem_t*);
extern int (*snd_mixer_elem_detach)( snd_mixer_elem_t*, snd_hctl_elem_t*);
extern int (*snd_mixer_elem_empty)( snd_mixer_elem_t*);
extern void* (*snd_mixer_elem_get_private)(const snd_mixer_elem_t*);
extern size_t (*snd_mixer_class_sizeof)( void);
extern int (*snd_mixer_class_malloc)( snd_mixer_class_t**);
extern void (*snd_mixer_class_free)( snd_mixer_class_t*);
extern void (*snd_mixer_class_copy)( snd_mixer_class_t*,const snd_mixer_class_t*);
extern snd_mixer_t* (*snd_mixer_class_get_mixer)(const snd_mixer_class_t*);
extern snd_mixer_event_t (*snd_mixer_class_get_event)(const snd_mixer_class_t*);
extern void* (*snd_mixer_class_get_private)(const snd_mixer_class_t*);
extern snd_mixer_compare_t (*snd_mixer_class_get_compare)(const snd_mixer_class_t*);
extern int (*snd_mixer_class_set_event)( snd_mixer_class_t*, snd_mixer_event_t);
extern int (*snd_mixer_class_set_private)( snd_mixer_class_t*, void*);
extern int (*snd_mixer_class_set_private_free)( snd_mixer_class_t*, void*);
extern int (*snd_mixer_class_set_compare)( snd_mixer_class_t*, snd_mixer_compare_t);
extern const char* (*snd_mixer_selem_channel_name)( snd_mixer_selem_channel_id_t);
extern int (*snd_mixer_selem_register)( snd_mixer_t*,struct snd_mixer_selem_regopt*, snd_mixer_class_t**);
extern void (*snd_mixer_selem_get_id)( snd_mixer_elem_t*, snd_mixer_selem_id_t*);
extern const char* (*snd_mixer_selem_get_name)( snd_mixer_elem_t*);
extern unsigned int (*snd_mixer_selem_get_index)( snd_mixer_elem_t*);
extern snd_mixer_elem_t* (*snd_mixer_find_selem)( snd_mixer_t*,const snd_mixer_selem_id_t*);
extern int (*snd_mixer_selem_is_active)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_is_playback_mono)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_playback_channel)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t);
extern int (*snd_mixer_selem_is_capture_mono)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_capture_channel)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t);
extern int (*snd_mixer_selem_get_capture_group)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_common_volume)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_playback_volume)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_playback_volume_joined)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_capture_volume)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_capture_volume_joined)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_common_switch)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_playback_switch)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_playback_switch_joined)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_capture_switch)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_capture_switch_joined)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_has_capture_switch_exclusive)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_ask_playback_vol_dB)( snd_mixer_elem_t*, long, long*);
extern int (*snd_mixer_selem_ask_capture_vol_dB)( snd_mixer_elem_t*, long, long*);
extern int (*snd_mixer_selem_ask_playback_dB_vol)( snd_mixer_elem_t*, long, int, long*);
extern int (*snd_mixer_selem_ask_capture_dB_vol)( snd_mixer_elem_t*, long, int, long*);
extern int (*snd_mixer_selem_get_playback_volume)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
extern int (*snd_mixer_selem_get_capture_volume)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
extern int (*snd_mixer_selem_get_playback_dB)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
extern int (*snd_mixer_selem_get_capture_dB)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long*);
extern int (*snd_mixer_selem_get_playback_switch)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int*);
extern int (*snd_mixer_selem_get_capture_switch)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int*);
extern int (*snd_mixer_selem_set_playback_volume)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long);
extern int (*snd_mixer_selem_set_capture_volume)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long);
extern int (*snd_mixer_selem_set_playback_dB)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long, int);
extern int (*snd_mixer_selem_set_capture_dB)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, long, int);
extern int (*snd_mixer_selem_set_playback_volume_all)( snd_mixer_elem_t*, long);
extern int (*snd_mixer_selem_set_capture_volume_all)( snd_mixer_elem_t*, long);
extern int (*snd_mixer_selem_set_playback_dB_all)( snd_mixer_elem_t*, long, int);
extern int (*snd_mixer_selem_set_capture_dB_all)( snd_mixer_elem_t*, long, int);
extern int (*snd_mixer_selem_set_playback_switch)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int);
extern int (*snd_mixer_selem_set_capture_switch)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, int);
extern int (*snd_mixer_selem_set_playback_switch_all)( snd_mixer_elem_t*, int);
extern int (*snd_mixer_selem_set_capture_switch_all)( snd_mixer_elem_t*, int);
extern int (*snd_mixer_selem_get_playback_volume_range)( snd_mixer_elem_t*, long*, long*);
extern int (*snd_mixer_selem_get_playback_dB_range)( snd_mixer_elem_t*, long*, long*);
extern int (*snd_mixer_selem_set_playback_volume_range)( snd_mixer_elem_t*, long, long);
extern int (*snd_mixer_selem_get_capture_volume_range)( snd_mixer_elem_t*, long*, long*);
extern int (*snd_mixer_selem_get_capture_dB_range)( snd_mixer_elem_t*, long*, long*);
extern int (*snd_mixer_selem_set_capture_volume_range)( snd_mixer_elem_t*, long, long);
extern int (*snd_mixer_selem_is_enumerated)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_is_enum_playback)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_is_enum_capture)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_get_enum_items)( snd_mixer_elem_t*);
extern int (*snd_mixer_selem_get_enum_item_name)( snd_mixer_elem_t*, unsigned int, size_t, char*);
extern int (*snd_mixer_selem_get_enum_item)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, unsigned int*);
extern int (*snd_mixer_selem_set_enum_item)( snd_mixer_elem_t*, snd_mixer_selem_channel_id_t, unsigned int);
extern size_t (*snd_mixer_selem_id_sizeof)( void);
extern int (*snd_mixer_selem_id_malloc)( snd_mixer_selem_id_t**);
extern void (*snd_mixer_selem_id_free)( snd_mixer_selem_id_t*);
extern void (*snd_mixer_selem_id_copy)( snd_mixer_selem_id_t*,const snd_mixer_selem_id_t*);
extern const char* (*snd_mixer_selem_id_get_name)(const snd_mixer_selem_id_t*);
extern unsigned int (*snd_mixer_selem_id_get_index)(const snd_mixer_selem_id_t*);
extern void (*snd_mixer_selem_id_set_name)( snd_mixer_selem_id_t*,const char*);
extern void (*snd_mixer_selem_id_set_index)( snd_mixer_selem_id_t*, unsigned int);
extern int (*snd_mixer_selem_id_parse)( snd_mixer_selem_id_t*,const char*);
extern int (*snd_seq_open)( snd_seq_t**,const char*, int, int);
extern int (*snd_seq_open_lconf)( snd_seq_t**,const char*, int, int, snd_config_t*);
extern const char* (*snd_seq_name)( snd_seq_t*);
extern snd_seq_type_t (*snd_seq_type)( snd_seq_t*);
extern int (*snd_seq_close)( snd_seq_t*);
extern int (*snd_seq_poll_descriptors_count)( snd_seq_t*, short);
extern int (*snd_seq_poll_descriptors)( snd_seq_t*,struct pollfd*, unsigned int, short);
extern int (*snd_seq_poll_descriptors_revents)( snd_seq_t*,struct pollfd*, unsigned int, unsigned short*);
extern int (*snd_seq_nonblock)( snd_seq_t*, int);
extern int (*snd_seq_client_id)( snd_seq_t*);
extern size_t (*snd_seq_get_output_buffer_size)( snd_seq_t*);
extern size_t (*snd_seq_get_input_buffer_size)( snd_seq_t*);
extern int (*snd_seq_set_output_buffer_size)( snd_seq_t*, size_t);
extern int (*snd_seq_set_input_buffer_size)( snd_seq_t*, size_t);
extern size_t (*snd_seq_system_info_sizeof)( void);
extern int (*snd_seq_system_info_malloc)( snd_seq_system_info_t**);
extern void (*snd_seq_system_info_free)( snd_seq_system_info_t*);
extern void (*snd_seq_system_info_copy)( snd_seq_system_info_t*,const snd_seq_system_info_t*);
extern int (*snd_seq_system_info_get_queues)(const snd_seq_system_info_t*);
extern int (*snd_seq_system_info_get_clients)(const snd_seq_system_info_t*);
extern int (*snd_seq_system_info_get_ports)(const snd_seq_system_info_t*);
extern int (*snd_seq_system_info_get_channels)(const snd_seq_system_info_t*);
extern int (*snd_seq_system_info_get_cur_clients)(const snd_seq_system_info_t*);
extern int (*snd_seq_system_info_get_cur_queues)(const snd_seq_system_info_t*);
extern int (*snd_seq_system_info)( snd_seq_t*, snd_seq_system_info_t*);
extern size_t (*snd_seq_client_info_sizeof)( void);
extern int (*snd_seq_client_info_malloc)( snd_seq_client_info_t**);
extern void (*snd_seq_client_info_free)( snd_seq_client_info_t*);
extern void (*snd_seq_client_info_copy)( snd_seq_client_info_t*,const snd_seq_client_info_t*);
extern int (*snd_seq_client_info_get_client)(const snd_seq_client_info_t*);
extern snd_seq_client_type_t (*snd_seq_client_info_get_type)(const snd_seq_client_info_t*);
extern const char* (*snd_seq_client_info_get_name)( snd_seq_client_info_t*);
extern int (*snd_seq_client_info_get_broadcast_filter)(const snd_seq_client_info_t*);
extern int (*snd_seq_client_info_get_error_bounce)(const snd_seq_client_info_t*);
extern int (*snd_seq_client_info_get_card)(const snd_seq_client_info_t*);
extern int (*snd_seq_client_info_get_pid)(const snd_seq_client_info_t*);
extern const unsigned char* (*snd_seq_client_info_get_event_filter)(const snd_seq_client_info_t*);
extern int (*snd_seq_client_info_get_num_ports)(const snd_seq_client_info_t*);
extern int (*snd_seq_client_info_get_event_lost)(const snd_seq_client_info_t*);
extern void (*snd_seq_client_info_set_client)( snd_seq_client_info_t*, int);
extern void (*snd_seq_client_info_set_name)( snd_seq_client_info_t*,const char*);
extern void (*snd_seq_client_info_set_broadcast_filter)( snd_seq_client_info_t*, int);
extern void (*snd_seq_client_info_set_error_bounce)( snd_seq_client_info_t*, int);
extern void (*snd_seq_client_info_set_event_filter)( snd_seq_client_info_t*, unsigned char*);
extern void (*snd_seq_client_info_event_filter_clear)( snd_seq_client_info_t*);
extern void (*snd_seq_client_info_event_filter_add)( snd_seq_client_info_t*, int);
extern void (*snd_seq_client_info_event_filter_del)( snd_seq_client_info_t*, int);
extern int (*snd_seq_client_info_event_filter_check)( snd_seq_client_info_t*, int);
extern int (*snd_seq_get_client_info)( snd_seq_t*, snd_seq_client_info_t*);
extern int (*snd_seq_get_any_client_info)( snd_seq_t*, int, snd_seq_client_info_t*);
extern int (*snd_seq_set_client_info)( snd_seq_t*, snd_seq_client_info_t*);
extern int (*snd_seq_query_next_client)( snd_seq_t*, snd_seq_client_info_t*);
extern size_t (*snd_seq_client_pool_sizeof)( void);
extern int (*snd_seq_client_pool_malloc)( snd_seq_client_pool_t**);
extern void (*snd_seq_client_pool_free)( snd_seq_client_pool_t*);
extern void (*snd_seq_client_pool_copy)( snd_seq_client_pool_t*,const snd_seq_client_pool_t*);
extern int (*snd_seq_client_pool_get_client)(const snd_seq_client_pool_t*);
extern size_t (*snd_seq_client_pool_get_output_pool)(const snd_seq_client_pool_t*);
extern size_t (*snd_seq_client_pool_get_input_pool)(const snd_seq_client_pool_t*);
extern size_t (*snd_seq_client_pool_get_output_room)(const snd_seq_client_pool_t*);
extern size_t (*snd_seq_client_pool_get_output_free)(const snd_seq_client_pool_t*);
extern size_t (*snd_seq_client_pool_get_input_free)(const snd_seq_client_pool_t*);
extern void (*snd_seq_client_pool_set_output_pool)( snd_seq_client_pool_t*, size_t);
extern void (*snd_seq_client_pool_set_input_pool)( snd_seq_client_pool_t*, size_t);
extern void (*snd_seq_client_pool_set_output_room)( snd_seq_client_pool_t*, size_t);
extern int (*snd_seq_get_client_pool)( snd_seq_t*, snd_seq_client_pool_t*);
extern int (*snd_seq_set_client_pool)( snd_seq_t*, snd_seq_client_pool_t*);
extern size_t (*snd_seq_port_info_sizeof)( void);
extern int (*snd_seq_port_info_malloc)( snd_seq_port_info_t**);
extern void (*snd_seq_port_info_free)( snd_seq_port_info_t*);
extern void (*snd_seq_port_info_copy)( snd_seq_port_info_t*,const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_client)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_port)(const snd_seq_port_info_t*);
extern const snd_seq_addr_t* (*snd_seq_port_info_get_addr)(const snd_seq_port_info_t*);
extern const char* (*snd_seq_port_info_get_name)(const snd_seq_port_info_t*);
extern unsigned int (*snd_seq_port_info_get_capability)(const snd_seq_port_info_t*);
extern unsigned int (*snd_seq_port_info_get_type)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_midi_channels)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_midi_voices)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_synth_voices)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_read_use)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_write_use)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_port_specified)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_timestamping)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_timestamp_real)(const snd_seq_port_info_t*);
extern int (*snd_seq_port_info_get_timestamp_queue)(const snd_seq_port_info_t*);
extern void (*snd_seq_port_info_set_client)( snd_seq_port_info_t*, int);
extern void (*snd_seq_port_info_set_port)( snd_seq_port_info_t*, int);
extern void (*snd_seq_port_info_set_addr)( snd_seq_port_info_t*,const snd_seq_addr_t*);
extern void (*snd_seq_port_info_set_name)( snd_seq_port_info_t*,const char*);
extern void (*snd_seq_port_info_set_capability)( snd_seq_port_info_t*, unsigned int);
extern void (*snd_seq_port_info_set_type)( snd_seq_port_info_t*, unsigned int);
extern void (*snd_seq_port_info_set_midi_channels)( snd_seq_port_info_t*, int);
extern void (*snd_seq_port_info_set_midi_voices)( snd_seq_port_info_t*, int);
extern void (*snd_seq_port_info_set_synth_voices)( snd_seq_port_info_t*, int);
extern void (*snd_seq_port_info_set_port_specified)( snd_seq_port_info_t*, int);
extern void (*snd_seq_port_info_set_timestamping)( snd_seq_port_info_t*, int);
extern void (*snd_seq_port_info_set_timestamp_real)( snd_seq_port_info_t*, int);
extern void (*snd_seq_port_info_set_timestamp_queue)( snd_seq_port_info_t*, int);
extern int (*snd_seq_create_port)( snd_seq_t*, snd_seq_port_info_t*);
extern int (*snd_seq_delete_port)( snd_seq_t*, int);
extern int (*snd_seq_get_port_info)( snd_seq_t*, int, snd_seq_port_info_t*);
extern int (*snd_seq_get_any_port_info)( snd_seq_t*, int, int, snd_seq_port_info_t*);
extern int (*snd_seq_set_port_info)( snd_seq_t*, int, snd_seq_port_info_t*);
extern int (*snd_seq_query_next_port)( snd_seq_t*, snd_seq_port_info_t*);
extern size_t (*snd_seq_port_subscribe_sizeof)( void);
extern int (*snd_seq_port_subscribe_malloc)( snd_seq_port_subscribe_t**);
extern void (*snd_seq_port_subscribe_free)( snd_seq_port_subscribe_t*);
extern void (*snd_seq_port_subscribe_copy)( snd_seq_port_subscribe_t*,const snd_seq_port_subscribe_t*);
extern const snd_seq_addr_t* (*snd_seq_port_subscribe_get_sender)(const snd_seq_port_subscribe_t*);
extern const snd_seq_addr_t* (*snd_seq_port_subscribe_get_dest)(const snd_seq_port_subscribe_t*);
extern int (*snd_seq_port_subscribe_get_queue)(const snd_seq_port_subscribe_t*);
extern int (*snd_seq_port_subscribe_get_exclusive)(const snd_seq_port_subscribe_t*);
extern int (*snd_seq_port_subscribe_get_time_update)(const snd_seq_port_subscribe_t*);
extern int (*snd_seq_port_subscribe_get_time_real)(const snd_seq_port_subscribe_t*);
extern void (*snd_seq_port_subscribe_set_sender)( snd_seq_port_subscribe_t*,const snd_seq_addr_t*);
extern void (*snd_seq_port_subscribe_set_dest)( snd_seq_port_subscribe_t*,const snd_seq_addr_t*);
extern void (*snd_seq_port_subscribe_set_queue)( snd_seq_port_subscribe_t*, int);
extern void (*snd_seq_port_subscribe_set_exclusive)( snd_seq_port_subscribe_t*, int);
extern void (*snd_seq_port_subscribe_set_time_update)( snd_seq_port_subscribe_t*, int);
extern void (*snd_seq_port_subscribe_set_time_real)( snd_seq_port_subscribe_t*, int);
extern int (*snd_seq_get_port_subscription)( snd_seq_t*, snd_seq_port_subscribe_t*);
extern int (*snd_seq_subscribe_port)( snd_seq_t*, snd_seq_port_subscribe_t*);
extern int (*snd_seq_unsubscribe_port)( snd_seq_t*, snd_seq_port_subscribe_t*);
extern size_t (*snd_seq_query_subscribe_sizeof)( void);
extern int (*snd_seq_query_subscribe_malloc)( snd_seq_query_subscribe_t**);
extern void (*snd_seq_query_subscribe_free)( snd_seq_query_subscribe_t*);
extern void (*snd_seq_query_subscribe_copy)( snd_seq_query_subscribe_t*,const snd_seq_query_subscribe_t*);
extern int (*snd_seq_query_subscribe_get_client)(const snd_seq_query_subscribe_t*);
extern int (*snd_seq_query_subscribe_get_port)(const snd_seq_query_subscribe_t*);
extern const snd_seq_addr_t* (*snd_seq_query_subscribe_get_root)(const snd_seq_query_subscribe_t*);
extern snd_seq_query_subs_type_t (*snd_seq_query_subscribe_get_type)(const snd_seq_query_subscribe_t*);
extern int (*snd_seq_query_subscribe_get_index)(const snd_seq_query_subscribe_t*);
extern int (*snd_seq_query_subscribe_get_num_subs)(const snd_seq_query_subscribe_t*);
extern const snd_seq_addr_t* (*snd_seq_query_subscribe_get_addr)(const snd_seq_query_subscribe_t*);
extern int (*snd_seq_query_subscribe_get_queue)(const snd_seq_query_subscribe_t*);
extern int (*snd_seq_query_subscribe_get_exclusive)(const snd_seq_query_subscribe_t*);
extern int (*snd_seq_query_subscribe_get_time_update)(const snd_seq_query_subscribe_t*);
extern int (*snd_seq_query_subscribe_get_time_real)(const snd_seq_query_subscribe_t*);
extern void (*snd_seq_query_subscribe_set_client)( snd_seq_query_subscribe_t*, int);
extern void (*snd_seq_query_subscribe_set_port)( snd_seq_query_subscribe_t*, int);
extern void (*snd_seq_query_subscribe_set_root)( snd_seq_query_subscribe_t*,const snd_seq_addr_t*);
extern void (*snd_seq_query_subscribe_set_type)( snd_seq_query_subscribe_t*, snd_seq_query_subs_type_t);
extern void (*snd_seq_query_subscribe_set_index)( snd_seq_query_subscribe_t*, int);
extern int (*snd_seq_query_port_subscribers)( snd_seq_t*, snd_seq_query_subscribe_t*);
extern size_t (*snd_seq_queue_info_sizeof)( void);
extern int (*snd_seq_queue_info_malloc)( snd_seq_queue_info_t**);
extern void (*snd_seq_queue_info_free)( snd_seq_queue_info_t*);
extern void (*snd_seq_queue_info_copy)( snd_seq_queue_info_t*,const snd_seq_queue_info_t*);
extern int (*snd_seq_queue_info_get_queue)(const snd_seq_queue_info_t*);
extern const char* (*snd_seq_queue_info_get_name)(const snd_seq_queue_info_t*);
extern int (*snd_seq_queue_info_get_owner)(const snd_seq_queue_info_t*);
extern int (*snd_seq_queue_info_get_locked)(const snd_seq_queue_info_t*);
extern unsigned int (*snd_seq_queue_info_get_flags)(const snd_seq_queue_info_t*);
extern void (*snd_seq_queue_info_set_name)( snd_seq_queue_info_t*,const char*);
extern void (*snd_seq_queue_info_set_owner)( snd_seq_queue_info_t*, int);
extern void (*snd_seq_queue_info_set_locked)( snd_seq_queue_info_t*, int);
extern void (*snd_seq_queue_info_set_flags)( snd_seq_queue_info_t*, unsigned int);
extern int (*snd_seq_create_queue)( snd_seq_t*, snd_seq_queue_info_t*);
extern int (*snd_seq_alloc_named_queue)( snd_seq_t*,const char*);
extern int (*snd_seq_alloc_queue)( snd_seq_t*);
extern int (*snd_seq_free_queue)( snd_seq_t*, int);
extern int (*snd_seq_get_queue_info)( snd_seq_t*, int, snd_seq_queue_info_t*);
extern int (*snd_seq_set_queue_info)( snd_seq_t*, int, snd_seq_queue_info_t*);
extern int (*snd_seq_query_named_queue)( snd_seq_t*,const char*);
extern int (*snd_seq_get_queue_usage)( snd_seq_t*, int);
extern int (*snd_seq_set_queue_usage)( snd_seq_t*, int, int);
extern size_t (*snd_seq_queue_status_sizeof)( void);
extern int (*snd_seq_queue_status_malloc)( snd_seq_queue_status_t**);
extern void (*snd_seq_queue_status_free)( snd_seq_queue_status_t*);
extern void (*snd_seq_queue_status_copy)( snd_seq_queue_status_t*,const snd_seq_queue_status_t*);
extern int (*snd_seq_queue_status_get_queue)(const snd_seq_queue_status_t*);
extern int (*snd_seq_queue_status_get_events)(const snd_seq_queue_status_t*);
extern snd_seq_tick_time_t (*snd_seq_queue_status_get_tick_time)(const snd_seq_queue_status_t*);
extern const snd_seq_real_time_t* (*snd_seq_queue_status_get_real_time)(const snd_seq_queue_status_t*);
extern unsigned int (*snd_seq_queue_status_get_status)(const snd_seq_queue_status_t*);
extern int (*snd_seq_get_queue_status)( snd_seq_t*, int, snd_seq_queue_status_t*);
extern size_t (*snd_seq_queue_tempo_sizeof)( void);
extern int (*snd_seq_queue_tempo_malloc)( snd_seq_queue_tempo_t**);
extern void (*snd_seq_queue_tempo_free)( snd_seq_queue_tempo_t*);
extern void (*snd_seq_queue_tempo_copy)( snd_seq_queue_tempo_t*,const snd_seq_queue_tempo_t*);
extern int (*snd_seq_queue_tempo_get_queue)(const snd_seq_queue_tempo_t*);
extern unsigned int (*snd_seq_queue_tempo_get_tempo)(const snd_seq_queue_tempo_t*);
extern int (*snd_seq_queue_tempo_get_ppq)(const snd_seq_queue_tempo_t*);
extern unsigned int (*snd_seq_queue_tempo_get_skew)(const snd_seq_queue_tempo_t*);
extern unsigned int (*snd_seq_queue_tempo_get_skew_base)(const snd_seq_queue_tempo_t*);
extern void (*snd_seq_queue_tempo_set_tempo)( snd_seq_queue_tempo_t*, unsigned int);
extern void (*snd_seq_queue_tempo_set_ppq)( snd_seq_queue_tempo_t*, int);
extern void (*snd_seq_queue_tempo_set_skew)( snd_seq_queue_tempo_t*, unsigned int);
extern void (*snd_seq_queue_tempo_set_skew_base)( snd_seq_queue_tempo_t*, unsigned int);
extern int (*snd_seq_get_queue_tempo)( snd_seq_t*, int, snd_seq_queue_tempo_t*);
extern int (*snd_seq_set_queue_tempo)( snd_seq_t*, int, snd_seq_queue_tempo_t*);
extern size_t (*snd_seq_queue_timer_sizeof)( void);
extern int (*snd_seq_queue_timer_malloc)( snd_seq_queue_timer_t**);
extern void (*snd_seq_queue_timer_free)( snd_seq_queue_timer_t*);
extern void (*snd_seq_queue_timer_copy)( snd_seq_queue_timer_t*,const snd_seq_queue_timer_t*);
extern int (*snd_seq_queue_timer_get_queue)(const snd_seq_queue_timer_t*);
extern snd_seq_queue_timer_type_t (*snd_seq_queue_timer_get_type)(const snd_seq_queue_timer_t*);
extern const snd_timer_id_t* (*snd_seq_queue_timer_get_id)(const snd_seq_queue_timer_t*);
extern unsigned int (*snd_seq_queue_timer_get_resolution)(const snd_seq_queue_timer_t*);
extern void (*snd_seq_queue_timer_set_type)( snd_seq_queue_timer_t*, snd_seq_queue_timer_type_t);
extern void (*snd_seq_queue_timer_set_id)( snd_seq_queue_timer_t*,const snd_timer_id_t*);
extern void (*snd_seq_queue_timer_set_resolution)( snd_seq_queue_timer_t*, unsigned int);
extern int (*snd_seq_get_queue_timer)( snd_seq_t*, int, snd_seq_queue_timer_t*);
extern int (*snd_seq_set_queue_timer)( snd_seq_t*, int, snd_seq_queue_timer_t*);
extern int (*snd_seq_free_event)( snd_seq_event_t*);
extern ssize_t (*snd_seq_event_length)( snd_seq_event_t*);
extern int (*snd_seq_event_output)( snd_seq_t*, snd_seq_event_t*);
extern int (*snd_seq_event_output_buffer)( snd_seq_t*, snd_seq_event_t*);
extern int (*snd_seq_event_output_direct)( snd_seq_t*, snd_seq_event_t*);
extern int (*snd_seq_event_input)( snd_seq_t*, snd_seq_event_t**);
extern int (*snd_seq_event_input_pending)( snd_seq_t*, int);
extern int (*snd_seq_drain_output)( snd_seq_t*);
extern int (*snd_seq_event_output_pending)( snd_seq_t*);
extern int (*snd_seq_extract_output)( snd_seq_t*, snd_seq_event_t**);
extern int (*snd_seq_drop_output)( snd_seq_t*);
extern int (*snd_seq_drop_output_buffer)( snd_seq_t*);
extern int (*snd_seq_drop_input)( snd_seq_t*);
extern int (*snd_seq_drop_input_buffer)( snd_seq_t*);
extern size_t (*snd_seq_remove_events_sizeof)( void);
extern int (*snd_seq_remove_events_malloc)( snd_seq_remove_events_t**);
extern void (*snd_seq_remove_events_free)( snd_seq_remove_events_t*);
extern void (*snd_seq_remove_events_copy)( snd_seq_remove_events_t*,const snd_seq_remove_events_t*);
extern unsigned int (*snd_seq_remove_events_get_condition)(const snd_seq_remove_events_t*);
extern int (*snd_seq_remove_events_get_queue)(const snd_seq_remove_events_t*);
extern const snd_seq_timestamp_t* (*snd_seq_remove_events_get_time)(const snd_seq_remove_events_t*);
extern const snd_seq_addr_t* (*snd_seq_remove_events_get_dest)(const snd_seq_remove_events_t*);
extern int (*snd_seq_remove_events_get_channel)(const snd_seq_remove_events_t*);
extern int (*snd_seq_remove_events_get_event_type)(const snd_seq_remove_events_t*);
extern int (*snd_seq_remove_events_get_tag)(const snd_seq_remove_events_t*);
extern void (*snd_seq_remove_events_set_condition)( snd_seq_remove_events_t*, unsigned int);
extern void (*snd_seq_remove_events_set_queue)( snd_seq_remove_events_t*, int);
extern void (*snd_seq_remove_events_set_time)( snd_seq_remove_events_t*,const snd_seq_timestamp_t*);
extern void (*snd_seq_remove_events_set_dest)( snd_seq_remove_events_t*,const snd_seq_addr_t*);
extern void (*snd_seq_remove_events_set_channel)( snd_seq_remove_events_t*, int);
extern void (*snd_seq_remove_events_set_event_type)( snd_seq_remove_events_t*, int);
extern void (*snd_seq_remove_events_set_tag)( snd_seq_remove_events_t*, int);
extern int (*snd_seq_remove_events)( snd_seq_t*, snd_seq_remove_events_t*);
extern void (*snd_seq_set_bit)( int, void*);
extern void (*snd_seq_unset_bit)( int, void*);
extern int (*snd_seq_change_bit)( int, void*);
extern int (*snd_seq_get_bit)( int, void*);
extern int (*snd_seq_control_queue)( snd_seq_t*, int, int, int, snd_seq_event_t*);
extern int (*snd_seq_create_simple_port)( snd_seq_t*,const char*, unsigned int, unsigned int);
extern int (*snd_seq_delete_simple_port)( snd_seq_t*, int);
extern int (*snd_seq_connect_from)( snd_seq_t*, int, int, int);
extern int (*snd_seq_connect_to)( snd_seq_t*, int, int, int);
extern int (*snd_seq_disconnect_from)( snd_seq_t*, int, int, int);
extern int (*snd_seq_disconnect_to)( snd_seq_t*, int, int, int);
extern int (*snd_seq_set_client_name)( snd_seq_t*,const char*);
extern int (*snd_seq_set_client_event_filter)( snd_seq_t*, int);
extern int (*snd_seq_set_client_pool_output)( snd_seq_t*, size_t);
extern int (*snd_seq_set_client_pool_output_room)( snd_seq_t*, size_t);
extern int (*snd_seq_set_client_pool_input)( snd_seq_t*, size_t);
extern int (*snd_seq_sync_output_queue)( snd_seq_t*);
extern int (*snd_seq_parse_address)( snd_seq_t*, snd_seq_addr_t*,const char*);
extern int (*snd_seq_reset_pool_output)( snd_seq_t*);
extern int (*snd_seq_reset_pool_input)( snd_seq_t*);
extern int (*snd_midi_event_new)( size_t, snd_midi_event_t**);
extern int (*snd_midi_event_resize_buffer)( snd_midi_event_t*, size_t);
extern void (*snd_midi_event_free)( snd_midi_event_t*);
extern void (*snd_midi_event_init)( snd_midi_event_t*);
extern void (*snd_midi_event_reset_encode)( snd_midi_event_t*);
extern void (*snd_midi_event_reset_decode)( snd_midi_event_t*);
extern void (*snd_midi_event_no_status)( snd_midi_event_t*, int);
extern long (*snd_midi_event_encode)( snd_midi_event_t*,const unsigned char*, long, snd_seq_event_t*);
extern int (*snd_midi_event_encode_byte)( snd_midi_event_t*, int, snd_seq_event_t*);
extern long (*snd_midi_event_decode)( snd_midi_event_t*, unsigned char*, long,const snd_seq_event_t*);
int initialize_asound();
#ifdef __cplusplus
}
#endif
|