minidump-common 0.1.0

Some common types for working with minidump files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
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
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
//! Minidump structure definitions (autogenerated from C headers).
//!
//! This file is automatically generated from Breakpad's [minidump_format.h][1]
//! using [rust-bindgen][2].
//! [1]: https://chromium.googlesource.com/breakpad/breakpad/+/master/src/google_breakpad/common/minidump_format.h
//! [2]: https://github.com/crabtw/rust-bindgen
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]

/* automatically generated by rust-bindgen */

pub const _INTTYPES_H: ::libc::c_uint = 1;
pub const _FEATURES_H: ::libc::c_uint = 1;
pub const _DEFAULT_SOURCE: ::libc::c_uint = 1;
pub const _BSD_SOURCE: ::libc::c_uint = 1;
pub const _SVID_SOURCE: ::libc::c_uint = 1;
pub const __USE_ISOC99: ::libc::c_uint = 1;
pub const __USE_ISOC95: ::libc::c_uint = 1;
pub const __USE_POSIX_IMPLICITLY: ::libc::c_uint = 1;
pub const _POSIX_SOURCE: ::libc::c_uint = 1;
pub const __USE_POSIX: ::libc::c_uint = 1;
pub const __USE_POSIX2: ::libc::c_uint = 1;
pub const __USE_POSIX199309: ::libc::c_uint = 1;
pub const __USE_POSIX199506: ::libc::c_uint = 1;
pub const __USE_XOPEN2K: ::libc::c_uint = 1;
pub const __USE_XOPEN2K8: ::libc::c_uint = 1;
pub const _ATFILE_SOURCE: ::libc::c_uint = 1;
pub const __USE_MISC: ::libc::c_uint = 1;
pub const __USE_BSD: ::libc::c_uint = 1;
pub const __USE_SVID: ::libc::c_uint = 1;
pub const __USE_ATFILE: ::libc::c_uint = 1;
pub const __USE_FORTIFY_LEVEL: ::libc::c_uint = 0;
pub const _STDC_PREDEF_H: ::libc::c_uint = 1;
pub const __STDC_IEC_559__: ::libc::c_uint = 1;
pub const __STDC_IEC_559_COMPLEX__: ::libc::c_uint = 1;
pub const __STDC_NO_THREADS__: ::libc::c_uint = 1;
pub const __GNU_LIBRARY__: ::libc::c_uint = 6;
pub const __GLIBC__: ::libc::c_uint = 2;
pub const __GLIBC_MINOR__: ::libc::c_uint = 19;
pub const _SYS_CDEFS_H: ::libc::c_uint = 1;
pub const __WORDSIZE: ::libc::c_uint = 64;
pub const __WORDSIZE_TIME64_COMPAT32: ::libc::c_uint = 1;
pub const __SYSCALL_WORDSIZE: ::libc::c_uint = 64;
pub const _STDINT_H: ::libc::c_uint = 1;
pub const _BITS_WCHAR_H: ::libc::c_uint = 1;
pub const ____gwchar_t_defined: ::libc::c_uint = 1;
pub const MD_CONTEXT_IA64: ::libc::c_uint = 524288;
pub const MD_CONTEXT_SHX: ::libc::c_uint = 192;
pub const MD_CONTEXT_ALPHA: ::libc::c_uint = 131072;
pub const MD_CONTEXT_CPU_MASK: ::libc::c_uint = 4294967040;
pub const MD_CONTEXT_AMD64_VR_COUNT: ::libc::c_uint = 26;
pub const MD_CONTEXT_AMD64: ::libc::c_uint = 1048576;
pub const MD_FLOATINGSAVEAREA_ARM_FPR_COUNT: ::libc::c_uint = 32;
pub const MD_FLOATINGSAVEAREA_ARM_FPEXTRA_COUNT: ::libc::c_uint = 8;
pub const MD_CONTEXT_ARM_GPR_COUNT: ::libc::c_uint = 16;
pub const MD_CONTEXT_ARM_OLD: ::libc::c_uint = 64;
pub const MD_CONTEXT_ARM: ::libc::c_uint = 1073741824;
pub const MD_FLOATINGSAVEAREA_ARM64_FPR_COUNT: ::libc::c_uint = 32;
pub const MD_CONTEXT_ARM64_GPR_COUNT: ::libc::c_uint = 33;
pub const MD_CONTEXT_ARM64: ::libc::c_uint = 2147483648;
pub const MD_CONTEXT_MIPS_GPR_COUNT: ::libc::c_uint = 32;
pub const MD_FLOATINGSAVEAREA_MIPS_FPR_COUNT: ::libc::c_uint = 32;
pub const MD_CONTEXT_MIPS_DSP_COUNT: ::libc::c_uint = 3;
pub const MD_CONTEXT_MIPS: ::libc::c_uint = 262144;
pub const MD_CONTEXT_MIPS64: ::libc::c_uint = 524288;
pub const MD_FLOATINGSAVEAREA_PPC_FPR_COUNT: ::libc::c_uint = 32;
pub const MD_VECTORSAVEAREA_PPC_VR_COUNT: ::libc::c_uint = 32;
pub const MD_CONTEXT_PPC_GPR_COUNT: ::libc::c_uint = 32;
pub const MD_CONTEXT_PPC: ::libc::c_uint = 536870912;
pub const MD_CONTEXT_PPC64: ::libc::c_uint = 16777216;
pub const MD_FLOATINGSAVEAREA_SPARC_FPR_COUNT: ::libc::c_uint = 32;
pub const MD_CONTEXT_SPARC_GPR_COUNT: ::libc::c_uint = 32;
pub const MD_CONTEXT_SPARC: ::libc::c_uint = 268435456;
pub const MD_FLOATINGSAVEAREA_X86_REGISTERAREA_SIZE: ::libc::c_uint = 80;
pub const MD_CONTEXT_X86_EXTENDED_REGISTERS_SIZE: ::libc::c_uint = 512;
pub const MD_CONTEXT_X86: ::libc::c_uint = 65536;
pub const MD_VSFIXEDFILEINFO_SIGNATURE: ::libc::c_uint = 4277077181;
pub const MD_VSFIXEDFILEINFO_VERSION: ::libc::c_uint = 65536;
pub const MD_VSFIXEDFILEINFO_FILE_FLAGS_DEBUG: ::libc::c_uint = 1;
pub const MD_VSFIXEDFILEINFO_FILE_FLAGS_PRERELEASE: ::libc::c_uint = 2;
pub const MD_VSFIXEDFILEINFO_FILE_FLAGS_PATCHED: ::libc::c_uint = 4;
pub const MD_VSFIXEDFILEINFO_FILE_FLAGS_PRIVATEBUILD: ::libc::c_uint = 8;
pub const MD_VSFIXEDFILEINFO_FILE_FLAGS_INFOINFERRED: ::libc::c_uint = 16;
pub const MD_VSFIXEDFILEINFO_FILE_FLAGS_SPECIALBUILD: ::libc::c_uint = 32;
pub const MD_VSFIXEDFILEINFO_FILE_OS_UNKNOWN: ::libc::c_uint = 0;
pub const MD_VSFIXEDFILEINFO_FILE_OS_DOS: ::libc::c_uint = 1 << 16;
pub const MD_VSFIXEDFILEINFO_FILE_OS_OS216: ::libc::c_uint = 2 << 16;
pub const MD_VSFIXEDFILEINFO_FILE_OS_OS232: ::libc::c_uint = 3 << 16;
pub const MD_VSFIXEDFILEINFO_FILE_OS_NT: ::libc::c_uint = 4 << 16;
pub const MD_VSFIXEDFILEINFO_FILE_OS_WINCE: ::libc::c_uint = 5 << 16;
pub const MD_VSFIXEDFILEINFO_FILE_OS__BASE: ::libc::c_uint = 0;
pub const MD_VSFIXEDFILEINFO_FILE_OS__WINDOWS16: ::libc::c_uint = 1;
pub const MD_VSFIXEDFILEINFO_FILE_OS__PM16: ::libc::c_uint = 2;
pub const MD_VSFIXEDFILEINFO_FILE_OS__PM32: ::libc::c_uint = 3;
pub const MD_VSFIXEDFILEINFO_FILE_OS__WINDOWS32: ::libc::c_uint = 4;
pub const MD_VSFIXEDFILEINFO_FILE_TYPE_UNKNOWN: ::libc::c_uint = 0;
pub const MD_VSFIXEDFILEINFO_FILE_TYPE_APP: ::libc::c_uint = 1;
pub const MD_VSFIXEDFILEINFO_FILE_TYPE_DLL: ::libc::c_uint = 2;
pub const MD_VSFIXEDFILEINFO_FILE_TYPE_DRV: ::libc::c_uint = 3;
pub const MD_VSFIXEDFILEINFO_FILE_TYPE_FONT: ::libc::c_uint = 4;
pub const MD_VSFIXEDFILEINFO_FILE_TYPE_VXD: ::libc::c_uint = 5;
pub const MD_VSFIXEDFILEINFO_FILE_TYPE_STATIC_LIB: ::libc::c_uint = 7;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_UNKNOWN: ::libc::c_uint = 0;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_PRINTER: ::libc::c_uint = 1;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_KEYBOARD: ::libc::c_uint = 2;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_LANGUAGE: ::libc::c_uint = 3;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_DISPLAY: ::libc::c_uint = 4;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_MOUSE: ::libc::c_uint = 5;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_NETWORK: ::libc::c_uint = 6;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_SYSTEM: ::libc::c_uint = 7;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_INSTALLABLE: ::libc::c_uint = 8;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_SOUND: ::libc::c_uint = 9;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_COMM: ::libc::c_uint = 10;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_INPUTMETHOD: ::libc::c_uint =
    11;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_DRV_VERSIONED_PRINTER:
          ::libc::c_uint =
    12;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_FONT_RASTER: ::libc::c_uint = 1;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_FONT_VECTOR: ::libc::c_uint = 2;
pub const MD_VSFIXEDFILEINFO_FILE_SUBTYPE_FONT_TRUETYPE: ::libc::c_uint = 3;
pub const MD_HEADER_SIGNATURE: ::libc::c_uint = 1347241037;
pub const MD_HEADER_VERSION: ::libc::c_uint = 42899;
pub const MD_MODULE_SIZE: ::libc::c_uint = 108;
pub const MD_CVINFOPDB20_SIGNATURE: ::libc::c_uint = 808534606;
pub const MD_CVINFOPDB70_SIGNATURE: ::libc::c_uint = 1396986706;
pub const MD_CVINFOELF_SIGNATURE: ::libc::c_uint = 1114654028;
pub const MD_CVINFOCV41_SIGNATURE: ::libc::c_uint = 959464014;
pub const MD_CVINFOCV50_SIGNATURE: ::libc::c_uint = 825311822;
pub const MD_CVINFOUNKNOWN_SIGNATURE: ::libc::c_uint = 4294967295;
pub const MD_EXCEPTION_MAXIMUM_PARAMETERS: ::libc::c_uint = 15;
pub const MD_MAX_PATH: ::libc::c_uint = 260;
pub type ptrdiff_t = ::libc::c_long;
pub type size_t = ::libc::c_ulong;
pub type wchar_t = ::libc::c_int;
pub type int8_t = ::libc::c_char;
pub type int16_t = ::libc::c_short;
pub type int32_t = ::libc::c_int;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type int64_t = ::libc::c_longlong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type int64_t = ::libc::c_long;
pub type uint8_t = ::libc::c_uchar;
pub type uint16_t = ::libc::c_ushort;
pub type uint32_t = ::libc::c_uint;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type uint64_t = ::libc::c_ulonglong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type uint64_t = ::libc::c_ulong;
pub type int_least8_t = ::libc::c_char;
pub type int_least16_t = ::libc::c_short;
pub type int_least32_t = ::libc::c_int;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type int_least64_t = ::libc::c_longlong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type int_least64_t = ::libc::c_long;
pub type uint_least8_t = ::libc::c_uchar;
pub type uint_least16_t = ::libc::c_ushort;
pub type uint_least32_t = ::libc::c_uint;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type uint_least64_t = ::libc::c_ulonglong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type uint_least64_t = ::libc::c_ulong;
pub type int_fast8_t = ::libc::c_char;
pub type int_fast16_t = ::libc::c_long;
pub type int_fast32_t = ::libc::c_long;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type int_fast64_t = ::libc::c_longlong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type int_fast64_t = ::libc::c_long;
pub type uint_fast8_t = ::libc::c_uchar;
pub type uint_fast16_t = ::libc::c_ulong;
pub type uint_fast32_t = ::libc::c_ulong;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type uint_fast64_t = ::libc::c_ulonglong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type uint_fast64_t = ::libc::c_ulong;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type intptr_t = ::libc::c_longlong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type intptr_t = ::libc::c_long;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type uintptr_t = ::libc::c_ulonglong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type uintptr_t = ::libc::c_ulong;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type intmax_t = ::libc::c_longlong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type intmax_t = ::libc::c_long;
#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
pub type uintmax_t = ::libc::c_ulonglong;
#[cfg(all(not(target_os = "windows"), target_pointer_width = "64"))]
pub type uintmax_t = ::libc::c_ulong;
pub type __gwchar_t = ::libc::c_int;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed1 {
    pub quot: ::libc::c_long,
    pub rem: ::libc::c_long,
}
impl ::std::clone::Clone for Struct_Unnamed1 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed1 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type imaxdiv_t = Struct_Unnamed1;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed2 {
    pub high: uint64_t,
    pub low: uint64_t,
}
impl ::std::clone::Clone for Struct_Unnamed2 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed2 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type uint128_struct = Struct_Unnamed2;
pub type breakpad_time_t = uint64_t;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed3 {
    pub data1: uint32_t,
    pub data2: uint16_t,
    pub data3: uint16_t,
    pub data4: [uint8_t; 8usize],
}
impl ::std::clone::Clone for Struct_Unnamed3 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed3 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDGUID = Struct_Unnamed3;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed4 {
    pub context_flags: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed4 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed4 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawContextBase = Struct_Unnamed4;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed5 {
    pub control_word: uint16_t,
    pub status_word: uint16_t,
    pub tag_word: uint8_t,
    pub reserved1: uint8_t,
    pub error_opcode: uint16_t,
    pub error_offset: uint32_t,
    pub error_selector: uint16_t,
    pub reserved2: uint16_t,
    pub data_offset: uint32_t,
    pub data_selector: uint16_t,
    pub reserved3: uint16_t,
    pub mx_csr: uint32_t,
    pub mx_csr_mask: uint32_t,
    pub float_registers: [uint128_struct; 8usize],
    pub xmm_registers: [uint128_struct; 16usize],
    pub reserved4: [uint8_t; 96usize],
}
impl ::std::clone::Clone for Struct_Unnamed5 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed5 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDXmmSaveArea32AMD64 = Struct_Unnamed5;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed6 {
    pub p1_home: uint64_t,
    pub p2_home: uint64_t,
    pub p3_home: uint64_t,
    pub p4_home: uint64_t,
    pub p5_home: uint64_t,
    pub p6_home: uint64_t,
    pub context_flags: uint32_t,
    pub mx_csr: uint32_t,
    pub cs: uint16_t,
    pub ds: uint16_t,
    pub es: uint16_t,
    pub fs: uint16_t,
    pub gs: uint16_t,
    pub ss: uint16_t,
    pub eflags: uint32_t,
    pub dr0: uint64_t,
    pub dr1: uint64_t,
    pub dr2: uint64_t,
    pub dr3: uint64_t,
    pub dr6: uint64_t,
    pub dr7: uint64_t,
    pub rax: uint64_t,
    pub rcx: uint64_t,
    pub rdx: uint64_t,
    pub rbx: uint64_t,
    pub rsp: uint64_t,
    pub rbp: uint64_t,
    pub rsi: uint64_t,
    pub rdi: uint64_t,
    pub r8: uint64_t,
    pub r9: uint64_t,
    pub r10: uint64_t,
    pub r11: uint64_t,
    pub r12: uint64_t,
    pub r13: uint64_t,
    pub r14: uint64_t,
    pub r15: uint64_t,
    pub rip: uint64_t,
    pub _bindgen_data_1_: [u64; 64usize],
    pub vector_register: [uint128_struct; 26usize],
    pub vector_control: uint64_t,
    pub debug_control: uint64_t,
    pub last_branch_to_rip: uint64_t,
    pub last_branch_from_rip: uint64_t,
    pub last_exception_to_rip: uint64_t,
    pub last_exception_from_rip: uint64_t,
}
impl Struct_Unnamed6 {
    pub unsafe fn flt_save(&mut self) -> *mut MDXmmSaveArea32AMD64 {
        let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_1_);
        ::std::mem::transmute(raw.offset(0))
    }
    pub unsafe fn sse_registers(&mut self) -> *mut Struct_Unnamed7 {
        let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_1_);
        ::std::mem::transmute(raw.offset(0))
    }
}
impl ::std::clone::Clone for Struct_Unnamed6 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed6 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed7 {
    pub header: [uint128_struct; 2usize],
    pub legacy: [uint128_struct; 8usize],
    pub xmm0: uint128_struct,
    pub xmm1: uint128_struct,
    pub xmm2: uint128_struct,
    pub xmm3: uint128_struct,
    pub xmm4: uint128_struct,
    pub xmm5: uint128_struct,
    pub xmm6: uint128_struct,
    pub xmm7: uint128_struct,
    pub xmm8: uint128_struct,
    pub xmm9: uint128_struct,
    pub xmm10: uint128_struct,
    pub xmm11: uint128_struct,
    pub xmm12: uint128_struct,
    pub xmm13: uint128_struct,
    pub xmm14: uint128_struct,
    pub xmm15: uint128_struct,
}
impl ::std::clone::Clone for Struct_Unnamed7 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed7 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawContextAMD64 = Struct_Unnamed6;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed8 {
    pub fpscr: uint64_t,
    pub regs: [uint64_t; 32usize],
    pub extra: [uint32_t; 8usize],
}
impl ::std::clone::Clone for Struct_Unnamed8 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed8 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDFloatingSaveAreaARM = Struct_Unnamed8;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed9 {
    pub context_flags: uint32_t,
    pub iregs: [uint32_t; 16usize],
    pub cpsr: uint32_t,
    pub float_save: MDFloatingSaveAreaARM,
}
impl ::std::clone::Clone for Struct_Unnamed9 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed9 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawContextARM = Struct_Unnamed9;
pub type Enum_MDARMRegisterNumbers = ::libc::c_uint;
pub const MD_CONTEXT_ARM_REG_IOS_FP: ::libc::c_uint = 7;
pub const MD_CONTEXT_ARM_REG_FP: ::libc::c_uint = 11;
pub const MD_CONTEXT_ARM_REG_SP: ::libc::c_uint = 13;
pub const MD_CONTEXT_ARM_REG_LR: ::libc::c_uint = 14;
pub const MD_CONTEXT_ARM_REG_PC: ::libc::c_uint = 15;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed10 {
    pub fpsr: uint32_t,
    pub fpcr: uint32_t,
    pub regs: [uint128_struct; 32usize],
}
impl ::std::clone::Clone for Struct_Unnamed10 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed10 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDFloatingSaveAreaARM64 = Struct_Unnamed10;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed11 {
    pub context_flags: uint64_t,
    pub iregs: [uint64_t; 33usize],
    pub cpsr: uint32_t,
    pub float_save: MDFloatingSaveAreaARM64,
}
impl ::std::clone::Clone for Struct_Unnamed11 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed11 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawContextARM64 = Struct_Unnamed11;
pub type Enum_MDARM64RegisterNumbers = ::libc::c_uint;
pub const MD_CONTEXT_ARM64_REG_FP: ::libc::c_uint = 29;
pub const MD_CONTEXT_ARM64_REG_LR: ::libc::c_uint = 30;
pub const MD_CONTEXT_ARM64_REG_SP: ::libc::c_uint = 31;
pub const MD_CONTEXT_ARM64_REG_PC: ::libc::c_uint = 32;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed12 {
    pub regs: [uint64_t; 32usize],
    pub fpcsr: uint32_t,
    pub fir: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed12 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed12 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDFloatingSaveAreaMIPS = Struct_Unnamed12;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed13 {
    pub context_flags: uint32_t,
    pub _pad0: uint32_t,
    pub iregs: [uint64_t; 32usize],
    pub mdhi: uint64_t,
    pub mdlo: uint64_t,
    pub hi: [uint32_t; 3usize],
    pub lo: [uint32_t; 3usize],
    pub dsp_control: uint32_t,
    pub _pad1: uint32_t,
    pub epc: uint64_t,
    pub badvaddr: uint64_t,
    pub status: uint32_t,
    pub cause: uint32_t,
    pub float_save: MDFloatingSaveAreaMIPS,
}
impl ::std::clone::Clone for Struct_Unnamed13 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed13 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawContextMIPS = Struct_Unnamed13;
pub type Enum_MDMIPSRegisterNumbers = ::libc::c_uint;
pub const MD_CONTEXT_MIPS_REG_S0: ::libc::c_uint = 16;
pub const MD_CONTEXT_MIPS_REG_S1: ::libc::c_uint = 17;
pub const MD_CONTEXT_MIPS_REG_S2: ::libc::c_uint = 18;
pub const MD_CONTEXT_MIPS_REG_S3: ::libc::c_uint = 19;
pub const MD_CONTEXT_MIPS_REG_S4: ::libc::c_uint = 20;
pub const MD_CONTEXT_MIPS_REG_S5: ::libc::c_uint = 21;
pub const MD_CONTEXT_MIPS_REG_S6: ::libc::c_uint = 22;
pub const MD_CONTEXT_MIPS_REG_S7: ::libc::c_uint = 23;
pub const MD_CONTEXT_MIPS_REG_GP: ::libc::c_uint = 28;
pub const MD_CONTEXT_MIPS_REG_SP: ::libc::c_uint = 29;
pub const MD_CONTEXT_MIPS_REG_FP: ::libc::c_uint = 30;
pub const MD_CONTEXT_MIPS_REG_RA: ::libc::c_uint = 31;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed14 {
    pub fpregs: [uint64_t; 32usize],
    pub fpscr_pad: uint32_t,
    pub fpscr: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed14 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed14 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDFloatingSaveAreaPPC = Struct_Unnamed14;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed15 {
    pub save_vr: [uint128_struct; 32usize],
    pub save_vscr: uint128_struct,
    pub save_pad5: [uint32_t; 4usize],
    pub save_vrvalid: uint32_t,
    pub save_pad6: [uint32_t; 7usize],
}
impl ::std::clone::Clone for Struct_Unnamed15 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed15 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDVectorSaveAreaPPC = Struct_Unnamed15;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed16 {
    pub context_flags: uint32_t,
    pub srr0: uint32_t,
    pub srr1: uint32_t,
    pub gpr: [uint32_t; 32usize],
    pub cr: uint32_t,
    pub xer: uint32_t,
    pub lr: uint32_t,
    pub ctr: uint32_t,
    pub mq: uint32_t,
    pub vrsave: uint32_t,
    pub float_save: MDFloatingSaveAreaPPC,
    pub vector_save: MDVectorSaveAreaPPC,
}
impl ::std::clone::Clone for Struct_Unnamed16 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed16 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawContextPPC = Struct_Unnamed16;
pub type Enum_MDPPCRegisterNumbers = ::libc::c_uint;
pub const MD_CONTEXT_PPC_REG_SP: ::libc::c_uint = 1;
pub type MDFloatingSaveAreaPPC64 = MDFloatingSaveAreaPPC;
pub type MDVectorSaveAreaPPC64 = MDVectorSaveAreaPPC;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed17 {
    pub context_flags: uint64_t,
    pub srr0: uint64_t,
    pub srr1: uint64_t,
    pub gpr: [uint64_t; 32usize],
    pub cr: uint64_t,
    pub xer: uint64_t,
    pub lr: uint64_t,
    pub ctr: uint64_t,
    pub vrsave: uint64_t,
    pub float_save: MDFloatingSaveAreaPPC,
    pub vector_save: MDVectorSaveAreaPPC,
}
impl ::std::clone::Clone for Struct_Unnamed17 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed17 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawContextPPC64 = Struct_Unnamed17;
pub type Enum_MDPPC64RegisterNumbers = ::libc::c_uint;
pub const MD_CONTEXT_PPC64_REG_SP: ::libc::c_uint = 1;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed18 {
    pub regs: [uint64_t; 32usize],
    pub filler: uint64_t,
    pub fsr: uint64_t,
}
impl ::std::clone::Clone for Struct_Unnamed18 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed18 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDFloatingSaveAreaSPARC = Struct_Unnamed18;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed19 {
    pub context_flags: uint32_t,
    pub flag_pad: uint32_t,
    pub g_r: [uint64_t; 32usize],
    pub ccr: uint64_t,
    pub pc: uint64_t,
    pub npc: uint64_t,
    pub y: uint64_t,
    pub asi: uint64_t,
    pub fprs: uint64_t,
    pub float_save: MDFloatingSaveAreaSPARC,
}
impl ::std::clone::Clone for Struct_Unnamed19 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed19 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawContextSPARC = Struct_Unnamed19;
pub type Enum_MDSPARCRegisterNumbers = ::libc::c_uint;
pub const MD_CONTEXT_SPARC_REG_SP: ::libc::c_uint = 14;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed20 {
    pub control_word: uint32_t,
    pub status_word: uint32_t,
    pub tag_word: uint32_t,
    pub error_offset: uint32_t,
    pub error_selector: uint32_t,
    pub data_offset: uint32_t,
    pub data_selector: uint32_t,
    pub register_area: [uint8_t; 80usize],
    pub cr0_npx_state: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed20 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed20 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDFloatingSaveAreaX86 = Struct_Unnamed20;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed21 {
    pub context_flags: uint32_t,
    pub dr0: uint32_t,
    pub dr1: uint32_t,
    pub dr2: uint32_t,
    pub dr3: uint32_t,
    pub dr6: uint32_t,
    pub dr7: uint32_t,
    pub float_save: MDFloatingSaveAreaX86,
    pub gs: uint32_t,
    pub fs: uint32_t,
    pub es: uint32_t,
    pub ds: uint32_t,
    pub edi: uint32_t,
    pub esi: uint32_t,
    pub ebx: uint32_t,
    pub edx: uint32_t,
    pub ecx: uint32_t,
    pub eax: uint32_t,
    pub ebp: uint32_t,
    pub eip: uint32_t,
    pub cs: uint32_t,
    pub eflags: uint32_t,
    pub esp: uint32_t,
    pub ss: uint32_t,
    pub extended_registers: [uint8_t; 512usize],
}
impl ::std::clone::Clone for Struct_Unnamed21 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed21 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawContextX86 = Struct_Unnamed21;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed22 {
    pub signature: uint32_t,
    pub struct_version: uint32_t,
    pub file_version_hi: uint32_t,
    pub file_version_lo: uint32_t,
    pub product_version_hi: uint32_t,
    pub product_version_lo: uint32_t,
    pub file_flags_mask: uint32_t,
    pub file_flags: uint32_t,
    pub file_os: uint32_t,
    pub file_type: uint32_t,
    pub file_subtype: uint32_t,
    pub file_date_hi: uint32_t,
    pub file_date_lo: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed22 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed22 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDVSFixedFileInfo = Struct_Unnamed22;
pub type MDRVA = uint32_t;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed23 {
    pub data_size: uint32_t,
    pub rva: MDRVA,
}
impl ::std::clone::Clone for Struct_Unnamed23 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed23 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDLocationDescriptor = Struct_Unnamed23;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed24 {
    pub start_of_memory_range: uint64_t,
    pub memory: MDLocationDescriptor,
}
impl ::std::clone::Clone for Struct_Unnamed24 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed24 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDMemoryDescriptor = Struct_Unnamed24;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed25 {
    pub signature: uint32_t,
    pub version: uint32_t,
    pub stream_count: uint32_t,
    pub stream_directory_rva: MDRVA,
    pub checksum: uint32_t,
    pub time_date_stamp: uint32_t,
    pub flags: uint64_t,
}
impl ::std::clone::Clone for Struct_Unnamed25 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed25 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawHeader = Struct_Unnamed25;
pub type Enum_Unnamed26 = ::libc::c_uint;
pub const MD_NORMAL: ::libc::c_uint = 0;
pub const MD_WITH_DATA_SEGS: ::libc::c_uint = 1;
pub const MD_WITH_FULL_MEMORY: ::libc::c_uint = 2;
pub const MD_WITH_HANDLE_DATA: ::libc::c_uint = 4;
pub const MD_FILTER_MEMORY: ::libc::c_uint = 8;
pub const MD_SCAN_MEMORY: ::libc::c_uint = 16;
pub const MD_WITH_UNLOADED_MODULES: ::libc::c_uint = 32;
pub const MD_WITH_INDIRECTLY_REFERENCED_MEMORY: ::libc::c_uint = 64;
pub const MD_FILTER_MODULE_PATHS: ::libc::c_uint = 128;
pub const MD_WITH_PROCESS_THREAD_DATA: ::libc::c_uint = 256;
pub const MD_WITH_PRIVATE_READ_WRITE_MEMORY: ::libc::c_uint = 512;
pub const MD_WITHOUT_OPTIONAL_DATA: ::libc::c_uint = 1024;
pub const MD_WITH_FULL_MEMORY_INFO: ::libc::c_uint = 2048;
pub const MD_WITH_THREAD_INFO: ::libc::c_uint = 4096;
pub const MD_WITH_CODE_SEGS: ::libc::c_uint = 8192;
pub const MD_WITHOUT_AUXILLIARY_SEGS: ::libc::c_uint = 16384;
pub const MD_WITH_FULL_AUXILLIARY_STATE: ::libc::c_uint = 32768;
pub const MD_WITH_PRIVATE_WRITE_COPY_MEMORY: ::libc::c_uint = 65536;
pub const MD_IGNORE_INACCESSIBLE_MEMORY: ::libc::c_uint = 131072;
pub const MD_WITH_TOKEN_INFORMATION: ::libc::c_uint = 262144;
pub type MDType = Enum_Unnamed26;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed27 {
    pub stream_type: uint32_t,
    pub location: MDLocationDescriptor,
}
impl ::std::clone::Clone for Struct_Unnamed27 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed27 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawDirectory = Struct_Unnamed27;
pub type Enum_Unnamed28 = ::libc::c_uint;
pub const MD_UNUSED_STREAM: ::libc::c_uint = 0;
pub const MD_RESERVED_STREAM_0: ::libc::c_uint = 1;
pub const MD_RESERVED_STREAM_1: ::libc::c_uint = 2;
pub const MD_THREAD_LIST_STREAM: ::libc::c_uint = 3;
pub const MD_MODULE_LIST_STREAM: ::libc::c_uint = 4;
pub const MD_MEMORY_LIST_STREAM: ::libc::c_uint = 5;
pub const MD_EXCEPTION_STREAM: ::libc::c_uint = 6;
pub const MD_SYSTEM_INFO_STREAM: ::libc::c_uint = 7;
pub const MD_THREAD_EX_LIST_STREAM: ::libc::c_uint = 8;
pub const MD_MEMORY_64_LIST_STREAM: ::libc::c_uint = 9;
pub const MD_COMMENT_STREAM_A: ::libc::c_uint = 10;
pub const MD_COMMENT_STREAM_W: ::libc::c_uint = 11;
pub const MD_HANDLE_DATA_STREAM: ::libc::c_uint = 12;
pub const MD_FUNCTION_TABLE_STREAM: ::libc::c_uint = 13;
pub const MD_UNLOADED_MODULE_LIST_STREAM: ::libc::c_uint = 14;
pub const MD_MISC_INFO_STREAM: ::libc::c_uint = 15;
pub const MD_MEMORY_INFO_LIST_STREAM: ::libc::c_uint = 16;
pub const MD_THREAD_INFO_LIST_STREAM: ::libc::c_uint = 17;
pub const MD_HANDLE_OPERATION_LIST_STREAM: ::libc::c_uint = 18;
pub const MD_LAST_RESERVED_STREAM: ::libc::c_uint = 65535;
pub const MD_BREAKPAD_INFO_STREAM: ::libc::c_uint = 1197932545;
pub const MD_ASSERTION_INFO_STREAM: ::libc::c_uint = 1197932546;
pub const MD_LINUX_CPU_INFO: ::libc::c_uint = 1197932547;
pub const MD_LINUX_PROC_STATUS: ::libc::c_uint = 1197932548;
pub const MD_LINUX_LSB_RELEASE: ::libc::c_uint = 1197932549;
pub const MD_LINUX_CMD_LINE: ::libc::c_uint = 1197932550;
pub const MD_LINUX_ENVIRON: ::libc::c_uint = 1197932551;
pub const MD_LINUX_AUXV: ::libc::c_uint = 1197932552;
pub const MD_LINUX_MAPS: ::libc::c_uint = 1197932553;
pub const MD_LINUX_DSO_DEBUG: ::libc::c_uint = 1197932554;
pub type MDStreamType = Enum_Unnamed28;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed29 {
    pub length: uint32_t,
    pub buffer: [uint16_t; 1usize],
}
impl ::std::clone::Clone for Struct_Unnamed29 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed29 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDString = Struct_Unnamed29;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed30 {
    pub thread_id: uint32_t,
    pub suspend_count: uint32_t,
    pub priority_class: uint32_t,
    pub priority: uint32_t,
    pub teb: uint64_t,
    pub stack: MDMemoryDescriptor,
    pub thread_context: MDLocationDescriptor,
}
impl ::std::clone::Clone for Struct_Unnamed30 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed30 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawThread = Struct_Unnamed30;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed31 {
    pub number_of_threads: uint32_t,
    pub threads: [MDRawThread; 1usize],
}
impl ::std::clone::Clone for Struct_Unnamed31 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed31 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawThreadList = Struct_Unnamed31;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed32 {
    pub base_of_image: uint64_t,
    pub size_of_image: uint32_t,
    pub checksum: uint32_t,
    pub time_date_stamp: uint32_t,
    pub module_name_rva: MDRVA,
    pub version_info: MDVSFixedFileInfo,
    pub cv_record: MDLocationDescriptor,
    pub misc_record: MDLocationDescriptor,
    pub reserved0: [uint32_t; 2usize],
    pub reserved1: [uint32_t; 2usize],
}
impl ::std::clone::Clone for Struct_Unnamed32 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed32 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawModule = Struct_Unnamed32;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed33 {
    pub signature: uint32_t,
    pub offset: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed33 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed33 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDCVHeader = Struct_Unnamed33;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed34 {
    pub cv_header: MDCVHeader,
    pub signature: uint32_t,
    pub age: uint32_t,
    pub pdb_file_name: [uint8_t; 1usize],
}
impl ::std::clone::Clone for Struct_Unnamed34 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed34 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDCVInfoPDB20 = Struct_Unnamed34;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed35 {
    pub cv_signature: uint32_t,
    pub signature: MDGUID,
    pub age: uint32_t,
    pub pdb_file_name: [uint8_t; 1usize],
}
impl ::std::clone::Clone for Struct_Unnamed35 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed35 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDCVInfoPDB70 = Struct_Unnamed35;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed36 {
    pub cv_signature: uint32_t,
    pub build_id: [uint8_t; 1usize],
}
impl ::std::clone::Clone for Struct_Unnamed36 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed36 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDCVInfoELF = Struct_Unnamed36;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed37 {
    pub data_type: uint32_t,
    pub length: uint32_t,
    pub unicode: uint8_t,
    pub reserved: [uint8_t; 3usize],
    pub data: [uint8_t; 1usize],
}
impl ::std::clone::Clone for Struct_Unnamed37 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed37 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDImageDebugMisc = Struct_Unnamed37;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed38 {
    pub number_of_modules: uint32_t,
    pub modules: [MDRawModule; 1usize],
}
impl ::std::clone::Clone for Struct_Unnamed38 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed38 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawModuleList = Struct_Unnamed38;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed39 {
    pub number_of_memory_ranges: uint32_t,
    pub memory_ranges: [MDMemoryDescriptor; 1usize],
}
impl ::std::clone::Clone for Struct_Unnamed39 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed39 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawMemoryList = Struct_Unnamed39;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed40 {
    pub exception_code: uint32_t,
    pub exception_flags: uint32_t,
    pub exception_record: uint64_t,
    pub exception_address: uint64_t,
    pub number_parameters: uint32_t,
    pub __align: uint32_t,
    pub exception_information: [uint64_t; 15usize],
}
impl ::std::clone::Clone for Struct_Unnamed40 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed40 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDException = Struct_Unnamed40;
pub type Enum_Unnamed41 = ::libc::c_uint;
pub const MD_EXCEPTION_CODE_LIN_SIGHUP: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_LIN_SIGINT: ::libc::c_uint = 2;
pub const MD_EXCEPTION_CODE_LIN_SIGQUIT: ::libc::c_uint = 3;
pub const MD_EXCEPTION_CODE_LIN_SIGILL: ::libc::c_uint = 4;
pub const MD_EXCEPTION_CODE_LIN_SIGTRAP: ::libc::c_uint = 5;
pub const MD_EXCEPTION_CODE_LIN_SIGABRT: ::libc::c_uint = 6;
pub const MD_EXCEPTION_CODE_LIN_SIGBUS: ::libc::c_uint = 7;
pub const MD_EXCEPTION_CODE_LIN_SIGFPE: ::libc::c_uint = 8;
pub const MD_EXCEPTION_CODE_LIN_SIGKILL: ::libc::c_uint = 9;
pub const MD_EXCEPTION_CODE_LIN_SIGUSR1: ::libc::c_uint = 10;
pub const MD_EXCEPTION_CODE_LIN_SIGSEGV: ::libc::c_uint = 11;
pub const MD_EXCEPTION_CODE_LIN_SIGUSR2: ::libc::c_uint = 12;
pub const MD_EXCEPTION_CODE_LIN_SIGPIPE: ::libc::c_uint = 13;
pub const MD_EXCEPTION_CODE_LIN_SIGALRM: ::libc::c_uint = 14;
pub const MD_EXCEPTION_CODE_LIN_SIGTERM: ::libc::c_uint = 15;
pub const MD_EXCEPTION_CODE_LIN_SIGSTKFLT: ::libc::c_uint = 16;
pub const MD_EXCEPTION_CODE_LIN_SIGCHLD: ::libc::c_uint = 17;
pub const MD_EXCEPTION_CODE_LIN_SIGCONT: ::libc::c_uint = 18;
pub const MD_EXCEPTION_CODE_LIN_SIGSTOP: ::libc::c_uint = 19;
pub const MD_EXCEPTION_CODE_LIN_SIGTSTP: ::libc::c_uint = 20;
pub const MD_EXCEPTION_CODE_LIN_SIGTTIN: ::libc::c_uint = 21;
pub const MD_EXCEPTION_CODE_LIN_SIGTTOU: ::libc::c_uint = 22;
pub const MD_EXCEPTION_CODE_LIN_SIGURG: ::libc::c_uint = 23;
pub const MD_EXCEPTION_CODE_LIN_SIGXCPU: ::libc::c_uint = 24;
pub const MD_EXCEPTION_CODE_LIN_SIGXFSZ: ::libc::c_uint = 25;
pub const MD_EXCEPTION_CODE_LIN_SIGVTALRM: ::libc::c_uint = 26;
pub const MD_EXCEPTION_CODE_LIN_SIGPROF: ::libc::c_uint = 27;
pub const MD_EXCEPTION_CODE_LIN_SIGWINCH: ::libc::c_uint = 28;
pub const MD_EXCEPTION_CODE_LIN_SIGIO: ::libc::c_uint = 29;
pub const MD_EXCEPTION_CODE_LIN_SIGPWR: ::libc::c_uint = 30;
pub const MD_EXCEPTION_CODE_LIN_SIGSYS: ::libc::c_uint = 31;
pub const MD_EXCEPTION_CODE_LIN_DUMP_REQUESTED: ::libc::c_uint = 4294967295;
pub type MDExceptionCodeLinux = Enum_Unnamed41;
pub type Enum_Unnamed42 = ::libc::c_uint;
pub const MD_EXCEPTION_MAC_BAD_ACCESS: ::libc::c_uint = 1;
pub const MD_EXCEPTION_MAC_BAD_INSTRUCTION: ::libc::c_uint = 2;
pub const MD_EXCEPTION_MAC_ARITHMETIC: ::libc::c_uint = 3;
pub const MD_EXCEPTION_MAC_EMULATION: ::libc::c_uint = 4;
pub const MD_EXCEPTION_MAC_SOFTWARE: ::libc::c_uint = 5;
pub const MD_EXCEPTION_MAC_BREAKPOINT: ::libc::c_uint = 6;
pub const MD_EXCEPTION_MAC_SYSCALL: ::libc::c_uint = 7;
pub const MD_EXCEPTION_MAC_MACH_SYSCALL: ::libc::c_uint = 8;
pub const MD_EXCEPTION_MAC_RPC_ALERT: ::libc::c_uint = 9;
pub type MDExceptionMac = Enum_Unnamed42;
pub type Enum_Unnamed43 = ::libc::c_uint;
pub const MD_EXCEPTION_CODE_MAC_INVALID_ADDRESS: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_PROTECTION_FAILURE: ::libc::c_uint = 2;
pub const MD_EXCEPTION_CODE_MAC_NO_ACCESS: ::libc::c_uint = 8;
pub const MD_EXCEPTION_CODE_MAC_MEMORY_FAILURE: ::libc::c_uint = 9;
pub const MD_EXCEPTION_CODE_MAC_MEMORY_ERROR: ::libc::c_uint = 10;
pub const MD_EXCEPTION_CODE_MAC_BAD_SYSCALL: ::libc::c_uint = 65536;
pub const MD_EXCEPTION_CODE_MAC_BAD_PIPE: ::libc::c_uint = 65537;
pub const MD_EXCEPTION_CODE_MAC_ABORT: ::libc::c_uint = 65538;
pub const MD_EXCEPTION_CODE_MAC_NS_EXCEPTION: ::libc::c_uint = 3735929054;
pub const MD_EXCEPTION_CODE_MAC_ARM_DA_ALIGN: ::libc::c_uint = 257;
pub const MD_EXCEPTION_CODE_MAC_ARM_DA_DEBUG: ::libc::c_uint = 258;
pub const MD_EXCEPTION_CODE_MAC_ARM_UNDEFINED: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_ARM_BREAKPOINT: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_PPC_VM_PROT_READ: ::libc::c_uint = 257;
pub const MD_EXCEPTION_CODE_MAC_PPC_BADSPACE: ::libc::c_uint = 258;
pub const MD_EXCEPTION_CODE_MAC_PPC_UNALIGNED: ::libc::c_uint = 259;
pub const MD_EXCEPTION_CODE_MAC_PPC_INVALID_SYSCALL: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_PPC_UNIMPLEMENTED_INSTRUCTION: ::libc::c_uint
          =
    2;
pub const MD_EXCEPTION_CODE_MAC_PPC_PRIVILEGED_INSTRUCTION: ::libc::c_uint =
    3;
pub const MD_EXCEPTION_CODE_MAC_PPC_PRIVILEGED_REGISTER: ::libc::c_uint = 4;
pub const MD_EXCEPTION_CODE_MAC_PPC_TRACE: ::libc::c_uint = 5;
pub const MD_EXCEPTION_CODE_MAC_PPC_PERFORMANCE_MONITOR: ::libc::c_uint = 6;
pub const MD_EXCEPTION_CODE_MAC_PPC_OVERFLOW: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_PPC_ZERO_DIVIDE: ::libc::c_uint = 2;
pub const MD_EXCEPTION_CODE_MAC_PPC_FLOAT_INEXACT: ::libc::c_uint = 3;
pub const MD_EXCEPTION_CODE_MAC_PPC_FLOAT_ZERO_DIVIDE: ::libc::c_uint = 4;
pub const MD_EXCEPTION_CODE_MAC_PPC_FLOAT_UNDERFLOW: ::libc::c_uint = 5;
pub const MD_EXCEPTION_CODE_MAC_PPC_FLOAT_OVERFLOW: ::libc::c_uint = 6;
pub const MD_EXCEPTION_CODE_MAC_PPC_FLOAT_NOT_A_NUMBER: ::libc::c_uint = 7;
pub const MD_EXCEPTION_CODE_MAC_PPC_NO_EMULATION: ::libc::c_uint = 8;
pub const MD_EXCEPTION_CODE_MAC_PPC_ALTIVEC_ASSIST: ::libc::c_uint = 9;
pub const MD_EXCEPTION_CODE_MAC_PPC_TRAP: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_PPC_MIGRATE: ::libc::c_uint = 65792;
pub const MD_EXCEPTION_CODE_MAC_PPC_BREAKPOINT: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_X86_INVALID_OPERATION: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_X86_DIV: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_X86_INTO: ::libc::c_uint = 2;
pub const MD_EXCEPTION_CODE_MAC_X86_NOEXT: ::libc::c_uint = 3;
pub const MD_EXCEPTION_CODE_MAC_X86_EXTOVR: ::libc::c_uint = 4;
pub const MD_EXCEPTION_CODE_MAC_X86_EXTERR: ::libc::c_uint = 5;
pub const MD_EXCEPTION_CODE_MAC_X86_EMERR: ::libc::c_uint = 6;
pub const MD_EXCEPTION_CODE_MAC_X86_BOUND: ::libc::c_uint = 7;
pub const MD_EXCEPTION_CODE_MAC_X86_SSEEXTERR: ::libc::c_uint = 8;
pub const MD_EXCEPTION_CODE_MAC_X86_SGL: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_MAC_X86_BPT: ::libc::c_uint = 2;
pub const MD_EXCEPTION_CODE_MAC_X86_INVALID_TASK_STATE_SEGMENT: ::libc::c_uint
          =
    10;
pub const MD_EXCEPTION_CODE_MAC_X86_SEGMENT_NOT_PRESENT: ::libc::c_uint = 11;
pub const MD_EXCEPTION_CODE_MAC_X86_STACK_FAULT: ::libc::c_uint = 12;
pub const MD_EXCEPTION_CODE_MAC_X86_GENERAL_PROTECTION_FAULT: ::libc::c_uint =
    13;
pub const MD_EXCEPTION_CODE_MAC_X86_ALIGNMENT_FAULT: ::libc::c_uint = 17;
pub type MDExceptionCodeMac = Enum_Unnamed43;
pub type Enum_Unnamed44 = ::libc::c_uint;
pub const MD_EXCEPTION_CODE_PS3_UNKNOWN: ::libc::c_uint = 0;
pub const MD_EXCEPTION_CODE_PS3_TRAP_EXCEP: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_PS3_PRIV_INSTR: ::libc::c_uint = 2;
pub const MD_EXCEPTION_CODE_PS3_ILLEGAL_INSTR: ::libc::c_uint = 3;
pub const MD_EXCEPTION_CODE_PS3_INSTR_STORAGE: ::libc::c_uint = 4;
pub const MD_EXCEPTION_CODE_PS3_INSTR_SEGMENT: ::libc::c_uint = 5;
pub const MD_EXCEPTION_CODE_PS3_DATA_STORAGE: ::libc::c_uint = 6;
pub const MD_EXCEPTION_CODE_PS3_DATA_SEGMENT: ::libc::c_uint = 7;
pub const MD_EXCEPTION_CODE_PS3_FLOAT_POINT: ::libc::c_uint = 8;
pub const MD_EXCEPTION_CODE_PS3_DABR_MATCH: ::libc::c_uint = 9;
pub const MD_EXCEPTION_CODE_PS3_ALIGN_EXCEP: ::libc::c_uint = 10;
pub const MD_EXCEPTION_CODE_PS3_MEMORY_ACCESS: ::libc::c_uint = 11;
pub const MD_EXCEPTION_CODE_PS3_COPRO_ALIGN: ::libc::c_uint = 12;
pub const MD_EXCEPTION_CODE_PS3_COPRO_INVALID_COM: ::libc::c_uint = 13;
pub const MD_EXCEPTION_CODE_PS3_COPRO_ERR: ::libc::c_uint = 14;
pub const MD_EXCEPTION_CODE_PS3_COPRO_FIR: ::libc::c_uint = 15;
pub const MD_EXCEPTION_CODE_PS3_COPRO_DATA_SEGMENT: ::libc::c_uint = 16;
pub const MD_EXCEPTION_CODE_PS3_COPRO_DATA_STORAGE: ::libc::c_uint = 17;
pub const MD_EXCEPTION_CODE_PS3_COPRO_STOP_INSTR: ::libc::c_uint = 18;
pub const MD_EXCEPTION_CODE_PS3_COPRO_HALT_INSTR: ::libc::c_uint = 19;
pub const MD_EXCEPTION_CODE_PS3_COPRO_HALTINST_UNKNOWN: ::libc::c_uint = 20;
pub const MD_EXCEPTION_CODE_PS3_COPRO_MEMORY_ACCESS: ::libc::c_uint = 21;
pub const MD_EXCEPTION_CODE_PS3_GRAPHIC: ::libc::c_uint = 22;
pub type MDExceptionCodePS3 = Enum_Unnamed44;
pub type Enum_Unnamed45 = ::libc::c_uint;
pub const MD_EXCEPTION_CODE_SOL_SIGHUP: ::libc::c_uint = 1;
pub const MD_EXCEPTION_CODE_SOL_SIGINT: ::libc::c_uint = 2;
pub const MD_EXCEPTION_CODE_SOL_SIGQUIT: ::libc::c_uint = 3;
pub const MD_EXCEPTION_CODE_SOL_SIGILL: ::libc::c_uint = 4;
pub const MD_EXCEPTION_CODE_SOL_SIGTRAP: ::libc::c_uint = 5;
pub const MD_EXCEPTION_CODE_SOL_SIGIOT: ::libc::c_uint = 6;
pub const MD_EXCEPTION_CODE_SOL_SIGABRT: ::libc::c_uint = 6;
pub const MD_EXCEPTION_CODE_SOL_SIGEMT: ::libc::c_uint = 7;
pub const MD_EXCEPTION_CODE_SOL_SIGFPE: ::libc::c_uint = 8;
pub const MD_EXCEPTION_CODE_SOL_SIGKILL: ::libc::c_uint = 9;
pub const MD_EXCEPTION_CODE_SOL_SIGBUS: ::libc::c_uint = 10;
pub const MD_EXCEPTION_CODE_SOL_SIGSEGV: ::libc::c_uint = 11;
pub const MD_EXCEPTION_CODE_SOL_SIGSYS: ::libc::c_uint = 12;
pub const MD_EXCEPTION_CODE_SOL_SIGPIPE: ::libc::c_uint = 13;
pub const MD_EXCEPTION_CODE_SOL_SIGALRM: ::libc::c_uint = 14;
pub const MD_EXCEPTION_CODE_SOL_SIGTERM: ::libc::c_uint = 15;
pub const MD_EXCEPTION_CODE_SOL_SIGUSR1: ::libc::c_uint = 16;
pub const MD_EXCEPTION_CODE_SOL_SIGUSR2: ::libc::c_uint = 17;
pub const MD_EXCEPTION_CODE_SOL_SIGCLD: ::libc::c_uint = 18;
pub const MD_EXCEPTION_CODE_SOL_SIGCHLD: ::libc::c_uint = 18;
pub const MD_EXCEPTION_CODE_SOL_SIGPWR: ::libc::c_uint = 19;
pub const MD_EXCEPTION_CODE_SOL_SIGWINCH: ::libc::c_uint = 20;
pub const MD_EXCEPTION_CODE_SOL_SIGURG: ::libc::c_uint = 21;
pub const MD_EXCEPTION_CODE_SOL_SIGPOLL: ::libc::c_uint = 22;
pub const MD_EXCEPTION_CODE_SOL_SIGIO: ::libc::c_uint = 22;
pub const MD_EXCEPTION_CODE_SOL_SIGSTOP: ::libc::c_uint = 23;
pub const MD_EXCEPTION_CODE_SOL_SIGTSTP: ::libc::c_uint = 24;
pub const MD_EXCEPTION_CODE_SOL_SIGCONT: ::libc::c_uint = 25;
pub const MD_EXCEPTION_CODE_SOL_SIGTTIN: ::libc::c_uint = 26;
pub const MD_EXCEPTION_CODE_SOL_SIGTTOU: ::libc::c_uint = 27;
pub const MD_EXCEPTION_CODE_SOL_SIGVTALRM: ::libc::c_uint = 28;
pub const MD_EXCEPTION_CODE_SOL_SIGPROF: ::libc::c_uint = 29;
pub const MD_EXCEPTION_CODE_SOL_SIGXCPU: ::libc::c_uint = 30;
pub const MD_EXCEPTION_CODE_SOL_SIGXFSZ: ::libc::c_uint = 31;
pub const MD_EXCEPTION_CODE_SOL_SIGWAITING: ::libc::c_uint = 32;
pub const MD_EXCEPTION_CODE_SOL_SIGLWP: ::libc::c_uint = 33;
pub const MD_EXCEPTION_CODE_SOL_SIGFREEZE: ::libc::c_uint = 34;
pub const MD_EXCEPTION_CODE_SOL_SIGTHAW: ::libc::c_uint = 35;
pub const MD_EXCEPTION_CODE_SOL_SIGCANCEL: ::libc::c_uint = 36;
pub const MD_EXCEPTION_CODE_SOL_SIGLOST: ::libc::c_uint = 37;
pub const MD_EXCEPTION_CODE_SOL_SIGXRES: ::libc::c_uint = 38;
pub const MD_EXCEPTION_CODE_SOL_SIGJVM1: ::libc::c_uint = 39;
pub const MD_EXCEPTION_CODE_SOL_SIGJVM2: ::libc::c_uint = 40;
pub type MDExceptionCodeSolaris = Enum_Unnamed45;
pub type Enum_Unnamed46 = ::libc::c_uint;
pub const MD_EXCEPTION_CODE_WIN_CONTROL_C: ::libc::c_uint = 1073807365;
pub const MD_EXCEPTION_CODE_WIN_GUARD_PAGE_VIOLATION: ::libc::c_uint =
    2147483649;
pub const MD_EXCEPTION_CODE_WIN_DATATYPE_MISALIGNMENT: ::libc::c_uint =
    2147483650;
pub const MD_EXCEPTION_CODE_WIN_BREAKPOINT: ::libc::c_uint = 2147483651;
pub const MD_EXCEPTION_CODE_WIN_SINGLE_STEP: ::libc::c_uint = 2147483652;
pub const MD_EXCEPTION_CODE_WIN_ACCESS_VIOLATION: ::libc::c_uint = 3221225477;
pub const MD_EXCEPTION_CODE_WIN_IN_PAGE_ERROR: ::libc::c_uint = 3221225478;
pub const MD_EXCEPTION_CODE_WIN_INVALID_HANDLE: ::libc::c_uint = 3221225480;
pub const MD_EXCEPTION_CODE_WIN_ILLEGAL_INSTRUCTION: ::libc::c_uint =
    3221225501;
pub const MD_EXCEPTION_CODE_WIN_NONCONTINUABLE_EXCEPTION: ::libc::c_uint =
    3221225509;
pub const MD_EXCEPTION_CODE_WIN_INVALID_DISPOSITION: ::libc::c_uint =
    3221225510;
pub const MD_EXCEPTION_CODE_WIN_ARRAY_BOUNDS_EXCEEDED: ::libc::c_uint =
    3221225612;
pub const MD_EXCEPTION_CODE_WIN_FLOAT_DENORMAL_OPERAND: ::libc::c_uint =
    3221225613;
pub const MD_EXCEPTION_CODE_WIN_FLOAT_DIVIDE_BY_ZERO: ::libc::c_uint =
    3221225614;
pub const MD_EXCEPTION_CODE_WIN_FLOAT_INEXACT_RESULT: ::libc::c_uint =
    3221225615;
pub const MD_EXCEPTION_CODE_WIN_FLOAT_INVALID_OPERATION: ::libc::c_uint =
    3221225616;
pub const MD_EXCEPTION_CODE_WIN_FLOAT_OVERFLOW: ::libc::c_uint = 3221225617;
pub const MD_EXCEPTION_CODE_WIN_FLOAT_STACK_CHECK: ::libc::c_uint =
    3221225618;
pub const MD_EXCEPTION_CODE_WIN_FLOAT_UNDERFLOW: ::libc::c_uint = 3221225619;
pub const MD_EXCEPTION_CODE_WIN_INTEGER_DIVIDE_BY_ZERO: ::libc::c_uint =
    3221225620;
pub const MD_EXCEPTION_CODE_WIN_INTEGER_OVERFLOW: ::libc::c_uint = 3221225621;
pub const MD_EXCEPTION_CODE_WIN_PRIVILEGED_INSTRUCTION: ::libc::c_uint =
    3221225622;
pub const MD_EXCEPTION_CODE_WIN_STACK_OVERFLOW: ::libc::c_uint = 3221225725;
pub const MD_EXCEPTION_CODE_WIN_POSSIBLE_DEADLOCK: ::libc::c_uint =
    3221225876;
pub const MD_EXCEPTION_CODE_WIN_STACK_BUFFER_OVERRUN: ::libc::c_uint =
    3221226505;
pub const MD_EXCEPTION_CODE_WIN_HEAP_CORRUPTION: ::libc::c_uint = 3221226356;
pub const MD_EXCEPTION_CODE_WIN_UNHANDLED_CPP_EXCEPTION: ::libc::c_uint =
    3765269347;
pub type MDExceptionCodeWin = Enum_Unnamed46;
pub type Enum_Unnamed47 = ::libc::c_uint;
pub const MD_NTSTATUS_WIN_STATUS_UNSUCCESSFUL: ::libc::c_uint = 3221225473;
pub const MD_NTSTATUS_WIN_STATUS_NOT_IMPLEMENTED: ::libc::c_uint = 3221225474;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_INFO_CLASS: ::libc::c_uint =
    3221225475;
pub const MD_NTSTATUS_WIN_STATUS_INFO_LENGTH_MISMATCH: ::libc::c_uint =
    3221225476;
pub const MD_NTSTATUS_WIN_STATUS_ACCESS_VIOLATION: ::libc::c_uint =
    3221225477;
pub const MD_NTSTATUS_WIN_STATUS_IN_PAGE_ERROR: ::libc::c_uint = 3221225478;
pub const MD_NTSTATUS_WIN_STATUS_PAGEFILE_QUOTA: ::libc::c_uint = 3221225479;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_HANDLE: ::libc::c_uint = 3221225480;
pub const MD_NTSTATUS_WIN_STATUS_BAD_INITIAL_STACK: ::libc::c_uint =
    3221225481;
pub const MD_NTSTATUS_WIN_STATUS_BAD_INITIAL_PC: ::libc::c_uint = 3221225482;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_CID: ::libc::c_uint = 3221225483;
pub const MD_NTSTATUS_WIN_STATUS_TIMER_NOT_CANCELED: ::libc::c_uint =
    3221225484;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER: ::libc::c_uint =
    3221225485;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_DEVICE: ::libc::c_uint = 3221225486;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_FILE: ::libc::c_uint = 3221225487;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_DEVICE_REQUEST: ::libc::c_uint =
    3221225488;
pub const MD_NTSTATUS_WIN_STATUS_END_OF_FILE: ::libc::c_uint = 3221225489;
pub const MD_NTSTATUS_WIN_STATUS_WRONG_VOLUME: ::libc::c_uint = 3221225490;
pub const MD_NTSTATUS_WIN_STATUS_NO_MEDIA_IN_DEVICE: ::libc::c_uint =
    3221225491;
pub const MD_NTSTATUS_WIN_STATUS_UNRECOGNIZED_MEDIA: ::libc::c_uint =
    3221225492;
pub const MD_NTSTATUS_WIN_STATUS_NONEXISTENT_SECTOR: ::libc::c_uint =
    3221225493;
pub const MD_NTSTATUS_WIN_STATUS_MORE_PROCESSING_REQUIRED: ::libc::c_uint =
    3221225494;
pub const MD_NTSTATUS_WIN_STATUS_NO_MEMORY: ::libc::c_uint = 3221225495;
pub const MD_NTSTATUS_WIN_STATUS_CONFLICTING_ADDRESSES: ::libc::c_uint =
    3221225496;
pub const MD_NTSTATUS_WIN_STATUS_NOT_MAPPED_VIEW: ::libc::c_uint = 3221225497;
pub const MD_NTSTATUS_WIN_STATUS_UNABLE_TO_FREE_VM: ::libc::c_uint =
    3221225498;
pub const MD_NTSTATUS_WIN_STATUS_UNABLE_TO_DELETE_SECTION: ::libc::c_uint =
    3221225499;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_SYSTEM_SERVICE: ::libc::c_uint =
    3221225500;
pub const MD_NTSTATUS_WIN_STATUS_ILLEGAL_INSTRUCTION: ::libc::c_uint =
    3221225501;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_LOCK_SEQUENCE: ::libc::c_uint =
    3221225502;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_VIEW_SIZE: ::libc::c_uint =
    3221225503;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_FILE_FOR_SECTION: ::libc::c_uint =
    3221225504;
pub const MD_NTSTATUS_WIN_STATUS_ALREADY_COMMITTED: ::libc::c_uint =
    3221225505;
pub const MD_NTSTATUS_WIN_STATUS_ACCESS_DENIED: ::libc::c_uint = 3221225506;
pub const MD_NTSTATUS_WIN_STATUS_BUFFER_TOO_SMALL: ::libc::c_uint =
    3221225507;
pub const MD_NTSTATUS_WIN_STATUS_OBJECT_TYPE_MISMATCH: ::libc::c_uint =
    3221225508;
pub const MD_NTSTATUS_WIN_STATUS_NONCONTINUABLE_EXCEPTION: ::libc::c_uint =
    3221225509;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_DISPOSITION: ::libc::c_uint =
    3221225510;
pub const MD_NTSTATUS_WIN_STATUS_UNWIND: ::libc::c_uint = 3221225511;
pub const MD_NTSTATUS_WIN_STATUS_BAD_STACK: ::libc::c_uint = 3221225512;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_UNWIND_TARGET: ::libc::c_uint =
    3221225513;
pub const MD_NTSTATUS_WIN_STATUS_NOT_LOCKED: ::libc::c_uint = 3221225514;
pub const MD_NTSTATUS_WIN_STATUS_PARITY_ERROR: ::libc::c_uint = 3221225515;
pub const MD_NTSTATUS_WIN_STATUS_UNABLE_TO_DECOMMIT_VM: ::libc::c_uint =
    3221225516;
pub const MD_NTSTATUS_WIN_STATUS_NOT_COMMITTED: ::libc::c_uint = 3221225517;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PORT_ATTRIBUTES: ::libc::c_uint =
    3221225518;
pub const MD_NTSTATUS_WIN_STATUS_PORT_MESSAGE_TOO_LONG: ::libc::c_uint =
    3221225519;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_MIX: ::libc::c_uint =
    3221225520;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_QUOTA_LOWER: ::libc::c_uint =
    3221225521;
pub const MD_NTSTATUS_WIN_STATUS_DISK_CORRUPT_ERROR: ::libc::c_uint =
    3221225522;
pub const MD_NTSTATUS_WIN_STATUS_OBJECT_NAME_INVALID: ::libc::c_uint =
    3221225523;
pub const MD_NTSTATUS_WIN_STATUS_OBJECT_NAME_NOT_FOUND: ::libc::c_uint =
    3221225524;
pub const MD_NTSTATUS_WIN_STATUS_OBJECT_NAME_COLLISION: ::libc::c_uint =
    3221225525;
pub const MD_NTSTATUS_WIN_STATUS_PORT_DISCONNECTED: ::libc::c_uint =
    3221225527;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_ALREADY_ATTACHED: ::libc::c_uint =
    3221225528;
pub const MD_NTSTATUS_WIN_STATUS_OBJECT_PATH_INVALID: ::libc::c_uint =
    3221225529;
pub const MD_NTSTATUS_WIN_STATUS_OBJECT_PATH_NOT_FOUND: ::libc::c_uint =
    3221225530;
pub const MD_NTSTATUS_WIN_STATUS_OBJECT_PATH_SYNTAX_BAD: ::libc::c_uint =
    3221225531;
pub const MD_NTSTATUS_WIN_STATUS_DATA_OVERRUN: ::libc::c_uint = 3221225532;
pub const MD_NTSTATUS_WIN_STATUS_DATA_LATE_ERROR: ::libc::c_uint = 3221225533;
pub const MD_NTSTATUS_WIN_STATUS_DATA_ERROR: ::libc::c_uint = 3221225534;
pub const MD_NTSTATUS_WIN_STATUS_CRC_ERROR: ::libc::c_uint = 3221225535;
pub const MD_NTSTATUS_WIN_STATUS_SECTION_TOO_BIG: ::libc::c_uint = 3221225536;
pub const MD_NTSTATUS_WIN_STATUS_PORT_CONNECTION_REFUSED: ::libc::c_uint =
    3221225537;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PORT_HANDLE: ::libc::c_uint =
    3221225538;
pub const MD_NTSTATUS_WIN_STATUS_SHARING_VIOLATION: ::libc::c_uint =
    3221225539;
pub const MD_NTSTATUS_WIN_STATUS_QUOTA_EXCEEDED: ::libc::c_uint = 3221225540;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PAGE_PROTECTION: ::libc::c_uint =
    3221225541;
pub const MD_NTSTATUS_WIN_STATUS_MUTANT_NOT_OWNED: ::libc::c_uint =
    3221225542;
pub const MD_NTSTATUS_WIN_STATUS_SEMAPHORE_LIMIT_EXCEEDED: ::libc::c_uint =
    3221225543;
pub const MD_NTSTATUS_WIN_STATUS_PORT_ALREADY_SET: ::libc::c_uint =
    3221225544;
pub const MD_NTSTATUS_WIN_STATUS_SECTION_NOT_IMAGE: ::libc::c_uint =
    3221225545;
pub const MD_NTSTATUS_WIN_STATUS_SUSPEND_COUNT_EXCEEDED: ::libc::c_uint =
    3221225546;
pub const MD_NTSTATUS_WIN_STATUS_THREAD_IS_TERMINATING: ::libc::c_uint =
    3221225547;
pub const MD_NTSTATUS_WIN_STATUS_BAD_WORKING_SET_LIMIT: ::libc::c_uint =
    3221225548;
pub const MD_NTSTATUS_WIN_STATUS_INCOMPATIBLE_FILE_MAP: ::libc::c_uint =
    3221225549;
pub const MD_NTSTATUS_WIN_STATUS_SECTION_PROTECTION: ::libc::c_uint =
    3221225550;
pub const MD_NTSTATUS_WIN_STATUS_EAS_NOT_SUPPORTED: ::libc::c_uint =
    3221225551;
pub const MD_NTSTATUS_WIN_STATUS_EA_TOO_LARGE: ::libc::c_uint = 3221225552;
pub const MD_NTSTATUS_WIN_STATUS_NONEXISTENT_EA_ENTRY: ::libc::c_uint =
    3221225553;
pub const MD_NTSTATUS_WIN_STATUS_NO_EAS_ON_FILE: ::libc::c_uint = 3221225554;
pub const MD_NTSTATUS_WIN_STATUS_EA_CORRUPT_ERROR: ::libc::c_uint =
    3221225555;
pub const MD_NTSTATUS_WIN_STATUS_FILE_LOCK_CONFLICT: ::libc::c_uint =
    3221225556;
pub const MD_NTSTATUS_WIN_STATUS_LOCK_NOT_GRANTED: ::libc::c_uint =
    3221225557;
pub const MD_NTSTATUS_WIN_STATUS_DELETE_PENDING: ::libc::c_uint = 3221225558;
pub const MD_NTSTATUS_WIN_STATUS_CTL_FILE_NOT_SUPPORTED: ::libc::c_uint =
    3221225559;
pub const MD_NTSTATUS_WIN_STATUS_UNKNOWN_REVISION: ::libc::c_uint =
    3221225560;
pub const MD_NTSTATUS_WIN_STATUS_REVISION_MISMATCH: ::libc::c_uint =
    3221225561;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_OWNER: ::libc::c_uint = 3221225562;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PRIMARY_GROUP: ::libc::c_uint =
    3221225563;
pub const MD_NTSTATUS_WIN_STATUS_NO_IMPERSONATION_TOKEN: ::libc::c_uint =
    3221225564;
pub const MD_NTSTATUS_WIN_STATUS_CANT_DISABLE_MANDATORY: ::libc::c_uint =
    3221225565;
pub const MD_NTSTATUS_WIN_STATUS_NO_LOGON_SERVERS: ::libc::c_uint =
    3221225566;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_LOGON_SESSION: ::libc::c_uint =
    3221225567;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_PRIVILEGE: ::libc::c_uint =
    3221225568;
pub const MD_NTSTATUS_WIN_STATUS_PRIVILEGE_NOT_HELD: ::libc::c_uint =
    3221225569;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_ACCOUNT_NAME: ::libc::c_uint =
    3221225570;
pub const MD_NTSTATUS_WIN_STATUS_USER_EXISTS: ::libc::c_uint = 3221225571;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_USER: ::libc::c_uint = 3221225572;
pub const MD_NTSTATUS_WIN_STATUS_GROUP_EXISTS: ::libc::c_uint = 3221225573;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_GROUP: ::libc::c_uint = 3221225574;
pub const MD_NTSTATUS_WIN_STATUS_MEMBER_IN_GROUP: ::libc::c_uint = 3221225575;
pub const MD_NTSTATUS_WIN_STATUS_MEMBER_NOT_IN_GROUP: ::libc::c_uint =
    3221225576;
pub const MD_NTSTATUS_WIN_STATUS_LAST_ADMIN: ::libc::c_uint = 3221225577;
pub const MD_NTSTATUS_WIN_STATUS_WRONG_PASSWORD: ::libc::c_uint = 3221225578;
pub const MD_NTSTATUS_WIN_STATUS_ILL_FORMED_PASSWORD: ::libc::c_uint =
    3221225579;
pub const MD_NTSTATUS_WIN_STATUS_PASSWORD_RESTRICTION: ::libc::c_uint =
    3221225580;
pub const MD_NTSTATUS_WIN_STATUS_LOGON_FAILURE: ::libc::c_uint = 3221225581;
pub const MD_NTSTATUS_WIN_STATUS_ACCOUNT_RESTRICTION: ::libc::c_uint =
    3221225582;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_LOGON_HOURS: ::libc::c_uint =
    3221225583;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_WORKSTATION: ::libc::c_uint =
    3221225584;
pub const MD_NTSTATUS_WIN_STATUS_PASSWORD_EXPIRED: ::libc::c_uint =
    3221225585;
pub const MD_NTSTATUS_WIN_STATUS_ACCOUNT_DISABLED: ::libc::c_uint =
    3221225586;
pub const MD_NTSTATUS_WIN_STATUS_NONE_MAPPED: ::libc::c_uint = 3221225587;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_LUIDS_REQUESTED: ::libc::c_uint =
    3221225588;
pub const MD_NTSTATUS_WIN_STATUS_LUIDS_EXHAUSTED: ::libc::c_uint = 3221225589;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_SUB_AUTHORITY: ::libc::c_uint =
    3221225590;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_ACL: ::libc::c_uint = 3221225591;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_SID: ::libc::c_uint = 3221225592;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_SECURITY_DESCR: ::libc::c_uint =
    3221225593;
pub const MD_NTSTATUS_WIN_STATUS_PROCEDURE_NOT_FOUND: ::libc::c_uint =
    3221225594;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMAGE_FORMAT: ::libc::c_uint =
    3221225595;
pub const MD_NTSTATUS_WIN_STATUS_NO_TOKEN: ::libc::c_uint = 3221225596;
pub const MD_NTSTATUS_WIN_STATUS_BAD_INHERITANCE_ACL: ::libc::c_uint =
    3221225597;
pub const MD_NTSTATUS_WIN_STATUS_RANGE_NOT_LOCKED: ::libc::c_uint =
    3221225598;
pub const MD_NTSTATUS_WIN_STATUS_DISK_FULL: ::libc::c_uint = 3221225599;
pub const MD_NTSTATUS_WIN_STATUS_SERVER_DISABLED: ::libc::c_uint = 3221225600;
pub const MD_NTSTATUS_WIN_STATUS_SERVER_NOT_DISABLED: ::libc::c_uint =
    3221225601;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_GUIDS_REQUESTED: ::libc::c_uint =
    3221225602;
pub const MD_NTSTATUS_WIN_STATUS_GUIDS_EXHAUSTED: ::libc::c_uint = 3221225603;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_ID_AUTHORITY: ::libc::c_uint =
    3221225604;
pub const MD_NTSTATUS_WIN_STATUS_AGENTS_EXHAUSTED: ::libc::c_uint =
    3221225605;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_VOLUME_LABEL: ::libc::c_uint =
    3221225606;
pub const MD_NTSTATUS_WIN_STATUS_SECTION_NOT_EXTENDED: ::libc::c_uint =
    3221225607;
pub const MD_NTSTATUS_WIN_STATUS_NOT_MAPPED_DATA: ::libc::c_uint = 3221225608;
pub const MD_NTSTATUS_WIN_STATUS_RESOURCE_DATA_NOT_FOUND: ::libc::c_uint =
    3221225609;
pub const MD_NTSTATUS_WIN_STATUS_RESOURCE_TYPE_NOT_FOUND: ::libc::c_uint =
    3221225610;
pub const MD_NTSTATUS_WIN_STATUS_RESOURCE_NAME_NOT_FOUND: ::libc::c_uint =
    3221225611;
pub const MD_NTSTATUS_WIN_STATUS_ARRAY_BOUNDS_EXCEEDED: ::libc::c_uint =
    3221225612;
pub const MD_NTSTATUS_WIN_STATUS_FLOAT_DENORMAL_OPERAND: ::libc::c_uint =
    3221225613;
pub const MD_NTSTATUS_WIN_STATUS_FLOAT_DIVIDE_BY_ZERO: ::libc::c_uint =
    3221225614;
pub const MD_NTSTATUS_WIN_STATUS_FLOAT_INEXACT_RESULT: ::libc::c_uint =
    3221225615;
pub const MD_NTSTATUS_WIN_STATUS_FLOAT_INVALID_OPERATION: ::libc::c_uint =
    3221225616;
pub const MD_NTSTATUS_WIN_STATUS_FLOAT_OVERFLOW: ::libc::c_uint = 3221225617;
pub const MD_NTSTATUS_WIN_STATUS_FLOAT_STACK_CHECK: ::libc::c_uint =
    3221225618;
pub const MD_NTSTATUS_WIN_STATUS_FLOAT_UNDERFLOW: ::libc::c_uint = 3221225619;
pub const MD_NTSTATUS_WIN_STATUS_INTEGER_DIVIDE_BY_ZERO: ::libc::c_uint =
    3221225620;
pub const MD_NTSTATUS_WIN_STATUS_INTEGER_OVERFLOW: ::libc::c_uint =
    3221225621;
pub const MD_NTSTATUS_WIN_STATUS_PRIVILEGED_INSTRUCTION: ::libc::c_uint =
    3221225622;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_PAGING_FILES: ::libc::c_uint =
    3221225623;
pub const MD_NTSTATUS_WIN_STATUS_FILE_INVALID: ::libc::c_uint = 3221225624;
pub const MD_NTSTATUS_WIN_STATUS_ALLOTTED_SPACE_EXCEEDED: ::libc::c_uint =
    3221225625;
pub const MD_NTSTATUS_WIN_STATUS_INSUFFICIENT_RESOURCES: ::libc::c_uint =
    3221225626;
pub const MD_NTSTATUS_WIN_STATUS_DFS_EXIT_PATH_FOUND: ::libc::c_uint =
    3221225627;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_DATA_ERROR: ::libc::c_uint =
    3221225628;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_NOT_CONNECTED: ::libc::c_uint =
    3221225629;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_POWER_FAILURE: ::libc::c_uint =
    3221225630;
pub const MD_NTSTATUS_WIN_STATUS_FREE_VM_NOT_AT_BASE: ::libc::c_uint =
    3221225631;
pub const MD_NTSTATUS_WIN_STATUS_MEMORY_NOT_ALLOCATED: ::libc::c_uint =
    3221225632;
pub const MD_NTSTATUS_WIN_STATUS_WORKING_SET_QUOTA: ::libc::c_uint =
    3221225633;
pub const MD_NTSTATUS_WIN_STATUS_MEDIA_WRITE_PROTECTED: ::libc::c_uint =
    3221225634;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_NOT_READY: ::libc::c_uint =
    3221225635;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_GROUP_ATTRIBUTES: ::libc::c_uint =
    3221225636;
pub const MD_NTSTATUS_WIN_STATUS_BAD_IMPERSONATION_LEVEL: ::libc::c_uint =
    3221225637;
pub const MD_NTSTATUS_WIN_STATUS_CANT_OPEN_ANONYMOUS: ::libc::c_uint =
    3221225638;
pub const MD_NTSTATUS_WIN_STATUS_BAD_VALIDATION_CLASS: ::libc::c_uint =
    3221225639;
pub const MD_NTSTATUS_WIN_STATUS_BAD_TOKEN_TYPE: ::libc::c_uint = 3221225640;
pub const MD_NTSTATUS_WIN_STATUS_BAD_MASTER_BOOT_RECORD: ::libc::c_uint =
    3221225641;
pub const MD_NTSTATUS_WIN_STATUS_INSTRUCTION_MISALIGNMENT: ::libc::c_uint =
    3221225642;
pub const MD_NTSTATUS_WIN_STATUS_INSTANCE_NOT_AVAILABLE: ::libc::c_uint =
    3221225643;
pub const MD_NTSTATUS_WIN_STATUS_PIPE_NOT_AVAILABLE: ::libc::c_uint =
    3221225644;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PIPE_STATE: ::libc::c_uint =
    3221225645;
pub const MD_NTSTATUS_WIN_STATUS_PIPE_BUSY: ::libc::c_uint = 3221225646;
pub const MD_NTSTATUS_WIN_STATUS_ILLEGAL_FUNCTION: ::libc::c_uint =
    3221225647;
pub const MD_NTSTATUS_WIN_STATUS_PIPE_DISCONNECTED: ::libc::c_uint =
    3221225648;
pub const MD_NTSTATUS_WIN_STATUS_PIPE_CLOSING: ::libc::c_uint = 3221225649;
pub const MD_NTSTATUS_WIN_STATUS_PIPE_CONNECTED: ::libc::c_uint = 3221225650;
pub const MD_NTSTATUS_WIN_STATUS_PIPE_LISTENING: ::libc::c_uint = 3221225651;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_READ_MODE: ::libc::c_uint =
    3221225652;
pub const MD_NTSTATUS_WIN_STATUS_IO_TIMEOUT: ::libc::c_uint = 3221225653;
pub const MD_NTSTATUS_WIN_STATUS_FILE_FORCED_CLOSED: ::libc::c_uint =
    3221225654;
pub const MD_NTSTATUS_WIN_STATUS_PROFILING_NOT_STARTED: ::libc::c_uint =
    3221225655;
pub const MD_NTSTATUS_WIN_STATUS_PROFILING_NOT_STOPPED: ::libc::c_uint =
    3221225656;
pub const MD_NTSTATUS_WIN_STATUS_COULD_NOT_INTERPRET: ::libc::c_uint =
    3221225657;
pub const MD_NTSTATUS_WIN_STATUS_FILE_IS_A_DIRECTORY: ::libc::c_uint =
    3221225658;
pub const MD_NTSTATUS_WIN_STATUS_NOT_SUPPORTED: ::libc::c_uint = 3221225659;
pub const MD_NTSTATUS_WIN_STATUS_REMOTE_NOT_LISTENING: ::libc::c_uint =
    3221225660;
pub const MD_NTSTATUS_WIN_STATUS_DUPLICATE_NAME: ::libc::c_uint = 3221225661;
pub const MD_NTSTATUS_WIN_STATUS_BAD_NETWORK_PATH: ::libc::c_uint =
    3221225662;
pub const MD_NTSTATUS_WIN_STATUS_NETWORK_BUSY: ::libc::c_uint = 3221225663;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_DOES_NOT_EXIST: ::libc::c_uint =
    3221225664;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_COMMANDS: ::libc::c_uint =
    3221225665;
pub const MD_NTSTATUS_WIN_STATUS_ADAPTER_HARDWARE_ERROR: ::libc::c_uint =
    3221225666;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_NETWORK_RESPONSE: ::libc::c_uint =
    3221225667;
pub const MD_NTSTATUS_WIN_STATUS_UNEXPECTED_NETWORK_ERROR: ::libc::c_uint =
    3221225668;
pub const MD_NTSTATUS_WIN_STATUS_BAD_REMOTE_ADAPTER: ::libc::c_uint =
    3221225669;
pub const MD_NTSTATUS_WIN_STATUS_PRINT_QUEUE_FULL: ::libc::c_uint =
    3221225670;
pub const MD_NTSTATUS_WIN_STATUS_NO_SPOOL_SPACE: ::libc::c_uint = 3221225671;
pub const MD_NTSTATUS_WIN_STATUS_PRINT_CANCELLED: ::libc::c_uint = 3221225672;
pub const MD_NTSTATUS_WIN_STATUS_NETWORK_NAME_DELETED: ::libc::c_uint =
    3221225673;
pub const MD_NTSTATUS_WIN_STATUS_NETWORK_ACCESS_DENIED: ::libc::c_uint =
    3221225674;
pub const MD_NTSTATUS_WIN_STATUS_BAD_DEVICE_TYPE: ::libc::c_uint = 3221225675;
pub const MD_NTSTATUS_WIN_STATUS_BAD_NETWORK_NAME: ::libc::c_uint =
    3221225676;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_NAMES: ::libc::c_uint = 3221225677;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_SESSIONS: ::libc::c_uint =
    3221225678;
pub const MD_NTSTATUS_WIN_STATUS_SHARING_PAUSED: ::libc::c_uint = 3221225679;
pub const MD_NTSTATUS_WIN_STATUS_REQUEST_NOT_ACCEPTED: ::libc::c_uint =
    3221225680;
pub const MD_NTSTATUS_WIN_STATUS_REDIRECTOR_PAUSED: ::libc::c_uint =
    3221225681;
pub const MD_NTSTATUS_WIN_STATUS_NET_WRITE_FAULT: ::libc::c_uint = 3221225682;
pub const MD_NTSTATUS_WIN_STATUS_PROFILING_AT_LIMIT: ::libc::c_uint =
    3221225683;
pub const MD_NTSTATUS_WIN_STATUS_NOT_SAME_DEVICE: ::libc::c_uint = 3221225684;
pub const MD_NTSTATUS_WIN_STATUS_FILE_RENAMED: ::libc::c_uint = 3221225685;
pub const MD_NTSTATUS_WIN_STATUS_VIRTUAL_CIRCUIT_CLOSED: ::libc::c_uint =
    3221225686;
pub const MD_NTSTATUS_WIN_STATUS_NO_SECURITY_ON_OBJECT: ::libc::c_uint =
    3221225687;
pub const MD_NTSTATUS_WIN_STATUS_CANT_WAIT: ::libc::c_uint = 3221225688;
pub const MD_NTSTATUS_WIN_STATUS_PIPE_EMPTY: ::libc::c_uint = 3221225689;
pub const MD_NTSTATUS_WIN_STATUS_CANT_ACCESS_DOMAIN_INFO: ::libc::c_uint =
    3221225690;
pub const MD_NTSTATUS_WIN_STATUS_CANT_TERMINATE_SELF: ::libc::c_uint =
    3221225691;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_SERVER_STATE: ::libc::c_uint =
    3221225692;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_DOMAIN_STATE: ::libc::c_uint =
    3221225693;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_DOMAIN_ROLE: ::libc::c_uint =
    3221225694;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_DOMAIN: ::libc::c_uint = 3221225695;
pub const MD_NTSTATUS_WIN_STATUS_DOMAIN_EXISTS: ::libc::c_uint = 3221225696;
pub const MD_NTSTATUS_WIN_STATUS_DOMAIN_LIMIT_EXCEEDED: ::libc::c_uint =
    3221225697;
pub const MD_NTSTATUS_WIN_STATUS_OPLOCK_NOT_GRANTED: ::libc::c_uint =
    3221225698;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_OPLOCK_PROTOCOL: ::libc::c_uint =
    3221225699;
pub const MD_NTSTATUS_WIN_STATUS_INTERNAL_DB_CORRUPTION: ::libc::c_uint =
    3221225700;
pub const MD_NTSTATUS_WIN_STATUS_INTERNAL_ERROR: ::libc::c_uint = 3221225701;
pub const MD_NTSTATUS_WIN_STATUS_GENERIC_NOT_MAPPED: ::libc::c_uint =
    3221225702;
pub const MD_NTSTATUS_WIN_STATUS_BAD_DESCRIPTOR_FORMAT: ::libc::c_uint =
    3221225703;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_USER_BUFFER: ::libc::c_uint =
    3221225704;
pub const MD_NTSTATUS_WIN_STATUS_UNEXPECTED_IO_ERROR: ::libc::c_uint =
    3221225705;
pub const MD_NTSTATUS_WIN_STATUS_UNEXPECTED_MM_CREATE_ERR: ::libc::c_uint =
    3221225706;
pub const MD_NTSTATUS_WIN_STATUS_UNEXPECTED_MM_MAP_ERROR: ::libc::c_uint =
    3221225707;
pub const MD_NTSTATUS_WIN_STATUS_UNEXPECTED_MM_EXTEND_ERR: ::libc::c_uint =
    3221225708;
pub const MD_NTSTATUS_WIN_STATUS_NOT_LOGON_PROCESS: ::libc::c_uint =
    3221225709;
pub const MD_NTSTATUS_WIN_STATUS_LOGON_SESSION_EXISTS: ::libc::c_uint =
    3221225710;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_1: ::libc::c_uint =
    3221225711;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_2: ::libc::c_uint =
    3221225712;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_3: ::libc::c_uint =
    3221225713;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_4: ::libc::c_uint =
    3221225714;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_5: ::libc::c_uint =
    3221225715;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_6: ::libc::c_uint =
    3221225716;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_7: ::libc::c_uint =
    3221225717;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_8: ::libc::c_uint =
    3221225718;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_9: ::libc::c_uint =
    3221225719;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_10: ::libc::c_uint =
    3221225720;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_11: ::libc::c_uint =
    3221225721;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PARAMETER_12: ::libc::c_uint =
    3221225722;
pub const MD_NTSTATUS_WIN_STATUS_REDIRECTOR_NOT_STARTED: ::libc::c_uint =
    3221225723;
pub const MD_NTSTATUS_WIN_STATUS_REDIRECTOR_STARTED: ::libc::c_uint =
    3221225724;
pub const MD_NTSTATUS_WIN_STATUS_STACK_OVERFLOW: ::libc::c_uint = 3221225725;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_PACKAGE: ::libc::c_uint = 3221225726;
pub const MD_NTSTATUS_WIN_STATUS_BAD_FUNCTION_TABLE: ::libc::c_uint =
    3221225727;
pub const MD_NTSTATUS_WIN_STATUS_VARIABLE_NOT_FOUND: ::libc::c_uint =
    3221225728;
pub const MD_NTSTATUS_WIN_STATUS_DIRECTORY_NOT_EMPTY: ::libc::c_uint =
    3221225729;
pub const MD_NTSTATUS_WIN_STATUS_FILE_CORRUPT_ERROR: ::libc::c_uint =
    3221225730;
pub const MD_NTSTATUS_WIN_STATUS_NOT_A_DIRECTORY: ::libc::c_uint = 3221225731;
pub const MD_NTSTATUS_WIN_STATUS_BAD_LOGON_SESSION_STATE: ::libc::c_uint =
    3221225732;
pub const MD_NTSTATUS_WIN_STATUS_LOGON_SESSION_COLLISION: ::libc::c_uint =
    3221225733;
pub const MD_NTSTATUS_WIN_STATUS_NAME_TOO_LONG: ::libc::c_uint = 3221225734;
pub const MD_NTSTATUS_WIN_STATUS_FILES_OPEN: ::libc::c_uint = 3221225735;
pub const MD_NTSTATUS_WIN_STATUS_CONNECTION_IN_USE: ::libc::c_uint =
    3221225736;
pub const MD_NTSTATUS_WIN_STATUS_MESSAGE_NOT_FOUND: ::libc::c_uint =
    3221225737;
pub const MD_NTSTATUS_WIN_STATUS_PROCESS_IS_TERMINATING: ::libc::c_uint =
    3221225738;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_LOGON_TYPE: ::libc::c_uint =
    3221225739;
pub const MD_NTSTATUS_WIN_STATUS_NO_GUID_TRANSLATION: ::libc::c_uint =
    3221225740;
pub const MD_NTSTATUS_WIN_STATUS_CANNOT_IMPERSONATE: ::libc::c_uint =
    3221225741;
pub const MD_NTSTATUS_WIN_STATUS_IMAGE_ALREADY_LOADED: ::libc::c_uint =
    3221225742;
pub const MD_NTSTATUS_WIN_STATUS_ABIOS_NOT_PRESENT: ::libc::c_uint =
    3221225743;
pub const MD_NTSTATUS_WIN_STATUS_ABIOS_LID_NOT_EXIST: ::libc::c_uint =
    3221225744;
pub const MD_NTSTATUS_WIN_STATUS_ABIOS_LID_ALREADY_OWNED: ::libc::c_uint =
    3221225745;
pub const MD_NTSTATUS_WIN_STATUS_ABIOS_NOT_LID_OWNER: ::libc::c_uint =
    3221225746;
pub const MD_NTSTATUS_WIN_STATUS_ABIOS_INVALID_COMMAND: ::libc::c_uint =
    3221225747;
pub const MD_NTSTATUS_WIN_STATUS_ABIOS_INVALID_LID: ::libc::c_uint =
    3221225748;
pub const MD_NTSTATUS_WIN_STATUS_ABIOS_SELECTOR_NOT_AVAILABLE: ::libc::c_uint
          =
    3221225749;
pub const MD_NTSTATUS_WIN_STATUS_ABIOS_INVALID_SELECTOR: ::libc::c_uint =
    3221225750;
pub const MD_NTSTATUS_WIN_STATUS_NO_LDT: ::libc::c_uint = 3221225751;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_LDT_SIZE: ::libc::c_uint =
    3221225752;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_LDT_OFFSET: ::libc::c_uint =
    3221225753;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_LDT_DESCRIPTOR: ::libc::c_uint =
    3221225754;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMAGE_NE_FORMAT: ::libc::c_uint =
    3221225755;
pub const MD_NTSTATUS_WIN_STATUS_RXACT_INVALID_STATE: ::libc::c_uint =
    3221225756;
pub const MD_NTSTATUS_WIN_STATUS_RXACT_COMMIT_FAILURE: ::libc::c_uint =
    3221225757;
pub const MD_NTSTATUS_WIN_STATUS_MAPPED_FILE_SIZE_ZERO: ::libc::c_uint =
    3221225758;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_OPENED_FILES: ::libc::c_uint =
    3221225759;
pub const MD_NTSTATUS_WIN_STATUS_CANCELLED: ::libc::c_uint = 3221225760;
pub const MD_NTSTATUS_WIN_STATUS_CANNOT_DELETE: ::libc::c_uint = 3221225761;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_COMPUTER_NAME: ::libc::c_uint =
    3221225762;
pub const MD_NTSTATUS_WIN_STATUS_FILE_DELETED: ::libc::c_uint = 3221225763;
pub const MD_NTSTATUS_WIN_STATUS_SPECIAL_ACCOUNT: ::libc::c_uint = 3221225764;
pub const MD_NTSTATUS_WIN_STATUS_SPECIAL_GROUP: ::libc::c_uint = 3221225765;
pub const MD_NTSTATUS_WIN_STATUS_SPECIAL_USER: ::libc::c_uint = 3221225766;
pub const MD_NTSTATUS_WIN_STATUS_MEMBERS_PRIMARY_GROUP: ::libc::c_uint =
    3221225767;
pub const MD_NTSTATUS_WIN_STATUS_FILE_CLOSED: ::libc::c_uint = 3221225768;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_THREADS: ::libc::c_uint =
    3221225769;
pub const MD_NTSTATUS_WIN_STATUS_THREAD_NOT_IN_PROCESS: ::libc::c_uint =
    3221225770;
pub const MD_NTSTATUS_WIN_STATUS_TOKEN_ALREADY_IN_USE: ::libc::c_uint =
    3221225771;
pub const MD_NTSTATUS_WIN_STATUS_PAGEFILE_QUOTA_EXCEEDED: ::libc::c_uint =
    3221225772;
pub const MD_NTSTATUS_WIN_STATUS_COMMITMENT_LIMIT: ::libc::c_uint =
    3221225773;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMAGE_LE_FORMAT: ::libc::c_uint =
    3221225774;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMAGE_NOT_MZ: ::libc::c_uint =
    3221225775;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMAGE_PROTECT: ::libc::c_uint =
    3221225776;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMAGE_WIN_16: ::libc::c_uint =
    3221225777;
pub const MD_NTSTATUS_WIN_STATUS_LOGON_SERVER_CONFLICT: ::libc::c_uint =
    3221225778;
pub const MD_NTSTATUS_WIN_STATUS_TIME_DIFFERENCE_AT_DC: ::libc::c_uint =
    3221225779;
pub const MD_NTSTATUS_WIN_STATUS_SYNCHRONIZATION_REQUIRED: ::libc::c_uint =
    3221225780;
pub const MD_NTSTATUS_WIN_STATUS_DLL_NOT_FOUND: ::libc::c_uint = 3221225781;
pub const MD_NTSTATUS_WIN_STATUS_OPEN_FAILED: ::libc::c_uint = 3221225782;
pub const MD_NTSTATUS_WIN_STATUS_IO_PRIVILEGE_FAILED: ::libc::c_uint =
    3221225783;
pub const MD_NTSTATUS_WIN_STATUS_ORDINAL_NOT_FOUND: ::libc::c_uint =
    3221225784;
pub const MD_NTSTATUS_WIN_STATUS_ENTRYPOINT_NOT_FOUND: ::libc::c_uint =
    3221225785;
pub const MD_NTSTATUS_WIN_STATUS_CONTROL_C_EXIT: ::libc::c_uint = 3221225786;
pub const MD_NTSTATUS_WIN_STATUS_LOCAL_DISCONNECT: ::libc::c_uint =
    3221225787;
pub const MD_NTSTATUS_WIN_STATUS_REMOTE_DISCONNECT: ::libc::c_uint =
    3221225788;
pub const MD_NTSTATUS_WIN_STATUS_REMOTE_RESOURCES: ::libc::c_uint =
    3221225789;
pub const MD_NTSTATUS_WIN_STATUS_LINK_FAILED: ::libc::c_uint = 3221225790;
pub const MD_NTSTATUS_WIN_STATUS_LINK_TIMEOUT: ::libc::c_uint = 3221225791;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_CONNECTION: ::libc::c_uint =
    3221225792;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_ADDRESS: ::libc::c_uint = 3221225793;
pub const MD_NTSTATUS_WIN_STATUS_DLL_INIT_FAILED: ::libc::c_uint = 3221225794;
pub const MD_NTSTATUS_WIN_STATUS_MISSING_SYSTEMFILE: ::libc::c_uint =
    3221225795;
pub const MD_NTSTATUS_WIN_STATUS_UNHANDLED_EXCEPTION: ::libc::c_uint =
    3221225796;
pub const MD_NTSTATUS_WIN_STATUS_APP_INIT_FAILURE: ::libc::c_uint =
    3221225797;
pub const MD_NTSTATUS_WIN_STATUS_PAGEFILE_CREATE_FAILED: ::libc::c_uint =
    3221225798;
pub const MD_NTSTATUS_WIN_STATUS_NO_PAGEFILE: ::libc::c_uint = 3221225799;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_LEVEL: ::libc::c_uint = 3221225800;
pub const MD_NTSTATUS_WIN_STATUS_WRONG_PASSWORD_CORE: ::libc::c_uint =
    3221225801;
pub const MD_NTSTATUS_WIN_STATUS_ILLEGAL_FLOAT_CONTEXT: ::libc::c_uint =
    3221225802;
pub const MD_NTSTATUS_WIN_STATUS_PIPE_BROKEN: ::libc::c_uint = 3221225803;
pub const MD_NTSTATUS_WIN_STATUS_REGISTRY_CORRUPT: ::libc::c_uint =
    3221225804;
pub const MD_NTSTATUS_WIN_STATUS_REGISTRY_IO_FAILED: ::libc::c_uint =
    3221225805;
pub const MD_NTSTATUS_WIN_STATUS_NO_EVENT_PAIR: ::libc::c_uint = 3221225806;
pub const MD_NTSTATUS_WIN_STATUS_UNRECOGNIZED_VOLUME: ::libc::c_uint =
    3221225807;
pub const MD_NTSTATUS_WIN_STATUS_SERIAL_NO_DEVICE_INITED: ::libc::c_uint =
    3221225808;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_ALIAS: ::libc::c_uint = 3221225809;
pub const MD_NTSTATUS_WIN_STATUS_MEMBER_NOT_IN_ALIAS: ::libc::c_uint =
    3221225810;
pub const MD_NTSTATUS_WIN_STATUS_MEMBER_IN_ALIAS: ::libc::c_uint = 3221225811;
pub const MD_NTSTATUS_WIN_STATUS_ALIAS_EXISTS: ::libc::c_uint = 3221225812;
pub const MD_NTSTATUS_WIN_STATUS_LOGON_NOT_GRANTED: ::libc::c_uint =
    3221225813;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_SECRETS: ::libc::c_uint =
    3221225814;
pub const MD_NTSTATUS_WIN_STATUS_SECRET_TOO_LONG: ::libc::c_uint = 3221225815;
pub const MD_NTSTATUS_WIN_STATUS_INTERNAL_DB_ERROR: ::libc::c_uint =
    3221225816;
pub const MD_NTSTATUS_WIN_STATUS_FULLSCREEN_MODE: ::libc::c_uint = 3221225817;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_CONTEXT_IDS: ::libc::c_uint =
    3221225818;
pub const MD_NTSTATUS_WIN_STATUS_LOGON_TYPE_NOT_GRANTED: ::libc::c_uint =
    3221225819;
pub const MD_NTSTATUS_WIN_STATUS_NOT_REGISTRY_FILE: ::libc::c_uint =
    3221225820;
pub const MD_NTSTATUS_WIN_STATUS_NT_CROSS_ENCRYPTION_REQUIRED: ::libc::c_uint
          =
    3221225821;
pub const MD_NTSTATUS_WIN_STATUS_DOMAIN_CTRLR_CONFIG_ERROR: ::libc::c_uint =
    3221225822;
pub const MD_NTSTATUS_WIN_STATUS_FT_MISSING_MEMBER: ::libc::c_uint =
    3221225823;
pub const MD_NTSTATUS_WIN_STATUS_ILL_FORMED_SERVICE_ENTRY: ::libc::c_uint =
    3221225824;
pub const MD_NTSTATUS_WIN_STATUS_ILLEGAL_CHARACTER: ::libc::c_uint =
    3221225825;
pub const MD_NTSTATUS_WIN_STATUS_UNMAPPABLE_CHARACTER: ::libc::c_uint =
    3221225826;
pub const MD_NTSTATUS_WIN_STATUS_UNDEFINED_CHARACTER: ::libc::c_uint =
    3221225827;
pub const MD_NTSTATUS_WIN_STATUS_FLOPPY_VOLUME: ::libc::c_uint = 3221225828;
pub const MD_NTSTATUS_WIN_STATUS_FLOPPY_ID_MARK_NOT_FOUND: ::libc::c_uint =
    3221225829;
pub const MD_NTSTATUS_WIN_STATUS_FLOPPY_WRONG_CYLINDER: ::libc::c_uint =
    3221225830;
pub const MD_NTSTATUS_WIN_STATUS_FLOPPY_UNKNOWN_ERROR: ::libc::c_uint =
    3221225831;
pub const MD_NTSTATUS_WIN_STATUS_FLOPPY_BAD_REGISTERS: ::libc::c_uint =
    3221225832;
pub const MD_NTSTATUS_WIN_STATUS_DISK_RECALIBRATE_FAILED: ::libc::c_uint =
    3221225833;
pub const MD_NTSTATUS_WIN_STATUS_DISK_OPERATION_FAILED: ::libc::c_uint =
    3221225834;
pub const MD_NTSTATUS_WIN_STATUS_DISK_RESET_FAILED: ::libc::c_uint =
    3221225835;
pub const MD_NTSTATUS_WIN_STATUS_SHARED_IRQ_BUSY: ::libc::c_uint = 3221225836;
pub const MD_NTSTATUS_WIN_STATUS_FT_ORPHANING: ::libc::c_uint = 3221225837;
pub const MD_NTSTATUS_WIN_STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT:
          ::libc::c_uint =
    3221225838;
pub const MD_NTSTATUS_WIN_STATUS_PARTITION_FAILURE: ::libc::c_uint =
    3221225842;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_BLOCK_LENGTH: ::libc::c_uint =
    3221225843;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_NOT_PARTITIONED: ::libc::c_uint =
    3221225844;
pub const MD_NTSTATUS_WIN_STATUS_UNABLE_TO_LOCK_MEDIA: ::libc::c_uint =
    3221225845;
pub const MD_NTSTATUS_WIN_STATUS_UNABLE_TO_UNLOAD_MEDIA: ::libc::c_uint =
    3221225846;
pub const MD_NTSTATUS_WIN_STATUS_EOM_OVERFLOW: ::libc::c_uint = 3221225847;
pub const MD_NTSTATUS_WIN_STATUS_NO_MEDIA: ::libc::c_uint = 3221225848;
pub const MD_NTSTATUS_WIN_STATUS_NO_SUCH_MEMBER: ::libc::c_uint = 3221225850;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_MEMBER: ::libc::c_uint = 3221225851;
pub const MD_NTSTATUS_WIN_STATUS_KEY_DELETED: ::libc::c_uint = 3221225852;
pub const MD_NTSTATUS_WIN_STATUS_NO_LOG_SPACE: ::libc::c_uint = 3221225853;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_SIDS: ::libc::c_uint = 3221225854;
pub const MD_NTSTATUS_WIN_STATUS_LM_CROSS_ENCRYPTION_REQUIRED: ::libc::c_uint
          =
    3221225855;
pub const MD_NTSTATUS_WIN_STATUS_KEY_HAS_CHILDREN: ::libc::c_uint =
    3221225856;
pub const MD_NTSTATUS_WIN_STATUS_CHILD_MUST_BE_VOLATILE: ::libc::c_uint =
    3221225857;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_CONFIGURATION_ERROR: ::libc::c_uint =
    3221225858;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_INTERNAL_ERROR: ::libc::c_uint =
    3221225859;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_DEVICE_STATE: ::libc::c_uint =
    3221225860;
pub const MD_NTSTATUS_WIN_STATUS_IO_DEVICE_ERROR: ::libc::c_uint = 3221225861;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_PROTOCOL_ERROR: ::libc::c_uint =
    3221225862;
pub const MD_NTSTATUS_WIN_STATUS_BACKUP_CONTROLLER: ::libc::c_uint =
    3221225863;
pub const MD_NTSTATUS_WIN_STATUS_LOG_FILE_FULL: ::libc::c_uint = 3221225864;
pub const MD_NTSTATUS_WIN_STATUS_TOO_LATE: ::libc::c_uint = 3221225865;
pub const MD_NTSTATUS_WIN_STATUS_NO_TRUST_LSA_SECRET: ::libc::c_uint =
    3221225866;
pub const MD_NTSTATUS_WIN_STATUS_NO_TRUST_SAM_ACCOUNT: ::libc::c_uint =
    3221225867;
pub const MD_NTSTATUS_WIN_STATUS_TRUSTED_DOMAIN_FAILURE: ::libc::c_uint =
    3221225868;
pub const MD_NTSTATUS_WIN_STATUS_TRUSTED_RELATIONSHIP_FAILURE: ::libc::c_uint
          =
    3221225869;
pub const MD_NTSTATUS_WIN_STATUS_EVENTLOG_FILE_CORRUPT: ::libc::c_uint =
    3221225870;
pub const MD_NTSTATUS_WIN_STATUS_EVENTLOG_CANT_START: ::libc::c_uint =
    3221225871;
pub const MD_NTSTATUS_WIN_STATUS_TRUST_FAILURE: ::libc::c_uint = 3221225872;
pub const MD_NTSTATUS_WIN_STATUS_MUTANT_LIMIT_EXCEEDED: ::libc::c_uint =
    3221225873;
pub const MD_NTSTATUS_WIN_STATUS_NETLOGON_NOT_STARTED: ::libc::c_uint =
    3221225874;
pub const MD_NTSTATUS_WIN_STATUS_ACCOUNT_EXPIRED: ::libc::c_uint = 3221225875;
pub const MD_NTSTATUS_WIN_STATUS_POSSIBLE_DEADLOCK: ::libc::c_uint =
    3221225876;
pub const MD_NTSTATUS_WIN_STATUS_NETWORK_CREDENTIAL_CONFLICT: ::libc::c_uint =
    3221225877;
pub const MD_NTSTATUS_WIN_STATUS_REMOTE_SESSION_LIMIT: ::libc::c_uint =
    3221225878;
pub const MD_NTSTATUS_WIN_STATUS_EVENTLOG_FILE_CHANGED: ::libc::c_uint =
    3221225879;
pub const MD_NTSTATUS_WIN_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT:
          ::libc::c_uint =
    3221225880;
pub const MD_NTSTATUS_WIN_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT:
          ::libc::c_uint =
    3221225881;
pub const MD_NTSTATUS_WIN_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT: ::libc::c_uint
          =
    3221225882;
pub const MD_NTSTATUS_WIN_STATUS_DOMAIN_TRUST_INCONSISTENT: ::libc::c_uint =
    3221225883;
pub const MD_NTSTATUS_WIN_STATUS_FS_DRIVER_REQUIRED: ::libc::c_uint =
    3221225884;
pub const MD_NTSTATUS_WIN_STATUS_IMAGE_ALREADY_LOADED_AS_DLL: ::libc::c_uint =
    3221225885;
pub const MD_NTSTATUS_WIN_STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING:
          ::libc::c_uint =
    3221225886;
pub const MD_NTSTATUS_WIN_STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME:
          ::libc::c_uint =
    3221225887;
pub const MD_NTSTATUS_WIN_STATUS_SECURITY_STREAM_IS_INCONSISTENT:
          ::libc::c_uint =
    3221225888;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_LOCK_RANGE: ::libc::c_uint =
    3221225889;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_ACE_CONDITION: ::libc::c_uint =
    3221225890;
pub const MD_NTSTATUS_WIN_STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT: ::libc::c_uint =
    3221225891;
pub const MD_NTSTATUS_WIN_STATUS_NOTIFICATION_GUID_ALREADY_DEFINED:
          ::libc::c_uint =
    3221225892;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_EXCEPTION_HANDLER: ::libc::c_uint =
    3221225893;
pub const MD_NTSTATUS_WIN_STATUS_DUPLICATE_PRIVILEGES: ::libc::c_uint =
    3221225894;
pub const MD_NTSTATUS_WIN_STATUS_NOT_ALLOWED_ON_SYSTEM_FILE: ::libc::c_uint =
    3221225895;
pub const MD_NTSTATUS_WIN_STATUS_REPAIR_NEEDED: ::libc::c_uint = 3221225896;
pub const MD_NTSTATUS_WIN_STATUS_QUOTA_NOT_ENABLED: ::libc::c_uint =
    3221225897;
pub const MD_NTSTATUS_WIN_STATUS_NO_APPLICATION_PACKAGE: ::libc::c_uint =
    3221225898;
pub const MD_NTSTATUS_WIN_STATUS_NETWORK_OPEN_RESTRICTION: ::libc::c_uint =
    3221225985;
pub const MD_NTSTATUS_WIN_STATUS_NO_USER_SESSION_KEY: ::libc::c_uint =
    3221225986;
pub const MD_NTSTATUS_WIN_STATUS_USER_SESSION_DELETED: ::libc::c_uint =
    3221225987;
pub const MD_NTSTATUS_WIN_STATUS_RESOURCE_LANG_NOT_FOUND: ::libc::c_uint =
    3221225988;
pub const MD_NTSTATUS_WIN_STATUS_INSUFF_SERVER_RESOURCES: ::libc::c_uint =
    3221225989;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_BUFFER_SIZE: ::libc::c_uint =
    3221225990;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_ADDRESS_COMPONENT: ::libc::c_uint =
    3221225991;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_ADDRESS_WILDCARD: ::libc::c_uint =
    3221225992;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_ADDRESSES: ::libc::c_uint =
    3221225993;
pub const MD_NTSTATUS_WIN_STATUS_ADDRESS_ALREADY_EXISTS: ::libc::c_uint =
    3221225994;
pub const MD_NTSTATUS_WIN_STATUS_ADDRESS_CLOSED: ::libc::c_uint = 3221225995;
pub const MD_NTSTATUS_WIN_STATUS_CONNECTION_DISCONNECTED: ::libc::c_uint =
    3221225996;
pub const MD_NTSTATUS_WIN_STATUS_CONNECTION_RESET: ::libc::c_uint =
    3221225997;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_NODES: ::libc::c_uint = 3221225998;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_ABORTED: ::libc::c_uint =
    3221225999;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_TIMED_OUT: ::libc::c_uint =
    3221226000;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_NO_RELEASE: ::libc::c_uint =
    3221226001;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_NO_MATCH: ::libc::c_uint =
    3221226002;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_RESPONDED: ::libc::c_uint =
    3221226003;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_INVALID_ID: ::libc::c_uint =
    3221226004;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_INVALID_TYPE: ::libc::c_uint =
    3221226005;
pub const MD_NTSTATUS_WIN_STATUS_NOT_SERVER_SESSION: ::libc::c_uint =
    3221226006;
pub const MD_NTSTATUS_WIN_STATUS_NOT_CLIENT_SESSION: ::libc::c_uint =
    3221226007;
pub const MD_NTSTATUS_WIN_STATUS_CANNOT_LOAD_REGISTRY_FILE: ::libc::c_uint =
    3221226008;
pub const MD_NTSTATUS_WIN_STATUS_DEBUG_ATTACH_FAILED: ::libc::c_uint =
    3221226009;
pub const MD_NTSTATUS_WIN_STATUS_SYSTEM_PROCESS_TERMINATED: ::libc::c_uint =
    3221226010;
pub const MD_NTSTATUS_WIN_STATUS_DATA_NOT_ACCEPTED: ::libc::c_uint =
    3221226011;
pub const MD_NTSTATUS_WIN_STATUS_NO_BROWSER_SERVERS_FOUND: ::libc::c_uint =
    3221226012;
pub const MD_NTSTATUS_WIN_STATUS_VDM_HARD_ERROR: ::libc::c_uint = 3221226013;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_CANCEL_TIMEOUT: ::libc::c_uint =
    3221226014;
pub const MD_NTSTATUS_WIN_STATUS_REPLY_MESSAGE_MISMATCH: ::libc::c_uint =
    3221226015;
pub const MD_NTSTATUS_WIN_STATUS_MAPPED_ALIGNMENT: ::libc::c_uint =
    3221226016;
pub const MD_NTSTATUS_WIN_STATUS_IMAGE_CHECKSUM_MISMATCH: ::libc::c_uint =
    3221226017;
pub const MD_NTSTATUS_WIN_STATUS_LOST_WRITEBEHIND_DATA: ::libc::c_uint =
    3221226018;
pub const MD_NTSTATUS_WIN_STATUS_CLIENT_SERVER_PARAMETERS_INVALID:
          ::libc::c_uint =
    3221226019;
pub const MD_NTSTATUS_WIN_STATUS_PASSWORD_MUST_CHANGE: ::libc::c_uint =
    3221226020;
pub const MD_NTSTATUS_WIN_STATUS_NOT_FOUND: ::libc::c_uint = 3221226021;
pub const MD_NTSTATUS_WIN_STATUS_NOT_TINY_STREAM: ::libc::c_uint = 3221226022;
pub const MD_NTSTATUS_WIN_STATUS_RECOVERY_FAILURE: ::libc::c_uint =
    3221226023;
pub const MD_NTSTATUS_WIN_STATUS_STACK_OVERFLOW_READ: ::libc::c_uint =
    3221226024;
pub const MD_NTSTATUS_WIN_STATUS_FAIL_CHECK: ::libc::c_uint = 3221226025;
pub const MD_NTSTATUS_WIN_STATUS_DUPLICATE_OBJECTID: ::libc::c_uint =
    3221226026;
pub const MD_NTSTATUS_WIN_STATUS_OBJECTID_EXISTS: ::libc::c_uint = 3221226027;
pub const MD_NTSTATUS_WIN_STATUS_CONVERT_TO_LARGE: ::libc::c_uint =
    3221226028;
pub const MD_NTSTATUS_WIN_STATUS_RETRY: ::libc::c_uint = 3221226029;
pub const MD_NTSTATUS_WIN_STATUS_FOUND_OUT_OF_SCOPE: ::libc::c_uint =
    3221226030;
pub const MD_NTSTATUS_WIN_STATUS_ALLOCATE_BUCKET: ::libc::c_uint = 3221226031;
pub const MD_NTSTATUS_WIN_STATUS_PROPSET_NOT_FOUND: ::libc::c_uint =
    3221226032;
pub const MD_NTSTATUS_WIN_STATUS_MARSHALL_OVERFLOW: ::libc::c_uint =
    3221226033;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_VARIANT: ::libc::c_uint = 3221226034;
pub const MD_NTSTATUS_WIN_STATUS_DOMAIN_CONTROLLER_NOT_FOUND: ::libc::c_uint =
    3221226035;
pub const MD_NTSTATUS_WIN_STATUS_ACCOUNT_LOCKED_OUT: ::libc::c_uint =
    3221226036;
pub const MD_NTSTATUS_WIN_STATUS_HANDLE_NOT_CLOSABLE: ::libc::c_uint =
    3221226037;
pub const MD_NTSTATUS_WIN_STATUS_CONNECTION_REFUSED: ::libc::c_uint =
    3221226038;
pub const MD_NTSTATUS_WIN_STATUS_GRACEFUL_DISCONNECT: ::libc::c_uint =
    3221226039;
pub const MD_NTSTATUS_WIN_STATUS_ADDRESS_ALREADY_ASSOCIATED: ::libc::c_uint =
    3221226040;
pub const MD_NTSTATUS_WIN_STATUS_ADDRESS_NOT_ASSOCIATED: ::libc::c_uint =
    3221226041;
pub const MD_NTSTATUS_WIN_STATUS_CONNECTION_INVALID: ::libc::c_uint =
    3221226042;
pub const MD_NTSTATUS_WIN_STATUS_CONNECTION_ACTIVE: ::libc::c_uint =
    3221226043;
pub const MD_NTSTATUS_WIN_STATUS_NETWORK_UNREACHABLE: ::libc::c_uint =
    3221226044;
pub const MD_NTSTATUS_WIN_STATUS_HOST_UNREACHABLE: ::libc::c_uint =
    3221226045;
pub const MD_NTSTATUS_WIN_STATUS_PROTOCOL_UNREACHABLE: ::libc::c_uint =
    3221226046;
pub const MD_NTSTATUS_WIN_STATUS_PORT_UNREACHABLE: ::libc::c_uint =
    3221226047;
pub const MD_NTSTATUS_WIN_STATUS_REQUEST_ABORTED: ::libc::c_uint = 3221226048;
pub const MD_NTSTATUS_WIN_STATUS_CONNECTION_ABORTED: ::libc::c_uint =
    3221226049;
pub const MD_NTSTATUS_WIN_STATUS_BAD_COMPRESSION_BUFFER: ::libc::c_uint =
    3221226050;
pub const MD_NTSTATUS_WIN_STATUS_USER_MAPPED_FILE: ::libc::c_uint =
    3221226051;
pub const MD_NTSTATUS_WIN_STATUS_AUDIT_FAILED: ::libc::c_uint = 3221226052;
pub const MD_NTSTATUS_WIN_STATUS_TIMER_RESOLUTION_NOT_SET: ::libc::c_uint =
    3221226053;
pub const MD_NTSTATUS_WIN_STATUS_CONNECTION_COUNT_LIMIT: ::libc::c_uint =
    3221226054;
pub const MD_NTSTATUS_WIN_STATUS_LOGIN_TIME_RESTRICTION: ::libc::c_uint =
    3221226055;
pub const MD_NTSTATUS_WIN_STATUS_LOGIN_WKSTA_RESTRICTION: ::libc::c_uint =
    3221226056;
pub const MD_NTSTATUS_WIN_STATUS_IMAGE_MP_UP_MISMATCH: ::libc::c_uint =
    3221226057;
pub const MD_NTSTATUS_WIN_STATUS_INSUFFICIENT_LOGON_INFO: ::libc::c_uint =
    3221226064;
pub const MD_NTSTATUS_WIN_STATUS_BAD_DLL_ENTRYPOINT: ::libc::c_uint =
    3221226065;
pub const MD_NTSTATUS_WIN_STATUS_BAD_SERVICE_ENTRYPOINT: ::libc::c_uint =
    3221226066;
pub const MD_NTSTATUS_WIN_STATUS_LPC_REPLY_LOST: ::libc::c_uint = 3221226067;
pub const MD_NTSTATUS_WIN_STATUS_IP_ADDRESS_CONFLICT1: ::libc::c_uint =
    3221226068;
pub const MD_NTSTATUS_WIN_STATUS_IP_ADDRESS_CONFLICT2: ::libc::c_uint =
    3221226069;
pub const MD_NTSTATUS_WIN_STATUS_REGISTRY_QUOTA_LIMIT: ::libc::c_uint =
    3221226070;
pub const MD_NTSTATUS_WIN_STATUS_PATH_NOT_COVERED: ::libc::c_uint =
    3221226071;
pub const MD_NTSTATUS_WIN_STATUS_NO_CALLBACK_ACTIVE: ::libc::c_uint =
    3221226072;
pub const MD_NTSTATUS_WIN_STATUS_LICENSE_QUOTA_EXCEEDED: ::libc::c_uint =
    3221226073;
pub const MD_NTSTATUS_WIN_STATUS_PWD_TOO_SHORT: ::libc::c_uint = 3221226074;
pub const MD_NTSTATUS_WIN_STATUS_PWD_TOO_RECENT: ::libc::c_uint = 3221226075;
pub const MD_NTSTATUS_WIN_STATUS_PWD_HISTORY_CONFLICT: ::libc::c_uint =
    3221226076;
pub const MD_NTSTATUS_WIN_STATUS_PLUGPLAY_NO_DEVICE: ::libc::c_uint =
    3221226078;
pub const MD_NTSTATUS_WIN_STATUS_UNSUPPORTED_COMPRESSION: ::libc::c_uint =
    3221226079;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_HW_PROFILE: ::libc::c_uint =
    3221226080;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PLUGPLAY_DEVICE_PATH: ::libc::c_uint
          =
    3221226081;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_ORDINAL_NOT_FOUND: ::libc::c_uint =
    3221226082;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND: ::libc::c_uint =
    3221226083;
pub const MD_NTSTATUS_WIN_STATUS_RESOURCE_NOT_OWNED: ::libc::c_uint =
    3221226084;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_LINKS: ::libc::c_uint = 3221226085;
pub const MD_NTSTATUS_WIN_STATUS_QUOTA_LIST_INCONSISTENT: ::libc::c_uint =
    3221226086;
pub const MD_NTSTATUS_WIN_STATUS_FILE_IS_OFFLINE: ::libc::c_uint = 3221226087;
pub const MD_NTSTATUS_WIN_STATUS_EVALUATION_EXPIRATION: ::libc::c_uint =
    3221226088;
pub const MD_NTSTATUS_WIN_STATUS_ILLEGAL_DLL_RELOCATION: ::libc::c_uint =
    3221226089;
pub const MD_NTSTATUS_WIN_STATUS_LICENSE_VIOLATION: ::libc::c_uint =
    3221226090;
pub const MD_NTSTATUS_WIN_STATUS_DLL_INIT_FAILED_LOGOFF: ::libc::c_uint =
    3221226091;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_UNABLE_TO_LOAD: ::libc::c_uint =
    3221226092;
pub const MD_NTSTATUS_WIN_STATUS_DFS_UNAVAILABLE: ::libc::c_uint = 3221226093;
pub const MD_NTSTATUS_WIN_STATUS_VOLUME_DISMOUNTED: ::libc::c_uint =
    3221226094;
pub const MD_NTSTATUS_WIN_STATUS_WX86_INTERNAL_ERROR: ::libc::c_uint =
    3221226095;
pub const MD_NTSTATUS_WIN_STATUS_WX86_FLOAT_STACK_CHECK: ::libc::c_uint =
    3221226096;
pub const MD_NTSTATUS_WIN_STATUS_VALIDATE_CONTINUE: ::libc::c_uint =
    3221226097;
pub const MD_NTSTATUS_WIN_STATUS_NO_MATCH: ::libc::c_uint = 3221226098;
pub const MD_NTSTATUS_WIN_STATUS_NO_MORE_MATCHES: ::libc::c_uint = 3221226099;
pub const MD_NTSTATUS_WIN_STATUS_NOT_A_REPARSE_POINT: ::libc::c_uint =
    3221226101;
pub const MD_NTSTATUS_WIN_STATUS_IO_REPARSE_TAG_INVALID: ::libc::c_uint =
    3221226102;
pub const MD_NTSTATUS_WIN_STATUS_IO_REPARSE_TAG_MISMATCH: ::libc::c_uint =
    3221226103;
pub const MD_NTSTATUS_WIN_STATUS_IO_REPARSE_DATA_INVALID: ::libc::c_uint =
    3221226104;
pub const MD_NTSTATUS_WIN_STATUS_IO_REPARSE_TAG_NOT_HANDLED: ::libc::c_uint =
    3221226105;
pub const MD_NTSTATUS_WIN_STATUS_PWD_TOO_LONG: ::libc::c_uint = 3221226106;
pub const MD_NTSTATUS_WIN_STATUS_STOWED_EXCEPTION: ::libc::c_uint =
    3221226107;
pub const MD_NTSTATUS_WIN_STATUS_REPARSE_POINT_NOT_RESOLVED: ::libc::c_uint =
    3221226112;
pub const MD_NTSTATUS_WIN_STATUS_DIRECTORY_IS_A_REPARSE_POINT: ::libc::c_uint
          =
    3221226113;
pub const MD_NTSTATUS_WIN_STATUS_RANGE_LIST_CONFLICT: ::libc::c_uint =
    3221226114;
pub const MD_NTSTATUS_WIN_STATUS_SOURCE_ELEMENT_EMPTY: ::libc::c_uint =
    3221226115;
pub const MD_NTSTATUS_WIN_STATUS_DESTINATION_ELEMENT_FULL: ::libc::c_uint =
    3221226116;
pub const MD_NTSTATUS_WIN_STATUS_ILLEGAL_ELEMENT_ADDRESS: ::libc::c_uint =
    3221226117;
pub const MD_NTSTATUS_WIN_STATUS_MAGAZINE_NOT_PRESENT: ::libc::c_uint =
    3221226118;
pub const MD_NTSTATUS_WIN_STATUS_REINITIALIZATION_NEEDED: ::libc::c_uint =
    3221226119;
pub const MD_NTSTATUS_WIN_STATUS_ENCRYPTION_FAILED: ::libc::c_uint =
    3221226122;
pub const MD_NTSTATUS_WIN_STATUS_DECRYPTION_FAILED: ::libc::c_uint =
    3221226123;
pub const MD_NTSTATUS_WIN_STATUS_RANGE_NOT_FOUND: ::libc::c_uint = 3221226124;
pub const MD_NTSTATUS_WIN_STATUS_NO_RECOVERY_POLICY: ::libc::c_uint =
    3221226125;
pub const MD_NTSTATUS_WIN_STATUS_NO_EFS: ::libc::c_uint = 3221226126;
pub const MD_NTSTATUS_WIN_STATUS_WRONG_EFS: ::libc::c_uint = 3221226127;
pub const MD_NTSTATUS_WIN_STATUS_NO_USER_KEYS: ::libc::c_uint = 3221226128;
pub const MD_NTSTATUS_WIN_STATUS_FILE_NOT_ENCRYPTED: ::libc::c_uint =
    3221226129;
pub const MD_NTSTATUS_WIN_STATUS_NOT_EXPORT_FORMAT: ::libc::c_uint =
    3221226130;
pub const MD_NTSTATUS_WIN_STATUS_FILE_ENCRYPTED: ::libc::c_uint = 3221226131;
pub const MD_NTSTATUS_WIN_STATUS_WMI_GUID_NOT_FOUND: ::libc::c_uint =
    3221226133;
pub const MD_NTSTATUS_WIN_STATUS_WMI_INSTANCE_NOT_FOUND: ::libc::c_uint =
    3221226134;
pub const MD_NTSTATUS_WIN_STATUS_WMI_ITEMID_NOT_FOUND: ::libc::c_uint =
    3221226135;
pub const MD_NTSTATUS_WIN_STATUS_WMI_TRY_AGAIN: ::libc::c_uint = 3221226136;
pub const MD_NTSTATUS_WIN_STATUS_SHARED_POLICY: ::libc::c_uint = 3221226137;
pub const MD_NTSTATUS_WIN_STATUS_POLICY_OBJECT_NOT_FOUND: ::libc::c_uint =
    3221226138;
pub const MD_NTSTATUS_WIN_STATUS_POLICY_ONLY_IN_DS: ::libc::c_uint =
    3221226139;
pub const MD_NTSTATUS_WIN_STATUS_VOLUME_NOT_UPGRADED: ::libc::c_uint =
    3221226140;
pub const MD_NTSTATUS_WIN_STATUS_REMOTE_STORAGE_NOT_ACTIVE: ::libc::c_uint =
    3221226141;
pub const MD_NTSTATUS_WIN_STATUS_REMOTE_STORAGE_MEDIA_ERROR: ::libc::c_uint =
    3221226142;
pub const MD_NTSTATUS_WIN_STATUS_NO_TRACKING_SERVICE: ::libc::c_uint =
    3221226143;
pub const MD_NTSTATUS_WIN_STATUS_SERVER_SID_MISMATCH: ::libc::c_uint =
    3221226144;
pub const MD_NTSTATUS_WIN_STATUS_DS_NO_ATTRIBUTE_OR_VALUE: ::libc::c_uint =
    3221226145;
pub const MD_NTSTATUS_WIN_STATUS_DS_INVALID_ATTRIBUTE_SYNTAX: ::libc::c_uint =
    3221226146;
pub const MD_NTSTATUS_WIN_STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED: ::libc::c_uint =
    3221226147;
pub const MD_NTSTATUS_WIN_STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS: ::libc::c_uint
          =
    3221226148;
pub const MD_NTSTATUS_WIN_STATUS_DS_BUSY: ::libc::c_uint = 3221226149;
pub const MD_NTSTATUS_WIN_STATUS_DS_UNAVAILABLE: ::libc::c_uint = 3221226150;
pub const MD_NTSTATUS_WIN_STATUS_DS_NO_RIDS_ALLOCATED: ::libc::c_uint =
    3221226151;
pub const MD_NTSTATUS_WIN_STATUS_DS_NO_MORE_RIDS: ::libc::c_uint = 3221226152;
pub const MD_NTSTATUS_WIN_STATUS_DS_INCORRECT_ROLE_OWNER: ::libc::c_uint =
    3221226153;
pub const MD_NTSTATUS_WIN_STATUS_DS_RIDMGR_INIT_ERROR: ::libc::c_uint =
    3221226154;
pub const MD_NTSTATUS_WIN_STATUS_DS_OBJ_CLASS_VIOLATION: ::libc::c_uint =
    3221226155;
pub const MD_NTSTATUS_WIN_STATUS_DS_CANT_ON_NON_LEAF: ::libc::c_uint =
    3221226156;
pub const MD_NTSTATUS_WIN_STATUS_DS_CANT_ON_RDN: ::libc::c_uint = 3221226157;
pub const MD_NTSTATUS_WIN_STATUS_DS_CANT_MOD_OBJ_CLASS: ::libc::c_uint =
    3221226158;
pub const MD_NTSTATUS_WIN_STATUS_DS_CROSS_DOM_MOVE_FAILED: ::libc::c_uint =
    3221226159;
pub const MD_NTSTATUS_WIN_STATUS_DS_GC_NOT_AVAILABLE: ::libc::c_uint =
    3221226160;
pub const MD_NTSTATUS_WIN_STATUS_DIRECTORY_SERVICE_REQUIRED: ::libc::c_uint =
    3221226161;
pub const MD_NTSTATUS_WIN_STATUS_REPARSE_ATTRIBUTE_CONFLICT: ::libc::c_uint =
    3221226162;
pub const MD_NTSTATUS_WIN_STATUS_CANT_ENABLE_DENY_ONLY: ::libc::c_uint =
    3221226163;
pub const MD_NTSTATUS_WIN_STATUS_FLOAT_MULTIPLE_FAULTS: ::libc::c_uint =
    3221226164;
pub const MD_NTSTATUS_WIN_STATUS_FLOAT_MULTIPLE_TRAPS: ::libc::c_uint =
    3221226165;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_REMOVED: ::libc::c_uint = 3221226166;
pub const MD_NTSTATUS_WIN_STATUS_JOURNAL_DELETE_IN_PROGRESS: ::libc::c_uint =
    3221226167;
pub const MD_NTSTATUS_WIN_STATUS_JOURNAL_NOT_ACTIVE: ::libc::c_uint =
    3221226168;
pub const MD_NTSTATUS_WIN_STATUS_NOINTERFACE: ::libc::c_uint = 3221226169;
pub const MD_NTSTATUS_WIN_STATUS_DS_RIDMGR_DISABLED: ::libc::c_uint =
    3221226170;
pub const MD_NTSTATUS_WIN_STATUS_DS_ADMIN_LIMIT_EXCEEDED: ::libc::c_uint =
    3221226177;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_FAILED_SLEEP: ::libc::c_uint =
    3221226178;
pub const MD_NTSTATUS_WIN_STATUS_MUTUAL_AUTHENTICATION_FAILED: ::libc::c_uint
          =
    3221226179;
pub const MD_NTSTATUS_WIN_STATUS_CORRUPT_SYSTEM_FILE: ::libc::c_uint =
    3221226180;
pub const MD_NTSTATUS_WIN_STATUS_DATATYPE_MISALIGNMENT_ERROR: ::libc::c_uint =
    3221226181;
pub const MD_NTSTATUS_WIN_STATUS_WMI_READ_ONLY: ::libc::c_uint = 3221226182;
pub const MD_NTSTATUS_WIN_STATUS_WMI_SET_FAILURE: ::libc::c_uint = 3221226183;
pub const MD_NTSTATUS_WIN_STATUS_COMMITMENT_MINIMUM: ::libc::c_uint =
    3221226184;
pub const MD_NTSTATUS_WIN_STATUS_REG_NAT_CONSUMPTION: ::libc::c_uint =
    3221226185;
pub const MD_NTSTATUS_WIN_STATUS_TRANSPORT_FULL: ::libc::c_uint = 3221226186;
pub const MD_NTSTATUS_WIN_STATUS_DS_SAM_INIT_FAILURE: ::libc::c_uint =
    3221226187;
pub const MD_NTSTATUS_WIN_STATUS_ONLY_IF_CONNECTED: ::libc::c_uint =
    3221226188;
pub const MD_NTSTATUS_WIN_STATUS_DS_SENSITIVE_GROUP_VIOLATION: ::libc::c_uint
          =
    3221226189;
pub const MD_NTSTATUS_WIN_STATUS_PNP_RESTART_ENUMERATION: ::libc::c_uint =
    3221226190;
pub const MD_NTSTATUS_WIN_STATUS_JOURNAL_ENTRY_DELETED: ::libc::c_uint =
    3221226191;
pub const MD_NTSTATUS_WIN_STATUS_DS_CANT_MOD_PRIMARYGROUPID: ::libc::c_uint =
    3221226192;
pub const MD_NTSTATUS_WIN_STATUS_SYSTEM_IMAGE_BAD_SIGNATURE: ::libc::c_uint =
    3221226193;
pub const MD_NTSTATUS_WIN_STATUS_PNP_REBOOT_REQUIRED: ::libc::c_uint =
    3221226194;
pub const MD_NTSTATUS_WIN_STATUS_POWER_STATE_INVALID: ::libc::c_uint =
    3221226195;
pub const MD_NTSTATUS_WIN_STATUS_DS_INVALID_GROUP_TYPE: ::libc::c_uint =
    3221226196;
pub const MD_NTSTATUS_WIN_STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN:
          ::libc::c_uint =
    3221226197;
pub const MD_NTSTATUS_WIN_STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN:
          ::libc::c_uint =
    3221226198;
pub const MD_NTSTATUS_WIN_STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER:
          ::libc::c_uint =
    3221226199;
pub const MD_NTSTATUS_WIN_STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER:
          ::libc::c_uint =
    3221226200;
pub const MD_NTSTATUS_WIN_STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER:
          ::libc::c_uint =
    3221226201;
pub const MD_NTSTATUS_WIN_STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER:
          ::libc::c_uint =
    3221226202;
pub const MD_NTSTATUS_WIN_STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER:
          ::libc::c_uint =
    3221226203;
pub const MD_NTSTATUS_WIN_STATUS_DS_HAVE_PRIMARY_MEMBERS: ::libc::c_uint =
    3221226204;
pub const MD_NTSTATUS_WIN_STATUS_WMI_NOT_SUPPORTED: ::libc::c_uint =
    3221226205;
pub const MD_NTSTATUS_WIN_STATUS_INSUFFICIENT_POWER: ::libc::c_uint =
    3221226206;
pub const MD_NTSTATUS_WIN_STATUS_SAM_NEED_BOOTKEY_PASSWORD: ::libc::c_uint =
    3221226207;
pub const MD_NTSTATUS_WIN_STATUS_SAM_NEED_BOOTKEY_FLOPPY: ::libc::c_uint =
    3221226208;
pub const MD_NTSTATUS_WIN_STATUS_DS_CANT_START: ::libc::c_uint = 3221226209;
pub const MD_NTSTATUS_WIN_STATUS_DS_INIT_FAILURE: ::libc::c_uint = 3221226210;
pub const MD_NTSTATUS_WIN_STATUS_SAM_INIT_FAILURE: ::libc::c_uint =
    3221226211;
pub const MD_NTSTATUS_WIN_STATUS_DS_GC_REQUIRED: ::libc::c_uint = 3221226212;
pub const MD_NTSTATUS_WIN_STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY: ::libc::c_uint
          =
    3221226213;
pub const MD_NTSTATUS_WIN_STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS: ::libc::c_uint
          =
    3221226214;
pub const MD_NTSTATUS_WIN_STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED:
          ::libc::c_uint =
    3221226215;
pub const MD_NTSTATUS_WIN_STATUS_MULTIPLE_FAULT_VIOLATION: ::libc::c_uint =
    3221226216;
pub const MD_NTSTATUS_WIN_STATUS_CURRENT_DOMAIN_NOT_ALLOWED: ::libc::c_uint =
    3221226217;
pub const MD_NTSTATUS_WIN_STATUS_CANNOT_MAKE: ::libc::c_uint = 3221226218;
pub const MD_NTSTATUS_WIN_STATUS_SYSTEM_SHUTDOWN: ::libc::c_uint = 3221226219;
pub const MD_NTSTATUS_WIN_STATUS_DS_INIT_FAILURE_CONSOLE: ::libc::c_uint =
    3221226220;
pub const MD_NTSTATUS_WIN_STATUS_DS_SAM_INIT_FAILURE_CONSOLE: ::libc::c_uint =
    3221226221;
pub const MD_NTSTATUS_WIN_STATUS_UNFINISHED_CONTEXT_DELETED: ::libc::c_uint =
    3221226222;
pub const MD_NTSTATUS_WIN_STATUS_NO_TGT_REPLY: ::libc::c_uint = 3221226223;
pub const MD_NTSTATUS_WIN_STATUS_OBJECTID_NOT_FOUND: ::libc::c_uint =
    3221226224;
pub const MD_NTSTATUS_WIN_STATUS_NO_IP_ADDRESSES: ::libc::c_uint = 3221226225;
pub const MD_NTSTATUS_WIN_STATUS_WRONG_CREDENTIAL_HANDLE: ::libc::c_uint =
    3221226226;
pub const MD_NTSTATUS_WIN_STATUS_CRYPTO_SYSTEM_INVALID: ::libc::c_uint =
    3221226227;
pub const MD_NTSTATUS_WIN_STATUS_MAX_REFERRALS_EXCEEDED: ::libc::c_uint =
    3221226228;
pub const MD_NTSTATUS_WIN_STATUS_MUST_BE_KDC: ::libc::c_uint = 3221226229;
pub const MD_NTSTATUS_WIN_STATUS_STRONG_CRYPTO_NOT_SUPPORTED: ::libc::c_uint =
    3221226230;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_PRINCIPALS: ::libc::c_uint =
    3221226231;
pub const MD_NTSTATUS_WIN_STATUS_NO_PA_DATA: ::libc::c_uint = 3221226232;
pub const MD_NTSTATUS_WIN_STATUS_PKINIT_NAME_MISMATCH: ::libc::c_uint =
    3221226233;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_LOGON_REQUIRED: ::libc::c_uint =
    3221226234;
pub const MD_NTSTATUS_WIN_STATUS_KDC_INVALID_REQUEST: ::libc::c_uint =
    3221226235;
pub const MD_NTSTATUS_WIN_STATUS_KDC_UNABLE_TO_REFER: ::libc::c_uint =
    3221226236;
pub const MD_NTSTATUS_WIN_STATUS_KDC_UNKNOWN_ETYPE: ::libc::c_uint =
    3221226237;
pub const MD_NTSTATUS_WIN_STATUS_SHUTDOWN_IN_PROGRESS: ::libc::c_uint =
    3221226238;
pub const MD_NTSTATUS_WIN_STATUS_SERVER_SHUTDOWN_IN_PROGRESS: ::libc::c_uint =
    3221226239;
pub const MD_NTSTATUS_WIN_STATUS_NOT_SUPPORTED_ON_SBS: ::libc::c_uint =
    3221226240;
pub const MD_NTSTATUS_WIN_STATUS_WMI_GUID_DISCONNECTED: ::libc::c_uint =
    3221226241;
pub const MD_NTSTATUS_WIN_STATUS_WMI_ALREADY_DISABLED: ::libc::c_uint =
    3221226242;
pub const MD_NTSTATUS_WIN_STATUS_WMI_ALREADY_ENABLED: ::libc::c_uint =
    3221226243;
pub const MD_NTSTATUS_WIN_STATUS_MFT_TOO_FRAGMENTED: ::libc::c_uint =
    3221226244;
pub const MD_NTSTATUS_WIN_STATUS_COPY_PROTECTION_FAILURE: ::libc::c_uint =
    3221226245;
pub const MD_NTSTATUS_WIN_STATUS_CSS_AUTHENTICATION_FAILURE: ::libc::c_uint =
    3221226246;
pub const MD_NTSTATUS_WIN_STATUS_CSS_KEY_NOT_PRESENT: ::libc::c_uint =
    3221226247;
pub const MD_NTSTATUS_WIN_STATUS_CSS_KEY_NOT_ESTABLISHED: ::libc::c_uint =
    3221226248;
pub const MD_NTSTATUS_WIN_STATUS_CSS_SCRAMBLED_SECTOR: ::libc::c_uint =
    3221226249;
pub const MD_NTSTATUS_WIN_STATUS_CSS_REGION_MISMATCH: ::libc::c_uint =
    3221226250;
pub const MD_NTSTATUS_WIN_STATUS_CSS_RESETS_EXHAUSTED: ::libc::c_uint =
    3221226251;
pub const MD_NTSTATUS_WIN_STATUS_PASSWORD_CHANGE_REQUIRED: ::libc::c_uint =
    3221226252;
pub const MD_NTSTATUS_WIN_STATUS_PKINIT_FAILURE: ::libc::c_uint = 3221226272;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_SUBSYSTEM_FAILURE: ::libc::c_uint =
    3221226273;
pub const MD_NTSTATUS_WIN_STATUS_NO_KERB_KEY: ::libc::c_uint = 3221226274;
pub const MD_NTSTATUS_WIN_STATUS_HOST_DOWN: ::libc::c_uint = 3221226320;
pub const MD_NTSTATUS_WIN_STATUS_UNSUPPORTED_PREAUTH: ::libc::c_uint =
    3221226321;
pub const MD_NTSTATUS_WIN_STATUS_EFS_ALG_BLOB_TOO_BIG: ::libc::c_uint =
    3221226322;
pub const MD_NTSTATUS_WIN_STATUS_PORT_NOT_SET: ::libc::c_uint = 3221226323;
pub const MD_NTSTATUS_WIN_STATUS_DEBUGGER_INACTIVE: ::libc::c_uint =
    3221226324;
pub const MD_NTSTATUS_WIN_STATUS_DS_VERSION_CHECK_FAILURE: ::libc::c_uint =
    3221226325;
pub const MD_NTSTATUS_WIN_STATUS_AUDITING_DISABLED: ::libc::c_uint =
    3221226326;
pub const MD_NTSTATUS_WIN_STATUS_PRENT4_MACHINE_ACCOUNT: ::libc::c_uint =
    3221226327;
pub const MD_NTSTATUS_WIN_STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER:
          ::libc::c_uint =
    3221226328;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMAGE_WIN_32: ::libc::c_uint =
    3221226329;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMAGE_WIN_64: ::libc::c_uint =
    3221226330;
pub const MD_NTSTATUS_WIN_STATUS_BAD_BINDINGS: ::libc::c_uint = 3221226331;
pub const MD_NTSTATUS_WIN_STATUS_NETWORK_SESSION_EXPIRED: ::libc::c_uint =
    3221226332;
pub const MD_NTSTATUS_WIN_STATUS_APPHELP_BLOCK: ::libc::c_uint = 3221226333;
pub const MD_NTSTATUS_WIN_STATUS_ALL_SIDS_FILTERED: ::libc::c_uint =
    3221226334;
pub const MD_NTSTATUS_WIN_STATUS_NOT_SAFE_MODE_DRIVER: ::libc::c_uint =
    3221226335;
pub const MD_NTSTATUS_WIN_STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT:
          ::libc::c_uint =
    3221226337;
pub const MD_NTSTATUS_WIN_STATUS_ACCESS_DISABLED_BY_POLICY_PATH:
          ::libc::c_uint =
    3221226338;
pub const MD_NTSTATUS_WIN_STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER:
          ::libc::c_uint =
    3221226339;
pub const MD_NTSTATUS_WIN_STATUS_ACCESS_DISABLED_BY_POLICY_OTHER:
          ::libc::c_uint =
    3221226340;
pub const MD_NTSTATUS_WIN_STATUS_FAILED_DRIVER_ENTRY: ::libc::c_uint =
    3221226341;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_ENUMERATION_ERROR: ::libc::c_uint =
    3221226342;
pub const MD_NTSTATUS_WIN_STATUS_MOUNT_POINT_NOT_RESOLVED: ::libc::c_uint =
    3221226344;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_DEVICE_OBJECT_PARAMETER:
          ::libc::c_uint =
    3221226345;
pub const MD_NTSTATUS_WIN_STATUS_MCA_OCCURED: ::libc::c_uint = 3221226346;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_BLOCKED_CRITICAL: ::libc::c_uint =
    3221226347;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_BLOCKED: ::libc::c_uint = 3221226348;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_DATABASE_ERROR: ::libc::c_uint =
    3221226349;
pub const MD_NTSTATUS_WIN_STATUS_SYSTEM_HIVE_TOO_LARGE: ::libc::c_uint =
    3221226350;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMPORT_OF_NON_DLL: ::libc::c_uint =
    3221226351;
pub const MD_NTSTATUS_WIN_STATUS_NO_SECRETS: ::libc::c_uint = 3221226353;
pub const MD_NTSTATUS_WIN_STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY:
          ::libc::c_uint =
    3221226354;
pub const MD_NTSTATUS_WIN_STATUS_FAILED_STACK_SWITCH: ::libc::c_uint =
    3221226355;
pub const MD_NTSTATUS_WIN_STATUS_HEAP_CORRUPTION: ::libc::c_uint = 3221226356;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_WRONG_PIN: ::libc::c_uint =
    3221226368;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_CARD_BLOCKED: ::libc::c_uint =
    3221226369;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED:
          ::libc::c_uint =
    3221226370;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_NO_CARD: ::libc::c_uint =
    3221226371;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_NO_KEY_CONTAINER: ::libc::c_uint =
    3221226372;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_NO_CERTIFICATE: ::libc::c_uint =
    3221226373;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_NO_KEYSET: ::libc::c_uint =
    3221226374;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_IO_ERROR: ::libc::c_uint =
    3221226375;
pub const MD_NTSTATUS_WIN_STATUS_DOWNGRADE_DETECTED: ::libc::c_uint =
    3221226376;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_CERT_REVOKED: ::libc::c_uint =
    3221226377;
pub const MD_NTSTATUS_WIN_STATUS_ISSUING_CA_UNTRUSTED: ::libc::c_uint =
    3221226378;
pub const MD_NTSTATUS_WIN_STATUS_REVOCATION_OFFLINE_C: ::libc::c_uint =
    3221226379;
pub const MD_NTSTATUS_WIN_STATUS_PKINIT_CLIENT_FAILURE: ::libc::c_uint =
    3221226380;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_CERT_EXPIRED: ::libc::c_uint =
    3221226381;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_FAILED_PRIOR_UNLOAD: ::libc::c_uint =
    3221226382;
pub const MD_NTSTATUS_WIN_STATUS_SMARTCARD_SILENT_CONTEXT: ::libc::c_uint =
    3221226383;
pub const MD_NTSTATUS_WIN_STATUS_PER_USER_TRUST_QUOTA_EXCEEDED: ::libc::c_uint
          =
    3221226497;
pub const MD_NTSTATUS_WIN_STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED: ::libc::c_uint
          =
    3221226498;
pub const MD_NTSTATUS_WIN_STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED:
          ::libc::c_uint =
    3221226499;
pub const MD_NTSTATUS_WIN_STATUS_DS_NAME_NOT_UNIQUE: ::libc::c_uint =
    3221226500;
pub const MD_NTSTATUS_WIN_STATUS_DS_DUPLICATE_ID_FOUND: ::libc::c_uint =
    3221226501;
pub const MD_NTSTATUS_WIN_STATUS_DS_GROUP_CONVERSION_ERROR: ::libc::c_uint =
    3221226502;
pub const MD_NTSTATUS_WIN_STATUS_VOLSNAP_PREPARE_HIBERNATE: ::libc::c_uint =
    3221226503;
pub const MD_NTSTATUS_WIN_STATUS_USER2USER_REQUIRED: ::libc::c_uint =
    3221226504;
pub const MD_NTSTATUS_WIN_STATUS_STACK_BUFFER_OVERRUN: ::libc::c_uint =
    3221226505;
pub const MD_NTSTATUS_WIN_STATUS_NO_S4U_PROT_SUPPORT: ::libc::c_uint =
    3221226506;
pub const MD_NTSTATUS_WIN_STATUS_CROSSREALM_DELEGATION_FAILURE: ::libc::c_uint
          =
    3221226507;
pub const MD_NTSTATUS_WIN_STATUS_REVOCATION_OFFLINE_KDC: ::libc::c_uint =
    3221226508;
pub const MD_NTSTATUS_WIN_STATUS_ISSUING_CA_UNTRUSTED_KDC: ::libc::c_uint =
    3221226509;
pub const MD_NTSTATUS_WIN_STATUS_KDC_CERT_EXPIRED: ::libc::c_uint =
    3221226510;
pub const MD_NTSTATUS_WIN_STATUS_KDC_CERT_REVOKED: ::libc::c_uint =
    3221226511;
pub const MD_NTSTATUS_WIN_STATUS_PARAMETER_QUOTA_EXCEEDED: ::libc::c_uint =
    3221226512;
pub const MD_NTSTATUS_WIN_STATUS_HIBERNATION_FAILURE: ::libc::c_uint =
    3221226513;
pub const MD_NTSTATUS_WIN_STATUS_DELAY_LOAD_FAILED: ::libc::c_uint =
    3221226514;
pub const MD_NTSTATUS_WIN_STATUS_AUTHENTICATION_FIREWALL_FAILED:
          ::libc::c_uint =
    3221226515;
pub const MD_NTSTATUS_WIN_STATUS_VDM_DISALLOWED: ::libc::c_uint = 3221226516;
pub const MD_NTSTATUS_WIN_STATUS_HUNG_DISPLAY_DRIVER_THREAD: ::libc::c_uint =
    3221226517;
pub const MD_NTSTATUS_WIN_STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE:
          ::libc::c_uint =
    3221226518;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_CRUNTIME_PARAMETER: ::libc::c_uint =
    3221226519;
pub const MD_NTSTATUS_WIN_STATUS_NTLM_BLOCKED: ::libc::c_uint = 3221226520;
pub const MD_NTSTATUS_WIN_STATUS_DS_SRC_SID_EXISTS_IN_FOREST: ::libc::c_uint =
    3221226521;
pub const MD_NTSTATUS_WIN_STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST:
          ::libc::c_uint =
    3221226522;
pub const MD_NTSTATUS_WIN_STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST: ::libc::c_uint
          =
    3221226523;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_USER_PRINCIPAL_NAME: ::libc::c_uint =
    3221226524;
pub const MD_NTSTATUS_WIN_STATUS_FATAL_USER_CALLBACK_EXCEPTION: ::libc::c_uint
          =
    3221226525;
pub const MD_NTSTATUS_WIN_STATUS_ASSERTION_FAILURE: ::libc::c_uint =
    3221226528;
pub const MD_NTSTATUS_WIN_STATUS_VERIFIER_STOP: ::libc::c_uint = 3221226529;
pub const MD_NTSTATUS_WIN_STATUS_CALLBACK_POP_STACK: ::libc::c_uint =
    3221226531;
pub const MD_NTSTATUS_WIN_STATUS_INCOMPATIBLE_DRIVER_BLOCKED: ::libc::c_uint =
    3221226532;
pub const MD_NTSTATUS_WIN_STATUS_HIVE_UNLOADED: ::libc::c_uint = 3221226533;
pub const MD_NTSTATUS_WIN_STATUS_COMPRESSION_DISABLED: ::libc::c_uint =
    3221226534;
pub const MD_NTSTATUS_WIN_STATUS_FILE_SYSTEM_LIMITATION: ::libc::c_uint =
    3221226535;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IMAGE_HASH: ::libc::c_uint =
    3221226536;
pub const MD_NTSTATUS_WIN_STATUS_NOT_CAPABLE: ::libc::c_uint = 3221226537;
pub const MD_NTSTATUS_WIN_STATUS_REQUEST_OUT_OF_SEQUENCE: ::libc::c_uint =
    3221226538;
pub const MD_NTSTATUS_WIN_STATUS_IMPLEMENTATION_LIMIT: ::libc::c_uint =
    3221226539;
pub const MD_NTSTATUS_WIN_STATUS_ELEVATION_REQUIRED: ::libc::c_uint =
    3221226540;
pub const MD_NTSTATUS_WIN_STATUS_NO_SECURITY_CONTEXT: ::libc::c_uint =
    3221226541;
pub const MD_NTSTATUS_WIN_STATUS_PKU2U_CERT_FAILURE: ::libc::c_uint =
    3221226543;
pub const MD_NTSTATUS_WIN_STATUS_BEYOND_VDL: ::libc::c_uint = 3221226546;
pub const MD_NTSTATUS_WIN_STATUS_ENCOUNTERED_WRITE_IN_PROGRESS: ::libc::c_uint
          =
    3221226547;
pub const MD_NTSTATUS_WIN_STATUS_PTE_CHANGED: ::libc::c_uint = 3221226548;
pub const MD_NTSTATUS_WIN_STATUS_PURGE_FAILED: ::libc::c_uint = 3221226549;
pub const MD_NTSTATUS_WIN_STATUS_CRED_REQUIRES_CONFIRMATION: ::libc::c_uint =
    3221226560;
pub const MD_NTSTATUS_WIN_STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE:
          ::libc::c_uint =
    3221226561;
pub const MD_NTSTATUS_WIN_STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER:
          ::libc::c_uint =
    3221226562;
pub const MD_NTSTATUS_WIN_STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE:
          ::libc::c_uint =
    3221226563;
pub const MD_NTSTATUS_WIN_STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE:
          ::libc::c_uint =
    3221226564;
pub const MD_NTSTATUS_WIN_STATUS_CS_ENCRYPTION_FILE_NOT_CSE: ::libc::c_uint =
    3221226565;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_LABEL: ::libc::c_uint = 3221226566;
pub const MD_NTSTATUS_WIN_STATUS_DRIVER_PROCESS_TERMINATED: ::libc::c_uint =
    3221226576;
pub const MD_NTSTATUS_WIN_STATUS_AMBIGUOUS_SYSTEM_DEVICE: ::libc::c_uint =
    3221226577;
pub const MD_NTSTATUS_WIN_STATUS_SYSTEM_DEVICE_NOT_FOUND: ::libc::c_uint =
    3221226578;
pub const MD_NTSTATUS_WIN_STATUS_RESTART_BOOT_APPLICATION: ::libc::c_uint =
    3221226579;
pub const MD_NTSTATUS_WIN_STATUS_INSUFFICIENT_NVRAM_RESOURCES: ::libc::c_uint
          =
    3221226580;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_SESSION: ::libc::c_uint = 3221226581;
pub const MD_NTSTATUS_WIN_STATUS_THREAD_ALREADY_IN_SESSION: ::libc::c_uint =
    3221226582;
pub const MD_NTSTATUS_WIN_STATUS_THREAD_NOT_IN_SESSION: ::libc::c_uint =
    3221226583;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_WEIGHT: ::libc::c_uint = 3221226584;
pub const MD_NTSTATUS_WIN_STATUS_REQUEST_PAUSED: ::libc::c_uint = 3221226585;
pub const MD_NTSTATUS_WIN_STATUS_NO_RANGES_PROCESSED: ::libc::c_uint =
    3221226592;
pub const MD_NTSTATUS_WIN_STATUS_DISK_RESOURCES_EXHAUSTED: ::libc::c_uint =
    3221226593;
pub const MD_NTSTATUS_WIN_STATUS_NEEDS_REMEDIATION: ::libc::c_uint =
    3221226594;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_FEATURE_NOT_SUPPORTED: ::libc::c_uint
          =
    3221226595;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_UNREACHABLE: ::libc::c_uint =
    3221226596;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_TOKEN: ::libc::c_uint = 3221226597;
pub const MD_NTSTATUS_WIN_STATUS_SERVER_UNAVAILABLE: ::libc::c_uint =
    3221226598;
pub const MD_NTSTATUS_WIN_STATUS_FILE_NOT_AVAILABLE: ::libc::c_uint =
    3221226599;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_INSUFFICIENT_RESOURCES: ::libc::c_uint
          =
    3221226600;
pub const MD_NTSTATUS_WIN_STATUS_PACKAGE_UPDATING: ::libc::c_uint =
    3221226601;
pub const MD_NTSTATUS_WIN_STATUS_NOT_READ_FROM_COPY: ::libc::c_uint =
    3221226602;
pub const MD_NTSTATUS_WIN_STATUS_FT_WRITE_FAILURE: ::libc::c_uint =
    3221226603;
pub const MD_NTSTATUS_WIN_STATUS_FT_DI_SCAN_REQUIRED: ::libc::c_uint =
    3221226604;
pub const MD_NTSTATUS_WIN_STATUS_OBJECT_NOT_EXTERNALLY_BACKED: ::libc::c_uint
          =
    3221226605;
pub const MD_NTSTATUS_WIN_STATUS_EXTERNAL_BACKING_PROVIDER_UNKNOWN:
          ::libc::c_uint =
    3221226606;
pub const MD_NTSTATUS_WIN_STATUS_DATA_CHECKSUM_ERROR: ::libc::c_uint =
    3221226608;
pub const MD_NTSTATUS_WIN_STATUS_INTERMIXED_KERNEL_EA_OPERATION:
          ::libc::c_uint =
    3221226609;
pub const MD_NTSTATUS_WIN_STATUS_TRIM_READ_ZERO_NOT_SUPPORTED: ::libc::c_uint
          =
    3221226610;
pub const MD_NTSTATUS_WIN_STATUS_TOO_MANY_SEGMENT_DESCRIPTORS: ::libc::c_uint
          =
    3221226611;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_OFFSET_ALIGNMENT: ::libc::c_uint =
    3221226612;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_FIELD_IN_PARAMETER_LIST:
          ::libc::c_uint =
    3221226613;
pub const MD_NTSTATUS_WIN_STATUS_OPERATION_IN_PROGRESS: ::libc::c_uint =
    3221226614;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_INITIATOR_TARGET_PATH: ::libc::c_uint
          =
    3221226615;
pub const MD_NTSTATUS_WIN_STATUS_SCRUB_DATA_DISABLED: ::libc::c_uint =
    3221226616;
pub const MD_NTSTATUS_WIN_STATUS_NOT_REDUNDANT_STORAGE: ::libc::c_uint =
    3221226617;
pub const MD_NTSTATUS_WIN_STATUS_RESIDENT_FILE_NOT_SUPPORTED: ::libc::c_uint =
    3221226618;
pub const MD_NTSTATUS_WIN_STATUS_COMPRESSED_FILE_NOT_SUPPORTED: ::libc::c_uint
          =
    3221226619;
pub const MD_NTSTATUS_WIN_STATUS_DIRECTORY_NOT_SUPPORTED: ::libc::c_uint =
    3221226620;
pub const MD_NTSTATUS_WIN_STATUS_IO_OPERATION_TIMEOUT: ::libc::c_uint =
    3221226621;
pub const MD_NTSTATUS_WIN_STATUS_SYSTEM_NEEDS_REMEDIATION: ::libc::c_uint =
    3221226622;
pub const MD_NTSTATUS_WIN_STATUS_APPX_INTEGRITY_FAILURE_CLR_NGEN:
          ::libc::c_uint =
    3221226623;
pub const MD_NTSTATUS_WIN_STATUS_SHARE_UNAVAILABLE: ::libc::c_uint =
    3221226624;
pub const MD_NTSTATUS_WIN_STATUS_APISET_NOT_HOSTED: ::libc::c_uint =
    3221226625;
pub const MD_NTSTATUS_WIN_STATUS_APISET_NOT_PRESENT: ::libc::c_uint =
    3221226626;
pub const MD_NTSTATUS_WIN_STATUS_DEVICE_HARDWARE_ERROR: ::libc::c_uint =
    3221226627;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_TASK_NAME: ::libc::c_uint =
    3221226752;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_TASK_INDEX: ::libc::c_uint =
    3221226753;
pub const MD_NTSTATUS_WIN_STATUS_THREAD_ALREADY_IN_TASK: ::libc::c_uint =
    3221226754;
pub const MD_NTSTATUS_WIN_STATUS_CALLBACK_BYPASS: ::libc::c_uint = 3221226755;
pub const MD_NTSTATUS_WIN_STATUS_UNDEFINED_SCOPE: ::libc::c_uint = 3221226756;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_CAP: ::libc::c_uint = 3221226757;
pub const MD_NTSTATUS_WIN_STATUS_NOT_GUI_PROCESS: ::libc::c_uint = 3221226758;
pub const MD_NTSTATUS_WIN_STATUS_FAIL_FAST_EXCEPTION: ::libc::c_uint =
    3221227010;
pub const MD_NTSTATUS_WIN_STATUS_IMAGE_CERT_REVOKED: ::libc::c_uint =
    3221227011;
pub const MD_NTSTATUS_WIN_STATUS_DYNAMIC_CODE_BLOCKED: ::libc::c_uint =
    3221227012;
pub const MD_NTSTATUS_WIN_STATUS_PORT_CLOSED: ::libc::c_uint = 3221227264;
pub const MD_NTSTATUS_WIN_STATUS_MESSAGE_LOST: ::libc::c_uint = 3221227265;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_MESSAGE: ::libc::c_uint = 3221227266;
pub const MD_NTSTATUS_WIN_STATUS_REQUEST_CANCELED: ::libc::c_uint =
    3221227267;
pub const MD_NTSTATUS_WIN_STATUS_RECURSIVE_DISPATCH: ::libc::c_uint =
    3221227268;
pub const MD_NTSTATUS_WIN_STATUS_LPC_RECEIVE_BUFFER_EXPECTED: ::libc::c_uint =
    3221227269;
pub const MD_NTSTATUS_WIN_STATUS_LPC_INVALID_CONNECTION_USAGE: ::libc::c_uint
          =
    3221227270;
pub const MD_NTSTATUS_WIN_STATUS_LPC_REQUESTS_NOT_ALLOWED: ::libc::c_uint =
    3221227271;
pub const MD_NTSTATUS_WIN_STATUS_RESOURCE_IN_USE: ::libc::c_uint = 3221227272;
pub const MD_NTSTATUS_WIN_STATUS_HARDWARE_MEMORY_ERROR: ::libc::c_uint =
    3221227273;
pub const MD_NTSTATUS_WIN_STATUS_THREADPOOL_HANDLE_EXCEPTION: ::libc::c_uint =
    3221227274;
pub const MD_NTSTATUS_WIN_STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED:
          ::libc::c_uint =
    3221227275;
pub const MD_NTSTATUS_WIN_STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED:
          ::libc::c_uint =
    3221227276;
pub const MD_NTSTATUS_WIN_STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED:
          ::libc::c_uint =
    3221227277;
pub const MD_NTSTATUS_WIN_STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED:
          ::libc::c_uint =
    3221227278;
pub const MD_NTSTATUS_WIN_STATUS_THREADPOOL_RELEASED_DURING_OPERATION:
          ::libc::c_uint =
    3221227279;
pub const MD_NTSTATUS_WIN_STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING:
          ::libc::c_uint =
    3221227280;
pub const MD_NTSTATUS_WIN_STATUS_APC_RETURNED_WHILE_IMPERSONATING:
          ::libc::c_uint =
    3221227281;
pub const MD_NTSTATUS_WIN_STATUS_PROCESS_IS_PROTECTED: ::libc::c_uint =
    3221227282;
pub const MD_NTSTATUS_WIN_STATUS_MCA_EXCEPTION: ::libc::c_uint = 3221227283;
pub const MD_NTSTATUS_WIN_STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE:
          ::libc::c_uint =
    3221227284;
pub const MD_NTSTATUS_WIN_STATUS_SYMLINK_CLASS_DISABLED: ::libc::c_uint =
    3221227285;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_IDN_NORMALIZATION: ::libc::c_uint =
    3221227286;
pub const MD_NTSTATUS_WIN_STATUS_NO_UNICODE_TRANSLATION: ::libc::c_uint =
    3221227287;
pub const MD_NTSTATUS_WIN_STATUS_ALREADY_REGISTERED: ::libc::c_uint =
    3221227288;
pub const MD_NTSTATUS_WIN_STATUS_CONTEXT_MISMATCH: ::libc::c_uint =
    3221227289;
pub const MD_NTSTATUS_WIN_STATUS_PORT_ALREADY_HAS_COMPLETION_LIST:
          ::libc::c_uint =
    3221227290;
pub const MD_NTSTATUS_WIN_STATUS_CALLBACK_RETURNED_THREAD_PRIORITY:
          ::libc::c_uint =
    3221227291;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_THREAD: ::libc::c_uint = 3221227292;
pub const MD_NTSTATUS_WIN_STATUS_CALLBACK_RETURNED_TRANSACTION: ::libc::c_uint
          =
    3221227293;
pub const MD_NTSTATUS_WIN_STATUS_CALLBACK_RETURNED_LDR_LOCK: ::libc::c_uint =
    3221227294;
pub const MD_NTSTATUS_WIN_STATUS_CALLBACK_RETURNED_LANG: ::libc::c_uint =
    3221227295;
pub const MD_NTSTATUS_WIN_STATUS_CALLBACK_RETURNED_PRI_BACK: ::libc::c_uint =
    3221227296;
pub const MD_NTSTATUS_WIN_STATUS_CALLBACK_RETURNED_THREAD_AFFINITY:
          ::libc::c_uint =
    3221227297;
pub const MD_NTSTATUS_WIN_STATUS_DISK_REPAIR_DISABLED: ::libc::c_uint =
    3221227520;
pub const MD_NTSTATUS_WIN_STATUS_DS_DOMAIN_RENAME_IN_PROGRESS: ::libc::c_uint
          =
    3221227521;
pub const MD_NTSTATUS_WIN_STATUS_DISK_QUOTA_EXCEEDED: ::libc::c_uint =
    3221227522;
pub const MD_NTSTATUS_WIN_STATUS_CONTENT_BLOCKED: ::libc::c_uint = 3221227524;
pub const MD_NTSTATUS_WIN_STATUS_BAD_CLUSTERS: ::libc::c_uint = 3221227525;
pub const MD_NTSTATUS_WIN_STATUS_VOLUME_DIRTY: ::libc::c_uint = 3221227526;
pub const MD_NTSTATUS_WIN_STATUS_DISK_REPAIR_UNSUCCESSFUL: ::libc::c_uint =
    3221227528;
pub const MD_NTSTATUS_WIN_STATUS_CORRUPT_LOG_OVERFULL: ::libc::c_uint =
    3221227529;
pub const MD_NTSTATUS_WIN_STATUS_CORRUPT_LOG_CORRUPTED: ::libc::c_uint =
    3221227530;
pub const MD_NTSTATUS_WIN_STATUS_CORRUPT_LOG_UNAVAILABLE: ::libc::c_uint =
    3221227531;
pub const MD_NTSTATUS_WIN_STATUS_CORRUPT_LOG_DELETED_FULL: ::libc::c_uint =
    3221227532;
pub const MD_NTSTATUS_WIN_STATUS_CORRUPT_LOG_CLEARED: ::libc::c_uint =
    3221227533;
pub const MD_NTSTATUS_WIN_STATUS_ORPHAN_NAME_EXHAUSTED: ::libc::c_uint =
    3221227534;
pub const MD_NTSTATUS_WIN_STATUS_PROACTIVE_SCAN_IN_PROGRESS: ::libc::c_uint =
    3221227535;
pub const MD_NTSTATUS_WIN_STATUS_ENCRYPTED_IO_NOT_POSSIBLE: ::libc::c_uint =
    3221227536;
pub const MD_NTSTATUS_WIN_STATUS_CORRUPT_LOG_UPLEVEL_RECORDS: ::libc::c_uint =
    3221227537;
pub const MD_NTSTATUS_WIN_STATUS_FILE_CHECKED_OUT: ::libc::c_uint =
    3221227777;
pub const MD_NTSTATUS_WIN_STATUS_CHECKOUT_REQUIRED: ::libc::c_uint =
    3221227778;
pub const MD_NTSTATUS_WIN_STATUS_BAD_FILE_TYPE: ::libc::c_uint = 3221227779;
pub const MD_NTSTATUS_WIN_STATUS_FILE_TOO_LARGE: ::libc::c_uint = 3221227780;
pub const MD_NTSTATUS_WIN_STATUS_FORMS_AUTH_REQUIRED: ::libc::c_uint =
    3221227781;
pub const MD_NTSTATUS_WIN_STATUS_VIRUS_INFECTED: ::libc::c_uint = 3221227782;
pub const MD_NTSTATUS_WIN_STATUS_VIRUS_DELETED: ::libc::c_uint = 3221227783;
pub const MD_NTSTATUS_WIN_STATUS_BAD_MCFG_TABLE: ::libc::c_uint = 3221227784;
pub const MD_NTSTATUS_WIN_STATUS_CANNOT_BREAK_OPLOCK: ::libc::c_uint =
    3221227785;
pub const MD_NTSTATUS_WIN_STATUS_BAD_KEY: ::libc::c_uint = 3221227786;
pub const MD_NTSTATUS_WIN_STATUS_BAD_DATA: ::libc::c_uint = 3221227787;
pub const MD_NTSTATUS_WIN_STATUS_NO_KEY: ::libc::c_uint = 3221227788;
pub const MD_NTSTATUS_WIN_STATUS_FILE_HANDLE_REVOKED: ::libc::c_uint =
    3221227792;
pub const MD_NTSTATUS_WIN_STATUS_WOW_ASSERTION: ::libc::c_uint = 3221264536;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_SIGNATURE: ::libc::c_uint =
    3221266432;
pub const MD_NTSTATUS_WIN_STATUS_HMAC_NOT_SUPPORTED: ::libc::c_uint =
    3221266433;
pub const MD_NTSTATUS_WIN_STATUS_AUTH_TAG_MISMATCH: ::libc::c_uint =
    3221266434;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_STATE_TRANSITION: ::libc::c_uint =
    3221266435;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_KERNEL_INFO_VERSION: ::libc::c_uint =
    3221266436;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PEP_INFO_VERSION: ::libc::c_uint =
    3221266437;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_QUEUE_OVERFLOW: ::libc::c_uint =
    3221266448;
pub const MD_NTSTATUS_WIN_STATUS_ND_QUEUE_OVERFLOW: ::libc::c_uint =
    3221266449;
pub const MD_NTSTATUS_WIN_STATUS_HOPLIMIT_EXCEEDED: ::libc::c_uint =
    3221266450;
pub const MD_NTSTATUS_WIN_STATUS_PROTOCOL_NOT_SUPPORTED: ::libc::c_uint =
    3221266451;
pub const MD_NTSTATUS_WIN_STATUS_FASTPATH_REJECTED: ::libc::c_uint =
    3221266452;
pub const MD_NTSTATUS_WIN_STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED:
          ::libc::c_uint =
    3221266560;
pub const MD_NTSTATUS_WIN_STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR:
          ::libc::c_uint =
    3221266561;
pub const MD_NTSTATUS_WIN_STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR:
          ::libc::c_uint =
    3221266562;
pub const MD_NTSTATUS_WIN_STATUS_XML_PARSE_ERROR: ::libc::c_uint = 3221266563;
pub const MD_NTSTATUS_WIN_STATUS_XMLDSIG_ERROR: ::libc::c_uint = 3221266564;
pub const MD_NTSTATUS_WIN_STATUS_WRONG_COMPARTMENT: ::libc::c_uint =
    3221266565;
pub const MD_NTSTATUS_WIN_STATUS_AUTHIP_FAILURE: ::libc::c_uint = 3221266566;
pub const MD_NTSTATUS_WIN_STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS:
          ::libc::c_uint =
    3221266567;
pub const MD_NTSTATUS_WIN_STATUS_DS_OID_NOT_FOUND: ::libc::c_uint =
    3221266568;
pub const MD_NTSTATUS_WIN_STATUS_INCORRECT_ACCOUNT_TYPE: ::libc::c_uint =
    3221266569;
pub const MD_NTSTATUS_WIN_STATUS_HASH_NOT_SUPPORTED: ::libc::c_uint =
    3221266688;
pub const MD_NTSTATUS_WIN_STATUS_HASH_NOT_PRESENT: ::libc::c_uint =
    3221266689;
pub const MD_NTSTATUS_WIN_STATUS_SECONDARY_IC_PROVIDER_NOT_REGISTERED:
          ::libc::c_uint =
    3221266721;
pub const MD_NTSTATUS_WIN_STATUS_GPIO_CLIENT_INFORMATION_INVALID:
          ::libc::c_uint =
    3221266722;
pub const MD_NTSTATUS_WIN_STATUS_GPIO_VERSION_NOT_SUPPORTED: ::libc::c_uint =
    3221266723;
pub const MD_NTSTATUS_WIN_STATUS_GPIO_INVALID_REGISTRATION_PACKET:
          ::libc::c_uint =
    3221266724;
pub const MD_NTSTATUS_WIN_STATUS_GPIO_OPERATION_DENIED: ::libc::c_uint =
    3221266725;
pub const MD_NTSTATUS_WIN_STATUS_GPIO_INCOMPATIBLE_CONNECT_MODE:
          ::libc::c_uint =
    3221266726;
pub const MD_NTSTATUS_WIN_STATUS_CANNOT_SWITCH_RUNLEVEL: ::libc::c_uint =
    3221266753;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_RUNLEVEL_SETTING: ::libc::c_uint =
    3221266754;
pub const MD_NTSTATUS_WIN_STATUS_RUNLEVEL_SWITCH_TIMEOUT: ::libc::c_uint =
    3221266755;
pub const MD_NTSTATUS_WIN_STATUS_RUNLEVEL_SWITCH_AGENT_TIMEOUT: ::libc::c_uint
          =
    3221266757;
pub const MD_NTSTATUS_WIN_STATUS_RUNLEVEL_SWITCH_IN_PROGRESS: ::libc::c_uint =
    3221266758;
pub const MD_NTSTATUS_WIN_STATUS_NOT_APPCONTAINER: ::libc::c_uint =
    3221266944;
pub const MD_NTSTATUS_WIN_STATUS_NOT_SUPPORTED_IN_APPCONTAINER: ::libc::c_uint
          =
    3221266945;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_PACKAGE_SID_LENGTH: ::libc::c_uint =
    3221266946;
pub const MD_NTSTATUS_WIN_STATUS_APP_DATA_NOT_FOUND: ::libc::c_uint =
    3221267073;
pub const MD_NTSTATUS_WIN_STATUS_APP_DATA_EXPIRED: ::libc::c_uint =
    3221267074;
pub const MD_NTSTATUS_WIN_STATUS_APP_DATA_CORRUPT: ::libc::c_uint =
    3221267075;
pub const MD_NTSTATUS_WIN_STATUS_APP_DATA_LIMIT_EXCEEDED: ::libc::c_uint =
    3221267076;
pub const MD_NTSTATUS_WIN_STATUS_APP_DATA_REBOOT_REQUIRED: ::libc::c_uint =
    3221267077;
pub const MD_NTSTATUS_WIN_STATUS_OFFLOAD_READ_FLT_NOT_SUPPORTED:
          ::libc::c_uint =
    3221267105;
pub const MD_NTSTATUS_WIN_STATUS_OFFLOAD_WRITE_FLT_NOT_SUPPORTED:
          ::libc::c_uint =
    3221267106;
pub const MD_NTSTATUS_WIN_STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED:
          ::libc::c_uint =
    3221267107;
pub const MD_NTSTATUS_WIN_STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED:
          ::libc::c_uint =
    3221267108;
pub const MD_NTSTATUS_WIN_DBG_NO_STATE_CHANGE: ::libc::c_uint = 3221291009;
pub const MD_NTSTATUS_WIN_DBG_APP_NOT_IDLE: ::libc::c_uint = 3221291010;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_STRING_BINDING: ::libc::c_uint =
    3221356545;
pub const MD_NTSTATUS_WIN_RPC_NT_WRONG_KIND_OF_BINDING: ::libc::c_uint =
    3221356546;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_BINDING: ::libc::c_uint = 3221356547;
pub const MD_NTSTATUS_WIN_RPC_NT_PROTSEQ_NOT_SUPPORTED: ::libc::c_uint =
    3221356548;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_RPC_PROTSEQ: ::libc::c_uint =
    3221356549;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_STRING_UUID: ::libc::c_uint =
    3221356550;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_ENDPOINT_FORMAT: ::libc::c_uint =
    3221356551;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_NET_ADDR: ::libc::c_uint =
    3221356552;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_ENDPOINT_FOUND: ::libc::c_uint =
    3221356553;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_TIMEOUT: ::libc::c_uint = 3221356554;
pub const MD_NTSTATUS_WIN_RPC_NT_OBJECT_NOT_FOUND: ::libc::c_uint =
    3221356555;
pub const MD_NTSTATUS_WIN_RPC_NT_ALREADY_REGISTERED: ::libc::c_uint =
    3221356556;
pub const MD_NTSTATUS_WIN_RPC_NT_TYPE_ALREADY_REGISTERED: ::libc::c_uint =
    3221356557;
pub const MD_NTSTATUS_WIN_RPC_NT_ALREADY_LISTENING: ::libc::c_uint =
    3221356558;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_PROTSEQS_REGISTERED: ::libc::c_uint =
    3221356559;
pub const MD_NTSTATUS_WIN_RPC_NT_NOT_LISTENING: ::libc::c_uint = 3221356560;
pub const MD_NTSTATUS_WIN_RPC_NT_UNKNOWN_MGR_TYPE: ::libc::c_uint =
    3221356561;
pub const MD_NTSTATUS_WIN_RPC_NT_UNKNOWN_IF: ::libc::c_uint = 3221356562;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_BINDINGS: ::libc::c_uint = 3221356563;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_PROTSEQS: ::libc::c_uint = 3221356564;
pub const MD_NTSTATUS_WIN_RPC_NT_CANT_CREATE_ENDPOINT: ::libc::c_uint =
    3221356565;
pub const MD_NTSTATUS_WIN_RPC_NT_OUT_OF_RESOURCES: ::libc::c_uint =
    3221356566;
pub const MD_NTSTATUS_WIN_RPC_NT_SERVER_UNAVAILABLE: ::libc::c_uint =
    3221356567;
pub const MD_NTSTATUS_WIN_RPC_NT_SERVER_TOO_BUSY: ::libc::c_uint = 3221356568;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_NETWORK_OPTIONS: ::libc::c_uint =
    3221356569;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_CALL_ACTIVE: ::libc::c_uint = 3221356570;
pub const MD_NTSTATUS_WIN_RPC_NT_CALL_FAILED: ::libc::c_uint = 3221356571;
pub const MD_NTSTATUS_WIN_RPC_NT_CALL_FAILED_DNE: ::libc::c_uint = 3221356572;
pub const MD_NTSTATUS_WIN_RPC_NT_PROTOCOL_ERROR: ::libc::c_uint = 3221356573;
pub const MD_NTSTATUS_WIN_RPC_NT_UNSUPPORTED_TRANS_SYN: ::libc::c_uint =
    3221356575;
pub const MD_NTSTATUS_WIN_RPC_NT_UNSUPPORTED_TYPE: ::libc::c_uint =
    3221356577;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_TAG: ::libc::c_uint = 3221356578;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_BOUND: ::libc::c_uint = 3221356579;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_ENTRY_NAME: ::libc::c_uint = 3221356580;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_NAME_SYNTAX: ::libc::c_uint =
    3221356581;
pub const MD_NTSTATUS_WIN_RPC_NT_UNSUPPORTED_NAME_SYNTAX: ::libc::c_uint =
    3221356582;
pub const MD_NTSTATUS_WIN_RPC_NT_UUID_NO_ADDRESS: ::libc::c_uint = 3221356584;
pub const MD_NTSTATUS_WIN_RPC_NT_DUPLICATE_ENDPOINT: ::libc::c_uint =
    3221356585;
pub const MD_NTSTATUS_WIN_RPC_NT_UNKNOWN_AUTHN_TYPE: ::libc::c_uint =
    3221356586;
pub const MD_NTSTATUS_WIN_RPC_NT_MAX_CALLS_TOO_SMALL: ::libc::c_uint =
    3221356587;
pub const MD_NTSTATUS_WIN_RPC_NT_STRING_TOO_LONG: ::libc::c_uint = 3221356588;
pub const MD_NTSTATUS_WIN_RPC_NT_PROTSEQ_NOT_FOUND: ::libc::c_uint =
    3221356589;
pub const MD_NTSTATUS_WIN_RPC_NT_PROCNUM_OUT_OF_RANGE: ::libc::c_uint =
    3221356590;
pub const MD_NTSTATUS_WIN_RPC_NT_BINDING_HAS_NO_AUTH: ::libc::c_uint =
    3221356591;
pub const MD_NTSTATUS_WIN_RPC_NT_UNKNOWN_AUTHN_SERVICE: ::libc::c_uint =
    3221356592;
pub const MD_NTSTATUS_WIN_RPC_NT_UNKNOWN_AUTHN_LEVEL: ::libc::c_uint =
    3221356593;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_AUTH_IDENTITY: ::libc::c_uint =
    3221356594;
pub const MD_NTSTATUS_WIN_RPC_NT_UNKNOWN_AUTHZ_SERVICE: ::libc::c_uint =
    3221356595;
pub const MD_NTSTATUS_WIN_EPT_NT_INVALID_ENTRY: ::libc::c_uint = 3221356596;
pub const MD_NTSTATUS_WIN_EPT_NT_CANT_PERFORM_OP: ::libc::c_uint = 3221356597;
pub const MD_NTSTATUS_WIN_EPT_NT_NOT_REGISTERED: ::libc::c_uint = 3221356598;
pub const MD_NTSTATUS_WIN_RPC_NT_NOTHING_TO_EXPORT: ::libc::c_uint =
    3221356599;
pub const MD_NTSTATUS_WIN_RPC_NT_INCOMPLETE_NAME: ::libc::c_uint = 3221356600;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_VERS_OPTION: ::libc::c_uint =
    3221356601;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_MORE_MEMBERS: ::libc::c_uint = 3221356602;
pub const MD_NTSTATUS_WIN_RPC_NT_NOT_ALL_OBJS_UNEXPORTED: ::libc::c_uint =
    3221356603;
pub const MD_NTSTATUS_WIN_RPC_NT_INTERFACE_NOT_FOUND: ::libc::c_uint =
    3221356604;
pub const MD_NTSTATUS_WIN_RPC_NT_ENTRY_ALREADY_EXISTS: ::libc::c_uint =
    3221356605;
pub const MD_NTSTATUS_WIN_RPC_NT_ENTRY_NOT_FOUND: ::libc::c_uint = 3221356606;
pub const MD_NTSTATUS_WIN_RPC_NT_NAME_SERVICE_UNAVAILABLE: ::libc::c_uint =
    3221356607;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_NAF_ID: ::libc::c_uint = 3221356608;
pub const MD_NTSTATUS_WIN_RPC_NT_CANNOT_SUPPORT: ::libc::c_uint = 3221356609;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_CONTEXT_AVAILABLE: ::libc::c_uint =
    3221356610;
pub const MD_NTSTATUS_WIN_RPC_NT_INTERNAL_ERROR: ::libc::c_uint = 3221356611;
pub const MD_NTSTATUS_WIN_RPC_NT_ZERO_DIVIDE: ::libc::c_uint = 3221356612;
pub const MD_NTSTATUS_WIN_RPC_NT_ADDRESS_ERROR: ::libc::c_uint = 3221356613;
pub const MD_NTSTATUS_WIN_RPC_NT_FP_DIV_ZERO: ::libc::c_uint = 3221356614;
pub const MD_NTSTATUS_WIN_RPC_NT_FP_UNDERFLOW: ::libc::c_uint = 3221356615;
pub const MD_NTSTATUS_WIN_RPC_NT_FP_OVERFLOW: ::libc::c_uint = 3221356616;
pub const MD_NTSTATUS_WIN_RPC_NT_CALL_IN_PROGRESS: ::libc::c_uint =
    3221356617;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_MORE_BINDINGS: ::libc::c_uint =
    3221356618;
pub const MD_NTSTATUS_WIN_RPC_NT_GROUP_MEMBER_NOT_FOUND: ::libc::c_uint =
    3221356619;
pub const MD_NTSTATUS_WIN_EPT_NT_CANT_CREATE: ::libc::c_uint = 3221356620;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_OBJECT: ::libc::c_uint = 3221356621;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_INTERFACES: ::libc::c_uint = 3221356623;
pub const MD_NTSTATUS_WIN_RPC_NT_CALL_CANCELLED: ::libc::c_uint = 3221356624;
pub const MD_NTSTATUS_WIN_RPC_NT_BINDING_INCOMPLETE: ::libc::c_uint =
    3221356625;
pub const MD_NTSTATUS_WIN_RPC_NT_COMM_FAILURE: ::libc::c_uint = 3221356626;
pub const MD_NTSTATUS_WIN_RPC_NT_UNSUPPORTED_AUTHN_LEVEL: ::libc::c_uint =
    3221356627;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_PRINC_NAME: ::libc::c_uint = 3221356628;
pub const MD_NTSTATUS_WIN_RPC_NT_NOT_RPC_ERROR: ::libc::c_uint = 3221356629;
pub const MD_NTSTATUS_WIN_RPC_NT_SEC_PKG_ERROR: ::libc::c_uint = 3221356631;
pub const MD_NTSTATUS_WIN_RPC_NT_NOT_CANCELLED: ::libc::c_uint = 3221356632;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_ASYNC_HANDLE: ::libc::c_uint =
    3221356642;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_ASYNC_CALL: ::libc::c_uint =
    3221356643;
pub const MD_NTSTATUS_WIN_RPC_NT_PROXY_ACCESS_DENIED: ::libc::c_uint =
    3221356644;
pub const MD_NTSTATUS_WIN_RPC_NT_COOKIE_AUTH_FAILED: ::libc::c_uint =
    3221356645;
pub const MD_NTSTATUS_WIN_RPC_NT_NO_MORE_ENTRIES: ::libc::c_uint = 3221422081;
pub const MD_NTSTATUS_WIN_RPC_NT_SS_CHAR_TRANS_OPEN_FAIL: ::libc::c_uint =
    3221422082;
pub const MD_NTSTATUS_WIN_RPC_NT_SS_CHAR_TRANS_SHORT_FILE: ::libc::c_uint =
    3221422083;
pub const MD_NTSTATUS_WIN_RPC_NT_SS_IN_NULL_CONTEXT: ::libc::c_uint =
    3221422084;
pub const MD_NTSTATUS_WIN_RPC_NT_SS_CONTEXT_MISMATCH: ::libc::c_uint =
    3221422085;
pub const MD_NTSTATUS_WIN_RPC_NT_SS_CONTEXT_DAMAGED: ::libc::c_uint =
    3221422086;
pub const MD_NTSTATUS_WIN_RPC_NT_SS_HANDLES_MISMATCH: ::libc::c_uint =
    3221422087;
pub const MD_NTSTATUS_WIN_RPC_NT_SS_CANNOT_GET_CALL_HANDLE: ::libc::c_uint =
    3221422088;
pub const MD_NTSTATUS_WIN_RPC_NT_NULL_REF_POINTER: ::libc::c_uint =
    3221422089;
pub const MD_NTSTATUS_WIN_RPC_NT_ENUM_VALUE_OUT_OF_RANGE: ::libc::c_uint =
    3221422090;
pub const MD_NTSTATUS_WIN_RPC_NT_BYTE_COUNT_TOO_SMALL: ::libc::c_uint =
    3221422091;
pub const MD_NTSTATUS_WIN_RPC_NT_BAD_STUB_DATA: ::libc::c_uint = 3221422092;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_ES_ACTION: ::libc::c_uint =
    3221422169;
pub const MD_NTSTATUS_WIN_RPC_NT_WRONG_ES_VERSION: ::libc::c_uint =
    3221422170;
pub const MD_NTSTATUS_WIN_RPC_NT_WRONG_STUB_VERSION: ::libc::c_uint =
    3221422171;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_PIPE_OBJECT: ::libc::c_uint =
    3221422172;
pub const MD_NTSTATUS_WIN_RPC_NT_INVALID_PIPE_OPERATION: ::libc::c_uint =
    3221422173;
pub const MD_NTSTATUS_WIN_RPC_NT_WRONG_PIPE_VERSION: ::libc::c_uint =
    3221422174;
pub const MD_NTSTATUS_WIN_RPC_NT_PIPE_CLOSED: ::libc::c_uint = 3221422175;
pub const MD_NTSTATUS_WIN_RPC_NT_PIPE_DISCIPLINE_ERROR: ::libc::c_uint =
    3221422176;
pub const MD_NTSTATUS_WIN_RPC_NT_PIPE_EMPTY: ::libc::c_uint = 3221422177;
pub const MD_NTSTATUS_WIN_STATUS_PNP_BAD_MPS_TABLE: ::libc::c_uint =
    3221487669;
pub const MD_NTSTATUS_WIN_STATUS_PNP_TRANSLATION_FAILED: ::libc::c_uint =
    3221487670;
pub const MD_NTSTATUS_WIN_STATUS_PNP_IRQ_TRANSLATION_FAILED: ::libc::c_uint =
    3221487671;
pub const MD_NTSTATUS_WIN_STATUS_PNP_INVALID_ID: ::libc::c_uint = 3221487672;
pub const MD_NTSTATUS_WIN_STATUS_IO_REISSUE_AS_CACHED: ::libc::c_uint =
    3221487673;
pub const MD_NTSTATUS_WIN_STATUS_CTX_WINSTATION_NAME_INVALID: ::libc::c_uint =
    3221880833;
pub const MD_NTSTATUS_WIN_STATUS_CTX_INVALID_PD: ::libc::c_uint = 3221880834;
pub const MD_NTSTATUS_WIN_STATUS_CTX_PD_NOT_FOUND: ::libc::c_uint =
    3221880835;
pub const MD_NTSTATUS_WIN_STATUS_CTX_CLOSE_PENDING: ::libc::c_uint =
    3221880838;
pub const MD_NTSTATUS_WIN_STATUS_CTX_NO_OUTBUF: ::libc::c_uint = 3221880839;
pub const MD_NTSTATUS_WIN_STATUS_CTX_MODEM_INF_NOT_FOUND: ::libc::c_uint =
    3221880840;
pub const MD_NTSTATUS_WIN_STATUS_CTX_INVALID_MODEMNAME: ::libc::c_uint =
    3221880841;
pub const MD_NTSTATUS_WIN_STATUS_CTX_RESPONSE_ERROR: ::libc::c_uint =
    3221880842;
pub const MD_NTSTATUS_WIN_STATUS_CTX_MODEM_RESPONSE_TIMEOUT: ::libc::c_uint =
    3221880843;
pub const MD_NTSTATUS_WIN_STATUS_CTX_MODEM_RESPONSE_NO_CARRIER: ::libc::c_uint
          =
    3221880844;
pub const MD_NTSTATUS_WIN_STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE:
          ::libc::c_uint =
    3221880845;
pub const MD_NTSTATUS_WIN_STATUS_CTX_MODEM_RESPONSE_BUSY: ::libc::c_uint =
    3221880846;
pub const MD_NTSTATUS_WIN_STATUS_CTX_MODEM_RESPONSE_VOICE: ::libc::c_uint =
    3221880847;
pub const MD_NTSTATUS_WIN_STATUS_CTX_TD_ERROR: ::libc::c_uint = 3221880848;
pub const MD_NTSTATUS_WIN_STATUS_CTX_LICENSE_CLIENT_INVALID: ::libc::c_uint =
    3221880850;
pub const MD_NTSTATUS_WIN_STATUS_CTX_LICENSE_NOT_AVAILABLE: ::libc::c_uint =
    3221880851;
pub const MD_NTSTATUS_WIN_STATUS_CTX_LICENSE_EXPIRED: ::libc::c_uint =
    3221880852;
pub const MD_NTSTATUS_WIN_STATUS_CTX_WINSTATION_NOT_FOUND: ::libc::c_uint =
    3221880853;
pub const MD_NTSTATUS_WIN_STATUS_CTX_WINSTATION_NAME_COLLISION: ::libc::c_uint
          =
    3221880854;
pub const MD_NTSTATUS_WIN_STATUS_CTX_WINSTATION_BUSY: ::libc::c_uint =
    3221880855;
pub const MD_NTSTATUS_WIN_STATUS_CTX_BAD_VIDEO_MODE: ::libc::c_uint =
    3221880856;
pub const MD_NTSTATUS_WIN_STATUS_CTX_GRAPHICS_INVALID: ::libc::c_uint =
    3221880866;
pub const MD_NTSTATUS_WIN_STATUS_CTX_NOT_CONSOLE: ::libc::c_uint = 3221880868;
pub const MD_NTSTATUS_WIN_STATUS_CTX_CLIENT_QUERY_TIMEOUT: ::libc::c_uint =
    3221880870;
pub const MD_NTSTATUS_WIN_STATUS_CTX_CONSOLE_DISCONNECT: ::libc::c_uint =
    3221880871;
pub const MD_NTSTATUS_WIN_STATUS_CTX_CONSOLE_CONNECT: ::libc::c_uint =
    3221880872;
pub const MD_NTSTATUS_WIN_STATUS_CTX_SHADOW_DENIED: ::libc::c_uint =
    3221880874;
pub const MD_NTSTATUS_WIN_STATUS_CTX_WINSTATION_ACCESS_DENIED: ::libc::c_uint
          =
    3221880875;
pub const MD_NTSTATUS_WIN_STATUS_CTX_INVALID_WD: ::libc::c_uint = 3221880878;
pub const MD_NTSTATUS_WIN_STATUS_CTX_WD_NOT_FOUND: ::libc::c_uint =
    3221880879;
pub const MD_NTSTATUS_WIN_STATUS_CTX_SHADOW_INVALID: ::libc::c_uint =
    3221880880;
pub const MD_NTSTATUS_WIN_STATUS_CTX_SHADOW_DISABLED: ::libc::c_uint =
    3221880881;
pub const MD_NTSTATUS_WIN_STATUS_RDP_PROTOCOL_ERROR: ::libc::c_uint =
    3221880882;
pub const MD_NTSTATUS_WIN_STATUS_CTX_CLIENT_LICENSE_NOT_SET: ::libc::c_uint =
    3221880883;
pub const MD_NTSTATUS_WIN_STATUS_CTX_CLIENT_LICENSE_IN_USE: ::libc::c_uint =
    3221880884;
pub const MD_NTSTATUS_WIN_STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE:
          ::libc::c_uint =
    3221880885;
pub const MD_NTSTATUS_WIN_STATUS_CTX_SHADOW_NOT_RUNNING: ::libc::c_uint =
    3221880886;
pub const MD_NTSTATUS_WIN_STATUS_CTX_LOGON_DISABLED: ::libc::c_uint =
    3221880887;
pub const MD_NTSTATUS_WIN_STATUS_CTX_SECURITY_LAYER_ERROR: ::libc::c_uint =
    3221880888;
pub const MD_NTSTATUS_WIN_STATUS_TS_INCOMPATIBLE_SESSIONS: ::libc::c_uint =
    3221880889;
pub const MD_NTSTATUS_WIN_STATUS_TS_VIDEO_SUBSYSTEM_ERROR: ::libc::c_uint =
    3221880890;
pub const MD_NTSTATUS_WIN_STATUS_MUI_FILE_NOT_FOUND: ::libc::c_uint =
    3221946369;
pub const MD_NTSTATUS_WIN_STATUS_MUI_INVALID_FILE: ::libc::c_uint =
    3221946370;
pub const MD_NTSTATUS_WIN_STATUS_MUI_INVALID_RC_CONFIG: ::libc::c_uint =
    3221946371;
pub const MD_NTSTATUS_WIN_STATUS_MUI_INVALID_LOCALE_NAME: ::libc::c_uint =
    3221946372;
pub const MD_NTSTATUS_WIN_STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME:
          ::libc::c_uint =
    3221946373;
pub const MD_NTSTATUS_WIN_STATUS_MUI_FILE_NOT_LOADED: ::libc::c_uint =
    3221946374;
pub const MD_NTSTATUS_WIN_STATUS_RESOURCE_ENUM_USER_STOP: ::libc::c_uint =
    3221946375;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_INVALID_NODE: ::libc::c_uint =
    3222470657;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NODE_EXISTS: ::libc::c_uint =
    3222470658;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_JOIN_IN_PROGRESS: ::libc::c_uint =
    3222470659;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NODE_NOT_FOUND: ::libc::c_uint =
    3222470660;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND: ::libc::c_uint
          =
    3222470661;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NETWORK_EXISTS: ::libc::c_uint =
    3222470662;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NETWORK_NOT_FOUND: ::libc::c_uint =
    3222470663;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NETINTERFACE_EXISTS: ::libc::c_uint =
    3222470664;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NETINTERFACE_NOT_FOUND:
          ::libc::c_uint =
    3222470665;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_INVALID_REQUEST: ::libc::c_uint =
    3222470666;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_INVALID_NETWORK_PROVIDER:
          ::libc::c_uint =
    3222470667;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NODE_DOWN: ::libc::c_uint =
    3222470668;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NODE_UNREACHABLE: ::libc::c_uint =
    3222470669;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NODE_NOT_MEMBER: ::libc::c_uint =
    3222470670;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS: ::libc::c_uint
          =
    3222470671;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_INVALID_NETWORK: ::libc::c_uint =
    3222470672;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NO_NET_ADAPTERS: ::libc::c_uint =
    3222470673;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NODE_UP: ::libc::c_uint = 3222470674;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NODE_PAUSED: ::libc::c_uint =
    3222470675;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NODE_NOT_PAUSED: ::libc::c_uint =
    3222470676;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NO_SECURITY_CONTEXT: ::libc::c_uint =
    3222470677;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NETWORK_NOT_INTERNAL: ::libc::c_uint
          =
    3222470678;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_POISONED: ::libc::c_uint =
    3222470679;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_NON_CSV_PATH: ::libc::c_uint =
    3222470680;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_CSV_VOLUME_NOT_LOCAL: ::libc::c_uint
          =
    3222470681;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_CSV_READ_OPLOCK_BREAK_IN_PROGRESS:
          ::libc::c_uint =
    3222470688;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_CSV_AUTO_PAUSE_ERROR: ::libc::c_uint
          =
    3222470689;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_CSV_REDIRECTED: ::libc::c_uint =
    3222470690;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_CSV_NOT_REDIRECTED: ::libc::c_uint =
    3222470691;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_CSV_VOLUME_DRAINING: ::libc::c_uint =
    3222470692;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_CSV_SNAPSHOT_CREATION_IN_PROGRESS:
          ::libc::c_uint =
    3222470693;
pub const MD_NTSTATUS_WIN_STATUS_CLUSTER_CSV_VOLUME_DRAINING_SUCCEEDED_DOWNLEVEL:
          ::libc::c_uint =
    3222470694;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_OPCODE: ::libc::c_uint =
    3222536193;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_STACK_OVERFLOW: ::libc::c_uint =
    3222536194;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_ASSERT_FAILED: ::libc::c_uint =
    3222536195;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_INDEX: ::libc::c_uint =
    3222536196;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_ARGUMENT: ::libc::c_uint =
    3222536197;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_FATAL: ::libc::c_uint = 3222536198;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_SUPERNAME: ::libc::c_uint =
    3222536199;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_ARGTYPE: ::libc::c_uint =
    3222536200;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_OBJTYPE: ::libc::c_uint =
    3222536201;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_TARGETTYPE: ::libc::c_uint =
    3222536202;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INCORRECT_ARGUMENT_COUNT: ::libc::c_uint
          =
    3222536203;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_ADDRESS_NOT_MAPPED: ::libc::c_uint =
    3222536204;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_EVENTTYPE: ::libc::c_uint =
    3222536205;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_HANDLER_COLLISION: ::libc::c_uint =
    3222536206;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_DATA: ::libc::c_uint =
    3222536207;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_REGION: ::libc::c_uint =
    3222536208;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_ACCESS_SIZE: ::libc::c_uint =
    3222536209;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_ACQUIRE_GLOBAL_LOCK: ::libc::c_uint =
    3222536210;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_ALREADY_INITIALIZED: ::libc::c_uint =
    3222536211;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_NOT_INITIALIZED: ::libc::c_uint =
    3222536212;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_MUTEX_LEVEL: ::libc::c_uint =
    3222536213;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_MUTEX_NOT_OWNED: ::libc::c_uint =
    3222536214;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_MUTEX_NOT_OWNER: ::libc::c_uint =
    3222536215;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_RS_ACCESS: ::libc::c_uint = 3222536216;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_INVALID_TABLE: ::libc::c_uint =
    3222536217;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_REG_HANDLER_FAILED: ::libc::c_uint =
    3222536224;
pub const MD_NTSTATUS_WIN_STATUS_ACPI_POWER_REQUEST_FAILED: ::libc::c_uint =
    3222536225;
pub const MD_NTSTATUS_WIN_STATUS_SXS_SECTION_NOT_FOUND: ::libc::c_uint =
    3222601729;
pub const MD_NTSTATUS_WIN_STATUS_SXS_CANT_GEN_ACTCTX: ::libc::c_uint =
    3222601730;
pub const MD_NTSTATUS_WIN_STATUS_SXS_INVALID_ACTCTXDATA_FORMAT: ::libc::c_uint
          =
    3222601731;
pub const MD_NTSTATUS_WIN_STATUS_SXS_ASSEMBLY_NOT_FOUND: ::libc::c_uint =
    3222601732;
pub const MD_NTSTATUS_WIN_STATUS_SXS_MANIFEST_FORMAT_ERROR: ::libc::c_uint =
    3222601733;
pub const MD_NTSTATUS_WIN_STATUS_SXS_MANIFEST_PARSE_ERROR: ::libc::c_uint =
    3222601734;
pub const MD_NTSTATUS_WIN_STATUS_SXS_ACTIVATION_CONTEXT_DISABLED:
          ::libc::c_uint =
    3222601735;
pub const MD_NTSTATUS_WIN_STATUS_SXS_KEY_NOT_FOUND: ::libc::c_uint =
    3222601736;
pub const MD_NTSTATUS_WIN_STATUS_SXS_VERSION_CONFLICT: ::libc::c_uint =
    3222601737;
pub const MD_NTSTATUS_WIN_STATUS_SXS_WRONG_SECTION_TYPE: ::libc::c_uint =
    3222601738;
pub const MD_NTSTATUS_WIN_STATUS_SXS_THREAD_QUERIES_DISABLED: ::libc::c_uint =
    3222601739;
pub const MD_NTSTATUS_WIN_STATUS_SXS_ASSEMBLY_MISSING: ::libc::c_uint =
    3222601740;
pub const MD_NTSTATUS_WIN_STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET:
          ::libc::c_uint =
    3222601742;
pub const MD_NTSTATUS_WIN_STATUS_SXS_EARLY_DEACTIVATION: ::libc::c_uint =
    3222601743;
pub const MD_NTSTATUS_WIN_STATUS_SXS_INVALID_DEACTIVATION: ::libc::c_uint =
    3222601744;
pub const MD_NTSTATUS_WIN_STATUS_SXS_MULTIPLE_DEACTIVATION: ::libc::c_uint =
    3222601745;
pub const MD_NTSTATUS_WIN_STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY:
          ::libc::c_uint =
    3222601746;
pub const MD_NTSTATUS_WIN_STATUS_SXS_PROCESS_TERMINATION_REQUESTED:
          ::libc::c_uint =
    3222601747;
pub const MD_NTSTATUS_WIN_STATUS_SXS_CORRUPT_ACTIVATION_STACK: ::libc::c_uint
          =
    3222601748;
pub const MD_NTSTATUS_WIN_STATUS_SXS_CORRUPTION: ::libc::c_uint = 3222601749;
pub const MD_NTSTATUS_WIN_STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE:
          ::libc::c_uint =
    3222601750;
pub const MD_NTSTATUS_WIN_STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME:
          ::libc::c_uint =
    3222601751;
pub const MD_NTSTATUS_WIN_STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE:
          ::libc::c_uint =
    3222601752;
pub const MD_NTSTATUS_WIN_STATUS_SXS_IDENTITY_PARSE_ERROR: ::libc::c_uint =
    3222601753;
pub const MD_NTSTATUS_WIN_STATUS_SXS_COMPONENT_STORE_CORRUPT: ::libc::c_uint =
    3222601754;
pub const MD_NTSTATUS_WIN_STATUS_SXS_FILE_HASH_MISMATCH: ::libc::c_uint =
    3222601755;
pub const MD_NTSTATUS_WIN_STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT:
          ::libc::c_uint =
    3222601756;
pub const MD_NTSTATUS_WIN_STATUS_SXS_IDENTITIES_DIFFERENT: ::libc::c_uint =
    3222601757;
pub const MD_NTSTATUS_WIN_STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT:
          ::libc::c_uint =
    3222601758;
pub const MD_NTSTATUS_WIN_STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY: ::libc::c_uint
          =
    3222601759;
pub const MD_NTSTATUS_WIN_STATUS_ADVANCED_INSTALLER_FAILED: ::libc::c_uint =
    3222601760;
pub const MD_NTSTATUS_WIN_STATUS_XML_ENCODING_MISMATCH: ::libc::c_uint =
    3222601761;
pub const MD_NTSTATUS_WIN_STATUS_SXS_MANIFEST_TOO_BIG: ::libc::c_uint =
    3222601762;
pub const MD_NTSTATUS_WIN_STATUS_SXS_SETTING_NOT_REGISTERED: ::libc::c_uint =
    3222601763;
pub const MD_NTSTATUS_WIN_STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE:
          ::libc::c_uint =
    3222601764;
pub const MD_NTSTATUS_WIN_STATUS_SMI_PRIMITIVE_INSTALLER_FAILED:
          ::libc::c_uint =
    3222601765;
pub const MD_NTSTATUS_WIN_STATUS_GENERIC_COMMAND_FAILED: ::libc::c_uint =
    3222601766;
pub const MD_NTSTATUS_WIN_STATUS_SXS_FILE_HASH_MISSING: ::libc::c_uint =
    3222601767;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTIONAL_CONFLICT: ::libc::c_uint =
    3222863873;
pub const MD_NTSTATUS_WIN_STATUS_INVALID_TRANSACTION: ::libc::c_uint =
    3222863874;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_NOT_ACTIVE: ::libc::c_uint =
    3222863875;
pub const MD_NTSTATUS_WIN_STATUS_TM_INITIALIZATION_FAILED: ::libc::c_uint =
    3222863876;
pub const MD_NTSTATUS_WIN_STATUS_RM_NOT_ACTIVE: ::libc::c_uint = 3222863877;
pub const MD_NTSTATUS_WIN_STATUS_RM_METADATA_CORRUPT: ::libc::c_uint =
    3222863878;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_NOT_JOINED: ::libc::c_uint =
    3222863879;
pub const MD_NTSTATUS_WIN_STATUS_DIRECTORY_NOT_RM: ::libc::c_uint =
    3222863880;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE:
          ::libc::c_uint =
    3222863882;
pub const MD_NTSTATUS_WIN_STATUS_LOG_RESIZE_INVALID_SIZE: ::libc::c_uint =
    3222863883;
pub const MD_NTSTATUS_WIN_STATUS_REMOTE_FILE_VERSION_MISMATCH: ::libc::c_uint
          =
    3222863884;
pub const MD_NTSTATUS_WIN_STATUS_CRM_PROTOCOL_ALREADY_EXISTS: ::libc::c_uint =
    3222863887;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_PROPAGATION_FAILED:
          ::libc::c_uint =
    3222863888;
pub const MD_NTSTATUS_WIN_STATUS_CRM_PROTOCOL_NOT_FOUND: ::libc::c_uint =
    3222863889;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_SUPERIOR_EXISTS: ::libc::c_uint =
    3222863890;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_REQUEST_NOT_VALID: ::libc::c_uint
          =
    3222863891;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_NOT_REQUESTED: ::libc::c_uint =
    3222863892;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_ALREADY_ABORTED: ::libc::c_uint =
    3222863893;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_ALREADY_COMMITTED: ::libc::c_uint
          =
    3222863894;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER:
          ::libc::c_uint =
    3222863895;
pub const MD_NTSTATUS_WIN_STATUS_CURRENT_TRANSACTION_NOT_VALID: ::libc::c_uint
          =
    3222863896;
pub const MD_NTSTATUS_WIN_STATUS_LOG_GROWTH_FAILED: ::libc::c_uint =
    3222863897;
pub const MD_NTSTATUS_WIN_STATUS_OBJECT_NO_LONGER_EXISTS: ::libc::c_uint =
    3222863905;
pub const MD_NTSTATUS_WIN_STATUS_STREAM_MINIVERSION_NOT_FOUND: ::libc::c_uint
          =
    3222863906;
pub const MD_NTSTATUS_WIN_STATUS_STREAM_MINIVERSION_NOT_VALID: ::libc::c_uint
          =
    3222863907;
pub const MD_NTSTATUS_WIN_STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION:
          ::libc::c_uint =
    3222863908;
pub const MD_NTSTATUS_WIN_STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT:
          ::libc::c_uint =
    3222863909;
pub const MD_NTSTATUS_WIN_STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS:
          ::libc::c_uint =
    3222863910;
pub const MD_NTSTATUS_WIN_STATUS_HANDLE_NO_LONGER_VALID: ::libc::c_uint =
    3222863912;
pub const MD_NTSTATUS_WIN_STATUS_LOG_CORRUPTION_DETECTED: ::libc::c_uint =
    3222863920;
pub const MD_NTSTATUS_WIN_STATUS_RM_DISCONNECTED: ::libc::c_uint = 3222863922;
pub const MD_NTSTATUS_WIN_STATUS_ENLISTMENT_NOT_SUPERIOR: ::libc::c_uint =
    3222863923;
pub const MD_NTSTATUS_WIN_STATUS_FILE_IDENTITY_NOT_PERSISTENT: ::libc::c_uint
          =
    3222863926;
pub const MD_NTSTATUS_WIN_STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY:
          ::libc::c_uint =
    3222863927;
pub const MD_NTSTATUS_WIN_STATUS_CANT_CROSS_RM_BOUNDARY: ::libc::c_uint =
    3222863928;
pub const MD_NTSTATUS_WIN_STATUS_TXF_DIR_NOT_EMPTY: ::libc::c_uint =
    3222863929;
pub const MD_NTSTATUS_WIN_STATUS_INDOUBT_TRANSACTIONS_EXIST: ::libc::c_uint =
    3222863930;
pub const MD_NTSTATUS_WIN_STATUS_TM_VOLATILE: ::libc::c_uint = 3222863931;
pub const MD_NTSTATUS_WIN_STATUS_ROLLBACK_TIMER_EXPIRED: ::libc::c_uint =
    3222863932;
pub const MD_NTSTATUS_WIN_STATUS_TXF_ATTRIBUTE_CORRUPT: ::libc::c_uint =
    3222863933;
pub const MD_NTSTATUS_WIN_STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION:
          ::libc::c_uint =
    3222863934;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED:
          ::libc::c_uint =
    3222863935;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE:
          ::libc::c_uint =
    3222863936;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_REQUIRED_PROMOTION:
          ::libc::c_uint =
    3222863939;
pub const MD_NTSTATUS_WIN_STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION:
          ::libc::c_uint =
    3222863940;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTIONS_NOT_FROZEN: ::libc::c_uint =
    3222863941;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_FREEZE_IN_PROGRESS:
          ::libc::c_uint =
    3222863942;
pub const MD_NTSTATUS_WIN_STATUS_NOT_SNAPSHOT_VOLUME: ::libc::c_uint =
    3222863943;
pub const MD_NTSTATUS_WIN_STATUS_NO_SAVEPOINT_WITH_OPEN_FILES: ::libc::c_uint
          =
    3222863944;
pub const MD_NTSTATUS_WIN_STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION:
          ::libc::c_uint =
    3222863945;
pub const MD_NTSTATUS_WIN_STATUS_TM_IDENTITY_MISMATCH: ::libc::c_uint =
    3222863946;
pub const MD_NTSTATUS_WIN_STATUS_FLOATED_SECTION: ::libc::c_uint = 3222863947;
pub const MD_NTSTATUS_WIN_STATUS_CANNOT_ACCEPT_TRANSACTED_WORK: ::libc::c_uint
          =
    3222863948;
pub const MD_NTSTATUS_WIN_STATUS_CANNOT_ABORT_TRANSACTIONS: ::libc::c_uint =
    3222863949;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_NOT_FOUND: ::libc::c_uint =
    3222863950;
pub const MD_NTSTATUS_WIN_STATUS_RESOURCEMANAGER_NOT_FOUND: ::libc::c_uint =
    3222863951;
pub const MD_NTSTATUS_WIN_STATUS_ENLISTMENT_NOT_FOUND: ::libc::c_uint =
    3222863952;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTIONMANAGER_NOT_FOUND: ::libc::c_uint
          =
    3222863953;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTIONMANAGER_NOT_ONLINE: ::libc::c_uint
          =
    3222863954;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION:
          ::libc::c_uint =
    3222863955;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_NOT_ROOT: ::libc::c_uint =
    3222863956;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_OBJECT_EXPIRED: ::libc::c_uint =
    3222863957;
pub const MD_NTSTATUS_WIN_STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION:
          ::libc::c_uint =
    3222863958;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED:
          ::libc::c_uint =
    3222863959;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_RECORD_TOO_LONG: ::libc::c_uint =
    3222863960;
pub const MD_NTSTATUS_WIN_STATUS_NO_LINK_TRACKING_IN_TRANSACTION:
          ::libc::c_uint =
    3222863961;
pub const MD_NTSTATUS_WIN_STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION:
          ::libc::c_uint =
    3222863962;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_INTEGRITY_VIOLATED:
          ::libc::c_uint =
    3222863963;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTIONMANAGER_IDENTITY_MISMATCH:
          ::libc::c_uint =
    3222863964;
pub const MD_NTSTATUS_WIN_STATUS_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT:
          ::libc::c_uint =
    3222863965;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_MUST_WRITETHROUGH: ::libc::c_uint
          =
    3222863966;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_NO_SUPERIOR: ::libc::c_uint =
    3222863967;
pub const MD_NTSTATUS_WIN_STATUS_EXPIRED_HANDLE: ::libc::c_uint = 3222863968;
pub const MD_NTSTATUS_WIN_STATUS_TRANSACTION_NOT_ENLISTED: ::libc::c_uint =
    3222863969;
pub const MD_NTSTATUS_WIN_STATUS_LOG_SECTOR_INVALID: ::libc::c_uint =
    3222929409;
pub const MD_NTSTATUS_WIN_STATUS_LOG_SECTOR_PARITY_INVALID: ::libc::c_uint =
    3222929410;
pub const MD_NTSTATUS_WIN_STATUS_LOG_SECTOR_REMAPPED: ::libc::c_uint =
    3222929411;
pub const MD_NTSTATUS_WIN_STATUS_LOG_BLOCK_INCOMPLETE: ::libc::c_uint =
    3222929412;
pub const MD_NTSTATUS_WIN_STATUS_LOG_INVALID_RANGE: ::libc::c_uint =
    3222929413;
pub const MD_NTSTATUS_WIN_STATUS_LOG_BLOCKS_EXHAUSTED: ::libc::c_uint =
    3222929414;
pub const MD_NTSTATUS_WIN_STATUS_LOG_READ_CONTEXT_INVALID: ::libc::c_uint =
    3222929415;
pub const MD_NTSTATUS_WIN_STATUS_LOG_RESTART_INVALID: ::libc::c_uint =
    3222929416;
pub const MD_NTSTATUS_WIN_STATUS_LOG_BLOCK_VERSION: ::libc::c_uint =
    3222929417;
pub const MD_NTSTATUS_WIN_STATUS_LOG_BLOCK_INVALID: ::libc::c_uint =
    3222929418;
pub const MD_NTSTATUS_WIN_STATUS_LOG_READ_MODE_INVALID: ::libc::c_uint =
    3222929419;
pub const MD_NTSTATUS_WIN_STATUS_LOG_METADATA_CORRUPT: ::libc::c_uint =
    3222929421;
pub const MD_NTSTATUS_WIN_STATUS_LOG_METADATA_INVALID: ::libc::c_uint =
    3222929422;
pub const MD_NTSTATUS_WIN_STATUS_LOG_METADATA_INCONSISTENT: ::libc::c_uint =
    3222929423;
pub const MD_NTSTATUS_WIN_STATUS_LOG_RESERVATION_INVALID: ::libc::c_uint =
    3222929424;
pub const MD_NTSTATUS_WIN_STATUS_LOG_CANT_DELETE: ::libc::c_uint = 3222929425;
pub const MD_NTSTATUS_WIN_STATUS_LOG_CONTAINER_LIMIT_EXCEEDED: ::libc::c_uint
          =
    3222929426;
pub const MD_NTSTATUS_WIN_STATUS_LOG_START_OF_LOG: ::libc::c_uint =
    3222929427;
pub const MD_NTSTATUS_WIN_STATUS_LOG_POLICY_ALREADY_INSTALLED: ::libc::c_uint
          =
    3222929428;
pub const MD_NTSTATUS_WIN_STATUS_LOG_POLICY_NOT_INSTALLED: ::libc::c_uint =
    3222929429;
pub const MD_NTSTATUS_WIN_STATUS_LOG_POLICY_INVALID: ::libc::c_uint =
    3222929430;
pub const MD_NTSTATUS_WIN_STATUS_LOG_POLICY_CONFLICT: ::libc::c_uint =
    3222929431;
pub const MD_NTSTATUS_WIN_STATUS_LOG_PINNED_ARCHIVE_TAIL: ::libc::c_uint =
    3222929432;
pub const MD_NTSTATUS_WIN_STATUS_LOG_RECORD_NONEXISTENT: ::libc::c_uint =
    3222929433;
pub const MD_NTSTATUS_WIN_STATUS_LOG_RECORDS_RESERVED_INVALID: ::libc::c_uint
          =
    3222929434;
pub const MD_NTSTATUS_WIN_STATUS_LOG_SPACE_RESERVED_INVALID: ::libc::c_uint =
    3222929435;
pub const MD_NTSTATUS_WIN_STATUS_LOG_TAIL_INVALID: ::libc::c_uint =
    3222929436;
pub const MD_NTSTATUS_WIN_STATUS_LOG_FULL: ::libc::c_uint = 3222929437;
pub const MD_NTSTATUS_WIN_STATUS_LOG_MULTIPLEXED: ::libc::c_uint = 3222929438;
pub const MD_NTSTATUS_WIN_STATUS_LOG_DEDICATED: ::libc::c_uint = 3222929439;
pub const MD_NTSTATUS_WIN_STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS: ::libc::c_uint =
    3222929440;
pub const MD_NTSTATUS_WIN_STATUS_LOG_ARCHIVE_IN_PROGRESS: ::libc::c_uint =
    3222929441;
pub const MD_NTSTATUS_WIN_STATUS_LOG_EPHEMERAL: ::libc::c_uint = 3222929442;
pub const MD_NTSTATUS_WIN_STATUS_LOG_NOT_ENOUGH_CONTAINERS: ::libc::c_uint =
    3222929443;
pub const MD_NTSTATUS_WIN_STATUS_LOG_CLIENT_ALREADY_REGISTERED: ::libc::c_uint
          =
    3222929444;
pub const MD_NTSTATUS_WIN_STATUS_LOG_CLIENT_NOT_REGISTERED: ::libc::c_uint =
    3222929445;
pub const MD_NTSTATUS_WIN_STATUS_LOG_FULL_HANDLER_IN_PROGRESS: ::libc::c_uint
          =
    3222929446;
pub const MD_NTSTATUS_WIN_STATUS_LOG_CONTAINER_READ_FAILED: ::libc::c_uint =
    3222929447;
pub const MD_NTSTATUS_WIN_STATUS_LOG_CONTAINER_WRITE_FAILED: ::libc::c_uint =
    3222929448;
pub const MD_NTSTATUS_WIN_STATUS_LOG_CONTAINER_OPEN_FAILED: ::libc::c_uint =
    3222929449;
pub const MD_NTSTATUS_WIN_STATUS_LOG_CONTAINER_STATE_INVALID: ::libc::c_uint =
    3222929450;
pub const MD_NTSTATUS_WIN_STATUS_LOG_STATE_INVALID: ::libc::c_uint =
    3222929451;
pub const MD_NTSTATUS_WIN_STATUS_LOG_PINNED: ::libc::c_uint = 3222929452;
pub const MD_NTSTATUS_WIN_STATUS_LOG_METADATA_FLUSH_FAILED: ::libc::c_uint =
    3222929453;
pub const MD_NTSTATUS_WIN_STATUS_LOG_INCONSISTENT_SECURITY: ::libc::c_uint =
    3222929454;
pub const MD_NTSTATUS_WIN_STATUS_LOG_APPENDED_FLUSH_FAILED: ::libc::c_uint =
    3222929455;
pub const MD_NTSTATUS_WIN_STATUS_LOG_PINNED_RESERVATION: ::libc::c_uint =
    3222929456;
pub const MD_NTSTATUS_WIN_STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD:
          ::libc::c_uint =
    3222995178;
pub const MD_NTSTATUS_WIN_STATUS_FLT_NO_HANDLER_DEFINED: ::libc::c_uint =
    3223060481;
pub const MD_NTSTATUS_WIN_STATUS_FLT_CONTEXT_ALREADY_DEFINED: ::libc::c_uint =
    3223060482;
pub const MD_NTSTATUS_WIN_STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST:
          ::libc::c_uint =
    3223060483;
pub const MD_NTSTATUS_WIN_STATUS_FLT_DISALLOW_FAST_IO: ::libc::c_uint =
    3223060484;
pub const MD_NTSTATUS_WIN_STATUS_FLT_INVALID_NAME_REQUEST: ::libc::c_uint =
    3223060485;
pub const MD_NTSTATUS_WIN_STATUS_FLT_NOT_SAFE_TO_POST_OPERATION:
          ::libc::c_uint =
    3223060486;
pub const MD_NTSTATUS_WIN_STATUS_FLT_NOT_INITIALIZED: ::libc::c_uint =
    3223060487;
pub const MD_NTSTATUS_WIN_STATUS_FLT_FILTER_NOT_READY: ::libc::c_uint =
    3223060488;
pub const MD_NTSTATUS_WIN_STATUS_FLT_POST_OPERATION_CLEANUP: ::libc::c_uint =
    3223060489;
pub const MD_NTSTATUS_WIN_STATUS_FLT_INTERNAL_ERROR: ::libc::c_uint =
    3223060490;
pub const MD_NTSTATUS_WIN_STATUS_FLT_DELETING_OBJECT: ::libc::c_uint =
    3223060491;
pub const MD_NTSTATUS_WIN_STATUS_FLT_MUST_BE_NONPAGED_POOL: ::libc::c_uint =
    3223060492;
pub const MD_NTSTATUS_WIN_STATUS_FLT_DUPLICATE_ENTRY: ::libc::c_uint =
    3223060493;
pub const MD_NTSTATUS_WIN_STATUS_FLT_CBDQ_DISABLED: ::libc::c_uint =
    3223060494;
pub const MD_NTSTATUS_WIN_STATUS_FLT_DO_NOT_ATTACH: ::libc::c_uint =
    3223060495;
pub const MD_NTSTATUS_WIN_STATUS_FLT_DO_NOT_DETACH: ::libc::c_uint =
    3223060496;
pub const MD_NTSTATUS_WIN_STATUS_FLT_INSTANCE_ALTITUDE_COLLISION:
          ::libc::c_uint =
    3223060497;
pub const MD_NTSTATUS_WIN_STATUS_FLT_INSTANCE_NAME_COLLISION: ::libc::c_uint =
    3223060498;
pub const MD_NTSTATUS_WIN_STATUS_FLT_FILTER_NOT_FOUND: ::libc::c_uint =
    3223060499;
pub const MD_NTSTATUS_WIN_STATUS_FLT_VOLUME_NOT_FOUND: ::libc::c_uint =
    3223060500;
pub const MD_NTSTATUS_WIN_STATUS_FLT_INSTANCE_NOT_FOUND: ::libc::c_uint =
    3223060501;
pub const MD_NTSTATUS_WIN_STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND:
          ::libc::c_uint =
    3223060502;
pub const MD_NTSTATUS_WIN_STATUS_FLT_INVALID_CONTEXT_REGISTRATION:
          ::libc::c_uint =
    3223060503;
pub const MD_NTSTATUS_WIN_STATUS_FLT_NAME_CACHE_MISS: ::libc::c_uint =
    3223060504;
pub const MD_NTSTATUS_WIN_STATUS_FLT_NO_DEVICE_OBJECT: ::libc::c_uint =
    3223060505;
pub const MD_NTSTATUS_WIN_STATUS_FLT_VOLUME_ALREADY_MOUNTED: ::libc::c_uint =
    3223060506;
pub const MD_NTSTATUS_WIN_STATUS_FLT_ALREADY_ENLISTED: ::libc::c_uint =
    3223060507;
pub const MD_NTSTATUS_WIN_STATUS_FLT_CONTEXT_ALREADY_LINKED: ::libc::c_uint =
    3223060508;
pub const MD_NTSTATUS_WIN_STATUS_FLT_NO_WAITER_FOR_REPLY: ::libc::c_uint =
    3223060512;
pub const MD_NTSTATUS_WIN_STATUS_FLT_REGISTRATION_BUSY: ::libc::c_uint =
    3223060515;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_NO_DESCRIPTOR: ::libc::c_uint =
    3223126017;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT:
          ::libc::c_uint =
    3223126018;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM:
          ::libc::c_uint =
    3223126019;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK:
          ::libc::c_uint =
    3223126020;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED:
          ::libc::c_uint =
    3223126021;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK:
          ::libc::c_uint =
    3223126022;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK:
          ::libc::c_uint =
    3223126023;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA:
          ::libc::c_uint =
    3223126024;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK:
          ::libc::c_uint =
    3223126025;
pub const MD_NTSTATUS_WIN_STATUS_MONITOR_INVALID_MANUFACTURE_DATE:
          ::libc::c_uint =
    3223126026;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER:
          ::libc::c_uint =
    3223191552;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER:
          ::libc::c_uint =
    3223191553;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER:
          ::libc::c_uint =
    3223191554;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ADAPTER_WAS_RESET: ::libc::c_uint =
    3223191555;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_DRIVER_MODEL: ::libc::c_uint
          =
    3223191556;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PRESENT_MODE_CHANGED: ::libc::c_uint
          =
    3223191557;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PRESENT_OCCLUDED: ::libc::c_uint =
    3223191558;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PRESENT_DENIED: ::libc::c_uint =
    3223191559;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CANNOTCOLORCONVERT: ::libc::c_uint =
    3223191560;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_DRIVER_MISMATCH: ::libc::c_uint =
    3223191561;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PRESENT_REDIRECTION_DISABLED:
          ::libc::c_uint =
    3223191563;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PRESENT_UNOCCLUDED: ::libc::c_uint =
    3223191564;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_WINDOWDC_NOT_AVAILABLE:
          ::libc::c_uint =
    3223191565;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_WINDOWLESS_PRESENT_DISABLED:
          ::libc::c_uint =
    3223191566;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_VIDEO_MEMORY: ::libc::c_uint =
    3223191808;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CANT_LOCK_MEMORY: ::libc::c_uint =
    3223191809;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ALLOCATION_BUSY: ::libc::c_uint =
    3223191810;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_TOO_MANY_REFERENCES: ::libc::c_uint
          =
    3223191811;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_TRY_AGAIN_LATER: ::libc::c_uint =
    3223191812;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_TRY_AGAIN_NOW: ::libc::c_uint =
    3223191813;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ALLOCATION_INVALID: ::libc::c_uint =
    3223191814;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE:
          ::libc::c_uint =
    3223191815;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED:
          ::libc::c_uint =
    3223191816;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION:
          ::libc::c_uint =
    3223191817;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE:
          ::libc::c_uint =
    3223191824;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION:
          ::libc::c_uint =
    3223191825;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ALLOCATION_CLOSED: ::libc::c_uint =
    3223191826;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE:
          ::libc::c_uint =
    3223191827;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE:
          ::libc::c_uint =
    3223191828;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE:
          ::libc::c_uint =
    3223191829;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST:
          ::libc::c_uint =
    3223191830;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE:
          ::libc::c_uint =
    3223192064;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY:
          ::libc::c_uint =
    3223192320;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED:
          ::libc::c_uint =
    3223192321;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED:
          ::libc::c_uint =
    3223192322;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDPN: ::libc::c_uint =
    3223192323;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE:
          ::libc::c_uint =
    3223192324;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET:
          ::libc::c_uint =
    3223192325;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED:
          ::libc::c_uint =
    3223192326;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET:
          ::libc::c_uint =
    3223192328;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET:
          ::libc::c_uint =
    3223192329;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_FREQUENCY: ::libc::c_uint =
    3223192330;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_ACTIVE_REGION:
          ::libc::c_uint =
    3223192331;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_TOTAL_REGION: ::libc::c_uint
          =
    3223192332;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE:
          ::libc::c_uint =
    3223192336;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE:
          ::libc::c_uint =
    3223192337;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET:
          ::libc::c_uint =
    3223192338;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY:
          ::libc::c_uint =
    3223192339;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET:
          ::libc::c_uint =
    3223192340;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET:
          ::libc::c_uint =
    3223192341;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET:
          ::libc::c_uint =
    3223192342;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET:
          ::libc::c_uint =
    3223192343;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_TARGET_ALREADY_IN_SET:
          ::libc::c_uint =
    3223192344;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH:
          ::libc::c_uint =
    3223192345;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY:
          ::libc::c_uint =
    3223192346;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET:
          ::libc::c_uint =
    3223192347;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE:
          ::libc::c_uint =
    3223192348;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET:
          ::libc::c_uint =
    3223192349;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET:
          ::libc::c_uint =
    3223192351;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_STALE_MODESET: ::libc::c_uint =
    3223192352;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET:
          ::libc::c_uint =
    3223192353;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE:
          ::libc::c_uint =
    3223192354;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN:
          ::libc::c_uint =
    3223192355;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE:
          ::libc::c_uint =
    3223192356;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION:
          ::libc::c_uint =
    3223192357;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES:
          ::libc::c_uint =
    3223192358;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY: ::libc::c_uint
          =
    3223192359;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE:
          ::libc::c_uint =
    3223192360;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET:
          ::libc::c_uint =
    3223192361;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET:
          ::libc::c_uint =
    3223192362;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR:
          ::libc::c_uint =
    3223192363;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET:
          ::libc::c_uint =
    3223192364;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET:
          ::libc::c_uint =
    3223192365;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE:
          ::libc::c_uint =
    3223192366;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE:
          ::libc::c_uint =
    3223192367;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_RESOURCES_NOT_RELATED:
          ::libc::c_uint =
    3223192368;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE:
          ::libc::c_uint =
    3223192369;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE:
          ::libc::c_uint =
    3223192370;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET:
          ::libc::c_uint =
    3223192371;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER:
          ::libc::c_uint =
    3223192372;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_VIDPNMGR: ::libc::c_uint =
    3223192373;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_ACTIVE_VIDPN: ::libc::c_uint =
    3223192374;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY: ::libc::c_uint
          =
    3223192375;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MONITOR_NOT_CONNECTED:
          ::libc::c_uint =
    3223192376;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY:
          ::libc::c_uint =
    3223192377;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE:
          ::libc::c_uint =
    3223192378;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE:
          ::libc::c_uint =
    3223192379;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_STRIDE: ::libc::c_uint =
    3223192380;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_PIXELFORMAT: ::libc::c_uint
          =
    3223192381;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_COLORBASIS: ::libc::c_uint =
    3223192382;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE:
          ::libc::c_uint =
    3223192383;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY:
          ::libc::c_uint =
    3223192384;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT:
          ::libc::c_uint =
    3223192385;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE: ::libc::c_uint
          =
    3223192386;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN:
          ::libc::c_uint =
    3223192387;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL:
          ::libc::c_uint =
    3223192388;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION:
          ::libc::c_uint =
    3223192389;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED:
          ::libc::c_uint =
    3223192390;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_GAMMA_RAMP: ::libc::c_uint =
    3223192391;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED:
          ::libc::c_uint =
    3223192392;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED:
          ::libc::c_uint =
    3223192393;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MODE_NOT_IN_MODESET: ::libc::c_uint
          =
    3223192394;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON:
          ::libc::c_uint =
    3223192397;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE:
          ::libc::c_uint =
    3223192398;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE:
          ::libc::c_uint =
    3223192399;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS:
          ::libc::c_uint =
    3223192400;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING:
          ::libc::c_uint =
    3223192402;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED:
          ::libc::c_uint =
    3223192403;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS:
          ::libc::c_uint =
    3223192404;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT:
          ::libc::c_uint =
    3223192405;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM:
          ::libc::c_uint =
    3223192406;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN:
          ::libc::c_uint =
    3223192407;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT:
          ::libc::c_uint =
    3223192408;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED:
          ::libc::c_uint =
    3223192409;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION:
          ::libc::c_uint =
    3223192410;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_CLIENT_TYPE: ::libc::c_uint
          =
    3223192411;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET: ::libc::c_uint
          =
    3223192412;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED:
          ::libc::c_uint =
    3223192576;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED:
          ::libc::c_uint =
    3223192577;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER: ::libc::c_uint
          =
    3223192624;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED:
          ::libc::c_uint =
    3223192625;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED:
          ::libc::c_uint =
    3223192626;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY:
          ::libc::c_uint =
    3223192627;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED:
          ::libc::c_uint =
    3223192628;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON:
          ::libc::c_uint =
    3223192629;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE:
          ::libc::c_uint =
    3223192630;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER:
          ::libc::c_uint =
    3223192632;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED:
          ::libc::c_uint =
    3223192635;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_NOT_SUPPORTED: ::libc::c_uint =
    3223192832;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_COPP_NOT_SUPPORTED: ::libc::c_uint =
    3223192833;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_UAB_NOT_SUPPORTED: ::libc::c_uint =
    3223192834;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS:
          ::libc::c_uint =
    3223192835;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST:
          ::libc::c_uint =
    3223192837;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_INTERNAL_ERROR: ::libc::c_uint =
    3223192843;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_INVALID_HANDLE: ::libc::c_uint =
    3223192844;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH:
          ::libc::c_uint =
    3223192846;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED:
          ::libc::c_uint =
    3223192847;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED:
          ::libc::c_uint =
    3223192848;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PVP_HFS_FAILED: ::libc::c_uint =
    3223192849;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_INVALID_SRM: ::libc::c_uint =
    3223192850;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP:
          ::libc::c_uint =
    3223192851;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP:
          ::libc::c_uint =
    3223192852;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA:
          ::libc::c_uint =
    3223192853;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET:
          ::libc::c_uint =
    3223192854;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH:
          ::libc::c_uint =
    3223192855;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE:
          ::libc::c_uint =
    3223192856;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS:
          ::libc::c_uint =
    3223192858;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS:
          ::libc::c_uint =
    3223192860;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST:
          ::libc::c_uint =
    3223192861;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR:
          ::libc::c_uint =
    3223192862;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS:
          ::libc::c_uint =
    3223192863;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED:
          ::libc::c_uint =
    3223192864;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST:
          ::libc::c_uint =
    3223192865;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_I2C_NOT_SUPPORTED: ::libc::c_uint =
    3223192960;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST:
          ::libc::c_uint =
    3223192961;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA:
          ::libc::c_uint =
    3223192962;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA:
          ::libc::c_uint =
    3223192963;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED:
          ::libc::c_uint =
    3223192964;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_DDCCI_INVALID_DATA: ::libc::c_uint =
    3223192965;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE:
          ::libc::c_uint =
    3223192966;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING:
          ::libc::c_uint =
    3223192967;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MCA_INTERNAL_ERROR: ::libc::c_uint =
    3223192968;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND:
          ::libc::c_uint =
    3223192969;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH:
          ::libc::c_uint =
    3223192970;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM:
          ::libc::c_uint =
    3223192971;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE:
          ::libc::c_uint =
    3223192972;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS:
          ::libc::c_uint =
    3223192973;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED:
          ::libc::c_uint =
    3223193056;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME:
          ::libc::c_uint =
    3223193057;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP:
          ::libc::c_uint =
    3223193058;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED:
          ::libc::c_uint =
    3223193059;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INVALID_POINTER: ::libc::c_uint =
    3223193060;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE:
          ::libc::c_uint =
    3223193061;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL:
          ::libc::c_uint =
    3223193062;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_INTERNAL_ERROR: ::libc::c_uint =
    3223193063;
pub const MD_NTSTATUS_WIN_STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS:
          ::libc::c_uint =
    3223193064;
pub const MD_NTSTATUS_WIN_STATUS_FVE_LOCKED_VOLUME: ::libc::c_uint =
    3223388160;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NOT_ENCRYPTED: ::libc::c_uint =
    3223388161;
pub const MD_NTSTATUS_WIN_STATUS_FVE_BAD_INFORMATION: ::libc::c_uint =
    3223388162;
pub const MD_NTSTATUS_WIN_STATUS_FVE_TOO_SMALL: ::libc::c_uint = 3223388163;
pub const MD_NTSTATUS_WIN_STATUS_FVE_FAILED_WRONG_FS: ::libc::c_uint =
    3223388164;
pub const MD_NTSTATUS_WIN_STATUS_FVE_BAD_PARTITION_SIZE: ::libc::c_uint =
    3223388165;
pub const MD_NTSTATUS_WIN_STATUS_FVE_FS_NOT_EXTENDED: ::libc::c_uint =
    3223388166;
pub const MD_NTSTATUS_WIN_STATUS_FVE_FS_MOUNTED: ::libc::c_uint = 3223388167;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NO_LICENSE: ::libc::c_uint = 3223388168;
pub const MD_NTSTATUS_WIN_STATUS_FVE_ACTION_NOT_ALLOWED: ::libc::c_uint =
    3223388169;
pub const MD_NTSTATUS_WIN_STATUS_FVE_BAD_DATA: ::libc::c_uint = 3223388170;
pub const MD_NTSTATUS_WIN_STATUS_FVE_VOLUME_NOT_BOUND: ::libc::c_uint =
    3223388171;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NOT_DATA_VOLUME: ::libc::c_uint =
    3223388172;
pub const MD_NTSTATUS_WIN_STATUS_FVE_CONV_READ_ERROR: ::libc::c_uint =
    3223388173;
pub const MD_NTSTATUS_WIN_STATUS_FVE_CONV_WRITE_ERROR: ::libc::c_uint =
    3223388174;
pub const MD_NTSTATUS_WIN_STATUS_FVE_OVERLAPPED_UPDATE: ::libc::c_uint =
    3223388175;
pub const MD_NTSTATUS_WIN_STATUS_FVE_FAILED_SECTOR_SIZE: ::libc::c_uint =
    3223388176;
pub const MD_NTSTATUS_WIN_STATUS_FVE_FAILED_AUTHENTICATION: ::libc::c_uint =
    3223388177;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NOT_OS_VOLUME: ::libc::c_uint =
    3223388178;
pub const MD_NTSTATUS_WIN_STATUS_FVE_KEYFILE_NOT_FOUND: ::libc::c_uint =
    3223388179;
pub const MD_NTSTATUS_WIN_STATUS_FVE_KEYFILE_INVALID: ::libc::c_uint =
    3223388180;
pub const MD_NTSTATUS_WIN_STATUS_FVE_KEYFILE_NO_VMK: ::libc::c_uint =
    3223388181;
pub const MD_NTSTATUS_WIN_STATUS_FVE_TPM_DISABLED: ::libc::c_uint =
    3223388182;
pub const MD_NTSTATUS_WIN_STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO: ::libc::c_uint =
    3223388183;
pub const MD_NTSTATUS_WIN_STATUS_FVE_TPM_INVALID_PCR: ::libc::c_uint =
    3223388184;
pub const MD_NTSTATUS_WIN_STATUS_FVE_TPM_NO_VMK: ::libc::c_uint = 3223388185;
pub const MD_NTSTATUS_WIN_STATUS_FVE_PIN_INVALID: ::libc::c_uint = 3223388186;
pub const MD_NTSTATUS_WIN_STATUS_FVE_AUTH_INVALID_APPLICATION: ::libc::c_uint
          =
    3223388187;
pub const MD_NTSTATUS_WIN_STATUS_FVE_AUTH_INVALID_CONFIG: ::libc::c_uint =
    3223388188;
pub const MD_NTSTATUS_WIN_STATUS_FVE_DEBUGGER_ENABLED: ::libc::c_uint =
    3223388189;
pub const MD_NTSTATUS_WIN_STATUS_FVE_DRY_RUN_FAILED: ::libc::c_uint =
    3223388190;
pub const MD_NTSTATUS_WIN_STATUS_FVE_BAD_METADATA_POINTER: ::libc::c_uint =
    3223388191;
pub const MD_NTSTATUS_WIN_STATUS_FVE_OLD_METADATA_COPY: ::libc::c_uint =
    3223388192;
pub const MD_NTSTATUS_WIN_STATUS_FVE_REBOOT_REQUIRED: ::libc::c_uint =
    3223388193;
pub const MD_NTSTATUS_WIN_STATUS_FVE_RAW_ACCESS: ::libc::c_uint = 3223388194;
pub const MD_NTSTATUS_WIN_STATUS_FVE_RAW_BLOCKED: ::libc::c_uint = 3223388195;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NO_AUTOUNLOCK_MASTER_KEY: ::libc::c_uint
          =
    3223388196;
pub const MD_NTSTATUS_WIN_STATUS_FVE_MOR_FAILED: ::libc::c_uint = 3223388197;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NO_FEATURE_LICENSE: ::libc::c_uint =
    3223388198;
pub const MD_NTSTATUS_WIN_STATUS_FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED:
          ::libc::c_uint =
    3223388199;
pub const MD_NTSTATUS_WIN_STATUS_FVE_CONV_RECOVERY_FAILED: ::libc::c_uint =
    3223388200;
pub const MD_NTSTATUS_WIN_STATUS_FVE_VIRTUALIZED_SPACE_TOO_BIG: ::libc::c_uint
          =
    3223388201;
pub const MD_NTSTATUS_WIN_STATUS_FVE_INVALID_DATUM_TYPE: ::libc::c_uint =
    3223388202;
pub const MD_NTSTATUS_WIN_STATUS_FVE_VOLUME_TOO_SMALL: ::libc::c_uint =
    3223388208;
pub const MD_NTSTATUS_WIN_STATUS_FVE_ENH_PIN_INVALID: ::libc::c_uint =
    3223388209;
pub const MD_NTSTATUS_WIN_STATUS_FVE_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE:
          ::libc::c_uint =
    3223388210;
pub const MD_NTSTATUS_WIN_STATUS_FVE_WIPE_NOT_ALLOWED_ON_TP_STORAGE:
          ::libc::c_uint =
    3223388211;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NOT_ALLOWED_ON_CSV_STACK: ::libc::c_uint
          =
    3223388212;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NOT_ALLOWED_ON_CLUSTER: ::libc::c_uint =
    3223388213;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING:
          ::libc::c_uint =
    3223388214;
pub const MD_NTSTATUS_WIN_STATUS_FVE_WIPE_CANCEL_NOT_APPLICABLE:
          ::libc::c_uint =
    3223388215;
pub const MD_NTSTATUS_WIN_STATUS_FVE_EDRIVE_DRY_RUN_FAILED: ::libc::c_uint =
    3223388216;
pub const MD_NTSTATUS_WIN_STATUS_FVE_SECUREBOOT_DISABLED: ::libc::c_uint =
    3223388217;
pub const MD_NTSTATUS_WIN_STATUS_FVE_SECUREBOOT_CONFIG_CHANGE: ::libc::c_uint
          =
    3223388218;
pub const MD_NTSTATUS_WIN_STATUS_FVE_DEVICE_LOCKEDOUT: ::libc::c_uint =
    3223388219;
pub const MD_NTSTATUS_WIN_STATUS_FVE_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT:
          ::libc::c_uint =
    3223388220;
pub const MD_NTSTATUS_WIN_STATUS_FVE_NOT_DE_VOLUME: ::libc::c_uint =
    3223388221;
pub const MD_NTSTATUS_WIN_STATUS_FVE_PROTECTION_DISABLED: ::libc::c_uint =
    3223388222;
pub const MD_NTSTATUS_WIN_STATUS_FVE_PROTECTION_CANNOT_BE_DISABLED:
          ::libc::c_uint =
    3223388223;
pub const MD_NTSTATUS_WIN_STATUS_FWP_CALLOUT_NOT_FOUND: ::libc::c_uint =
    3223453697;
pub const MD_NTSTATUS_WIN_STATUS_FWP_CONDITION_NOT_FOUND: ::libc::c_uint =
    3223453698;
pub const MD_NTSTATUS_WIN_STATUS_FWP_FILTER_NOT_FOUND: ::libc::c_uint =
    3223453699;
pub const MD_NTSTATUS_WIN_STATUS_FWP_LAYER_NOT_FOUND: ::libc::c_uint =
    3223453700;
pub const MD_NTSTATUS_WIN_STATUS_FWP_PROVIDER_NOT_FOUND: ::libc::c_uint =
    3223453701;
pub const MD_NTSTATUS_WIN_STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND:
          ::libc::c_uint =
    3223453702;
pub const MD_NTSTATUS_WIN_STATUS_FWP_SUBLAYER_NOT_FOUND: ::libc::c_uint =
    3223453703;
pub const MD_NTSTATUS_WIN_STATUS_FWP_NOT_FOUND: ::libc::c_uint = 3223453704;
pub const MD_NTSTATUS_WIN_STATUS_FWP_ALREADY_EXISTS: ::libc::c_uint =
    3223453705;
pub const MD_NTSTATUS_WIN_STATUS_FWP_IN_USE: ::libc::c_uint = 3223453706;
pub const MD_NTSTATUS_WIN_STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS:
          ::libc::c_uint =
    3223453707;
pub const MD_NTSTATUS_WIN_STATUS_FWP_WRONG_SESSION: ::libc::c_uint =
    3223453708;
pub const MD_NTSTATUS_WIN_STATUS_FWP_NO_TXN_IN_PROGRESS: ::libc::c_uint =
    3223453709;
pub const MD_NTSTATUS_WIN_STATUS_FWP_TXN_IN_PROGRESS: ::libc::c_uint =
    3223453710;
pub const MD_NTSTATUS_WIN_STATUS_FWP_TXN_ABORTED: ::libc::c_uint = 3223453711;
pub const MD_NTSTATUS_WIN_STATUS_FWP_SESSION_ABORTED: ::libc::c_uint =
    3223453712;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INCOMPATIBLE_TXN: ::libc::c_uint =
    3223453713;
pub const MD_NTSTATUS_WIN_STATUS_FWP_TIMEOUT: ::libc::c_uint = 3223453714;
pub const MD_NTSTATUS_WIN_STATUS_FWP_NET_EVENTS_DISABLED: ::libc::c_uint =
    3223453715;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INCOMPATIBLE_LAYER: ::libc::c_uint =
    3223453716;
pub const MD_NTSTATUS_WIN_STATUS_FWP_KM_CLIENTS_ONLY: ::libc::c_uint =
    3223453717;
pub const MD_NTSTATUS_WIN_STATUS_FWP_LIFETIME_MISMATCH: ::libc::c_uint =
    3223453718;
pub const MD_NTSTATUS_WIN_STATUS_FWP_BUILTIN_OBJECT: ::libc::c_uint =
    3223453719;
pub const MD_NTSTATUS_WIN_STATUS_FWP_TOO_MANY_CALLOUTS: ::libc::c_uint =
    3223453720;
pub const MD_NTSTATUS_WIN_STATUS_FWP_NOTIFICATION_DROPPED: ::libc::c_uint =
    3223453721;
pub const MD_NTSTATUS_WIN_STATUS_FWP_TRAFFIC_MISMATCH: ::libc::c_uint =
    3223453722;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INCOMPATIBLE_SA_STATE: ::libc::c_uint =
    3223453723;
pub const MD_NTSTATUS_WIN_STATUS_FWP_NULL_POINTER: ::libc::c_uint =
    3223453724;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_ENUMERATOR: ::libc::c_uint =
    3223453725;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_FLAGS: ::libc::c_uint =
    3223453726;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_NET_MASK: ::libc::c_uint =
    3223453727;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_RANGE: ::libc::c_uint =
    3223453728;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_INTERVAL: ::libc::c_uint =
    3223453729;
pub const MD_NTSTATUS_WIN_STATUS_FWP_ZERO_LENGTH_ARRAY: ::libc::c_uint =
    3223453730;
pub const MD_NTSTATUS_WIN_STATUS_FWP_NULL_DISPLAY_NAME: ::libc::c_uint =
    3223453731;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_ACTION_TYPE: ::libc::c_uint =
    3223453732;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_WEIGHT: ::libc::c_uint =
    3223453733;
pub const MD_NTSTATUS_WIN_STATUS_FWP_MATCH_TYPE_MISMATCH: ::libc::c_uint =
    3223453734;
pub const MD_NTSTATUS_WIN_STATUS_FWP_TYPE_MISMATCH: ::libc::c_uint =
    3223453735;
pub const MD_NTSTATUS_WIN_STATUS_FWP_OUT_OF_BOUNDS: ::libc::c_uint =
    3223453736;
pub const MD_NTSTATUS_WIN_STATUS_FWP_RESERVED: ::libc::c_uint = 3223453737;
pub const MD_NTSTATUS_WIN_STATUS_FWP_DUPLICATE_CONDITION: ::libc::c_uint =
    3223453738;
pub const MD_NTSTATUS_WIN_STATUS_FWP_DUPLICATE_KEYMOD: ::libc::c_uint =
    3223453739;
pub const MD_NTSTATUS_WIN_STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER:
          ::libc::c_uint =
    3223453740;
pub const MD_NTSTATUS_WIN_STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER:
          ::libc::c_uint =
    3223453741;
pub const MD_NTSTATUS_WIN_STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER:
          ::libc::c_uint =
    3223453742;
pub const MD_NTSTATUS_WIN_STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT:
          ::libc::c_uint =
    3223453743;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INCOMPATIBLE_AUTH_METHOD: ::libc::c_uint
          =
    3223453744;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INCOMPATIBLE_DH_GROUP: ::libc::c_uint =
    3223453745;
pub const MD_NTSTATUS_WIN_STATUS_FWP_EM_NOT_SUPPORTED: ::libc::c_uint =
    3223453746;
pub const MD_NTSTATUS_WIN_STATUS_FWP_NEVER_MATCH: ::libc::c_uint = 3223453747;
pub const MD_NTSTATUS_WIN_STATUS_FWP_PROVIDER_CONTEXT_MISMATCH: ::libc::c_uint
          =
    3223453748;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_PARAMETER: ::libc::c_uint =
    3223453749;
pub const MD_NTSTATUS_WIN_STATUS_FWP_TOO_MANY_SUBLAYERS: ::libc::c_uint =
    3223453750;
pub const MD_NTSTATUS_WIN_STATUS_FWP_CALLOUT_NOTIFICATION_FAILED:
          ::libc::c_uint =
    3223453751;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_AUTH_TRANSFORM: ::libc::c_uint =
    3223453752;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_CIPHER_TRANSFORM: ::libc::c_uint
          =
    3223453753;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INCOMPATIBLE_CIPHER_TRANSFORM:
          ::libc::c_uint =
    3223453754;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_TRANSFORM_COMBINATION:
          ::libc::c_uint =
    3223453755;
pub const MD_NTSTATUS_WIN_STATUS_FWP_DUPLICATE_AUTH_METHOD: ::libc::c_uint =
    3223453756;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_TUNNEL_ENDPOINT: ::libc::c_uint =
    3223453757;
pub const MD_NTSTATUS_WIN_STATUS_FWP_L2_DRIVER_NOT_READY: ::libc::c_uint =
    3223453758;
pub const MD_NTSTATUS_WIN_STATUS_FWP_KEY_DICTATOR_ALREADY_REGISTERED:
          ::libc::c_uint =
    3223453759;
pub const MD_NTSTATUS_WIN_STATUS_FWP_KEY_DICTATION_INVALID_KEYING_MATERIAL:
          ::libc::c_uint =
    3223453760;
pub const MD_NTSTATUS_WIN_STATUS_FWP_CONNECTIONS_DISABLED: ::libc::c_uint =
    3223453761;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INVALID_DNS_NAME: ::libc::c_uint =
    3223453762;
pub const MD_NTSTATUS_WIN_STATUS_FWP_STILL_ON: ::libc::c_uint = 3223453763;
pub const MD_NTSTATUS_WIN_STATUS_FWP_IKEEXT_NOT_RUNNING: ::libc::c_uint =
    3223453764;
pub const MD_NTSTATUS_WIN_STATUS_FWP_TCPIP_NOT_READY: ::libc::c_uint =
    3223453952;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INJECT_HANDLE_CLOSING: ::libc::c_uint =
    3223453953;
pub const MD_NTSTATUS_WIN_STATUS_FWP_INJECT_HANDLE_STALE: ::libc::c_uint =
    3223453954;
pub const MD_NTSTATUS_WIN_STATUS_FWP_CANNOT_PEND: ::libc::c_uint = 3223453955;
pub const MD_NTSTATUS_WIN_STATUS_FWP_DROP_NOICMP: ::libc::c_uint = 3223453956;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_CLOSING: ::libc::c_uint = 3223519234;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_BAD_VERSION: ::libc::c_uint =
    3223519236;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_BAD_CHARACTERISTICS: ::libc::c_uint =
    3223519237;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_ADAPTER_NOT_FOUND: ::libc::c_uint =
    3223519238;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_OPEN_FAILED: ::libc::c_uint =
    3223519239;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_DEVICE_FAILED: ::libc::c_uint =
    3223519240;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_MULTICAST_FULL: ::libc::c_uint =
    3223519241;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_MULTICAST_EXISTS: ::libc::c_uint =
    3223519242;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_MULTICAST_NOT_FOUND: ::libc::c_uint =
    3223519243;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_REQUEST_ABORTED: ::libc::c_uint =
    3223519244;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_RESET_IN_PROGRESS: ::libc::c_uint =
    3223519245;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_INVALID_PACKET: ::libc::c_uint =
    3223519247;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_INVALID_DEVICE_REQUEST: ::libc::c_uint =
    3223519248;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_ADAPTER_NOT_READY: ::libc::c_uint =
    3223519249;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_INVALID_LENGTH: ::libc::c_uint =
    3223519252;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_INVALID_DATA: ::libc::c_uint =
    3223519253;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_BUFFER_TOO_SHORT: ::libc::c_uint =
    3223519254;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_INVALID_OID: ::libc::c_uint =
    3223519255;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_ADAPTER_REMOVED: ::libc::c_uint =
    3223519256;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_UNSUPPORTED_MEDIA: ::libc::c_uint =
    3223519257;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_GROUP_ADDRESS_IN_USE: ::libc::c_uint =
    3223519258;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_FILE_NOT_FOUND: ::libc::c_uint =
    3223519259;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_ERROR_READING_FILE: ::libc::c_uint =
    3223519260;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_ALREADY_MAPPED: ::libc::c_uint =
    3223519261;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_RESOURCE_CONFLICT: ::libc::c_uint =
    3223519262;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_MEDIA_DISCONNECTED: ::libc::c_uint =
    3223519263;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_INVALID_ADDRESS: ::libc::c_uint =
    3223519266;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_PAUSED: ::libc::c_uint = 3223519274;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_INTERFACE_NOT_FOUND: ::libc::c_uint =
    3223519275;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_UNSUPPORTED_REVISION: ::libc::c_uint =
    3223519276;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_INVALID_PORT: ::libc::c_uint =
    3223519277;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_INVALID_PORT_STATE: ::libc::c_uint =
    3223519278;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_LOW_POWER_STATE: ::libc::c_uint =
    3223519279;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_REINIT_REQUIRED: ::libc::c_uint =
    3223519280;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_NOT_SUPPORTED: ::libc::c_uint =
    3223519419;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_OFFLOAD_POLICY: ::libc::c_uint =
    3223523343;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED:
          ::libc::c_uint =
    3223523346;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_OFFLOAD_PATH_REJECTED: ::libc::c_uint =
    3223523347;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED:
          ::libc::c_uint =
    3223527424;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_DOT11_MEDIA_IN_USE: ::libc::c_uint =
    3223527425;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_DOT11_POWER_STATE_INVALID:
          ::libc::c_uint =
    3223527426;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_PM_WOL_PATTERN_LIST_FULL: ::libc::c_uint
          =
    3223527427;
pub const MD_NTSTATUS_WIN_STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL:
          ::libc::c_uint =
    3223527428;
pub const MD_NTSTATUS_WIN_STATUS_TPM_ERROR_MASK: ::libc::c_uint = 3223912448;
pub const MD_NTSTATUS_WIN_STATUS_TPM_AUTHFAIL: ::libc::c_uint = 3223912449;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BADINDEX: ::libc::c_uint = 3223912450;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_PARAMETER: ::libc::c_uint =
    3223912451;
pub const MD_NTSTATUS_WIN_STATUS_TPM_AUDITFAILURE: ::libc::c_uint =
    3223912452;
pub const MD_NTSTATUS_WIN_STATUS_TPM_CLEAR_DISABLED: ::libc::c_uint =
    3223912453;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DEACTIVATED: ::libc::c_uint = 3223912454;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DISABLED: ::libc::c_uint = 3223912455;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DISABLED_CMD: ::libc::c_uint =
    3223912456;
pub const MD_NTSTATUS_WIN_STATUS_TPM_FAIL: ::libc::c_uint = 3223912457;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_ORDINAL: ::libc::c_uint = 3223912458;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INSTALL_DISABLED: ::libc::c_uint =
    3223912459;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INVALID_KEYHANDLE: ::libc::c_uint =
    3223912460;
pub const MD_NTSTATUS_WIN_STATUS_TPM_KEYNOTFOUND: ::libc::c_uint = 3223912461;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INAPPROPRIATE_ENC: ::libc::c_uint =
    3223912462;
pub const MD_NTSTATUS_WIN_STATUS_TPM_MIGRATEFAIL: ::libc::c_uint = 3223912463;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INVALID_PCR_INFO: ::libc::c_uint =
    3223912464;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOSPACE: ::libc::c_uint = 3223912465;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOSRK: ::libc::c_uint = 3223912466;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOTSEALED_BLOB: ::libc::c_uint =
    3223912467;
pub const MD_NTSTATUS_WIN_STATUS_TPM_OWNER_SET: ::libc::c_uint = 3223912468;
pub const MD_NTSTATUS_WIN_STATUS_TPM_RESOURCES: ::libc::c_uint = 3223912469;
pub const MD_NTSTATUS_WIN_STATUS_TPM_SHORTRANDOM: ::libc::c_uint = 3223912470;
pub const MD_NTSTATUS_WIN_STATUS_TPM_SIZE: ::libc::c_uint = 3223912471;
pub const MD_NTSTATUS_WIN_STATUS_TPM_WRONGPCRVAL: ::libc::c_uint = 3223912472;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_PARAM_SIZE: ::libc::c_uint =
    3223912473;
pub const MD_NTSTATUS_WIN_STATUS_TPM_SHA_THREAD: ::libc::c_uint = 3223912474;
pub const MD_NTSTATUS_WIN_STATUS_TPM_SHA_ERROR: ::libc::c_uint = 3223912475;
pub const MD_NTSTATUS_WIN_STATUS_TPM_FAILEDSELFTEST: ::libc::c_uint =
    3223912476;
pub const MD_NTSTATUS_WIN_STATUS_TPM_AUTH2FAIL: ::libc::c_uint = 3223912477;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BADTAG: ::libc::c_uint = 3223912478;
pub const MD_NTSTATUS_WIN_STATUS_TPM_IOERROR: ::libc::c_uint = 3223912479;
pub const MD_NTSTATUS_WIN_STATUS_TPM_ENCRYPT_ERROR: ::libc::c_uint =
    3223912480;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DECRYPT_ERROR: ::libc::c_uint =
    3223912481;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INVALID_AUTHHANDLE: ::libc::c_uint =
    3223912482;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NO_ENDORSEMENT: ::libc::c_uint =
    3223912483;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INVALID_KEYUSAGE: ::libc::c_uint =
    3223912484;
pub const MD_NTSTATUS_WIN_STATUS_TPM_WRONG_ENTITYTYPE: ::libc::c_uint =
    3223912485;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INVALID_POSTINIT: ::libc::c_uint =
    3223912486;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INAPPROPRIATE_SIG: ::libc::c_uint =
    3223912487;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_KEY_PROPERTY: ::libc::c_uint =
    3223912488;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_MIGRATION: ::libc::c_uint =
    3223912489;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_SCHEME: ::libc::c_uint = 3223912490;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_DATASIZE: ::libc::c_uint =
    3223912491;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_MODE: ::libc::c_uint = 3223912492;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_PRESENCE: ::libc::c_uint =
    3223912493;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_VERSION: ::libc::c_uint = 3223912494;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NO_WRAP_TRANSPORT: ::libc::c_uint =
    3223912495;
pub const MD_NTSTATUS_WIN_STATUS_TPM_AUDITFAIL_UNSUCCESSFUL: ::libc::c_uint =
    3223912496;
pub const MD_NTSTATUS_WIN_STATUS_TPM_AUDITFAIL_SUCCESSFUL: ::libc::c_uint =
    3223912497;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOTRESETABLE: ::libc::c_uint =
    3223912498;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOTLOCAL: ::libc::c_uint = 3223912499;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_TYPE: ::libc::c_uint = 3223912500;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INVALID_RESOURCE: ::libc::c_uint =
    3223912501;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOTFIPS: ::libc::c_uint = 3223912502;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INVALID_FAMILY: ::libc::c_uint =
    3223912503;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NO_NV_PERMISSION: ::libc::c_uint =
    3223912504;
pub const MD_NTSTATUS_WIN_STATUS_TPM_REQUIRES_SIGN: ::libc::c_uint =
    3223912505;
pub const MD_NTSTATUS_WIN_STATUS_TPM_KEY_NOTSUPPORTED: ::libc::c_uint =
    3223912506;
pub const MD_NTSTATUS_WIN_STATUS_TPM_AUTH_CONFLICT: ::libc::c_uint =
    3223912507;
pub const MD_NTSTATUS_WIN_STATUS_TPM_AREA_LOCKED: ::libc::c_uint = 3223912508;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_LOCALITY: ::libc::c_uint =
    3223912509;
pub const MD_NTSTATUS_WIN_STATUS_TPM_READ_ONLY: ::libc::c_uint = 3223912510;
pub const MD_NTSTATUS_WIN_STATUS_TPM_PER_NOWRITE: ::libc::c_uint = 3223912511;
pub const MD_NTSTATUS_WIN_STATUS_TPM_FAMILYCOUNT: ::libc::c_uint = 3223912512;
pub const MD_NTSTATUS_WIN_STATUS_TPM_WRITE_LOCKED: ::libc::c_uint =
    3223912513;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_ATTRIBUTES: ::libc::c_uint =
    3223912514;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INVALID_STRUCTURE: ::libc::c_uint =
    3223912515;
pub const MD_NTSTATUS_WIN_STATUS_TPM_KEY_OWNER_CONTROL: ::libc::c_uint =
    3223912516;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_COUNTER: ::libc::c_uint = 3223912517;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOT_FULLWRITE: ::libc::c_uint =
    3223912518;
pub const MD_NTSTATUS_WIN_STATUS_TPM_CONTEXT_GAP: ::libc::c_uint = 3223912519;
pub const MD_NTSTATUS_WIN_STATUS_TPM_MAXNVWRITES: ::libc::c_uint = 3223912520;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOOPERATOR: ::libc::c_uint = 3223912521;
pub const MD_NTSTATUS_WIN_STATUS_TPM_RESOURCEMISSING: ::libc::c_uint =
    3223912522;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DELEGATE_LOCK: ::libc::c_uint =
    3223912523;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DELEGATE_FAMILY: ::libc::c_uint =
    3223912524;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DELEGATE_ADMIN: ::libc::c_uint =
    3223912525;
pub const MD_NTSTATUS_WIN_STATUS_TPM_TRANSPORT_NOTEXCLUSIVE: ::libc::c_uint =
    3223912526;
pub const MD_NTSTATUS_WIN_STATUS_TPM_OWNER_CONTROL: ::libc::c_uint =
    3223912527;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DAA_RESOURCES: ::libc::c_uint =
    3223912528;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DAA_INPUT_DATA0: ::libc::c_uint =
    3223912529;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DAA_INPUT_DATA1: ::libc::c_uint =
    3223912530;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DAA_ISSUER_SETTINGS: ::libc::c_uint =
    3223912531;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DAA_TPM_SETTINGS: ::libc::c_uint =
    3223912532;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DAA_STAGE: ::libc::c_uint = 3223912533;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DAA_ISSUER_VALIDITY: ::libc::c_uint =
    3223912534;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DAA_WRONG_W: ::libc::c_uint = 3223912535;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_HANDLE: ::libc::c_uint = 3223912536;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_DELEGATE: ::libc::c_uint =
    3223912537;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BADCONTEXT: ::libc::c_uint = 3223912538;
pub const MD_NTSTATUS_WIN_STATUS_TPM_TOOMANYCONTEXTS: ::libc::c_uint =
    3223912539;
pub const MD_NTSTATUS_WIN_STATUS_TPM_MA_TICKET_SIGNATURE: ::libc::c_uint =
    3223912540;
pub const MD_NTSTATUS_WIN_STATUS_TPM_MA_DESTINATION: ::libc::c_uint =
    3223912541;
pub const MD_NTSTATUS_WIN_STATUS_TPM_MA_SOURCE: ::libc::c_uint = 3223912542;
pub const MD_NTSTATUS_WIN_STATUS_TPM_MA_AUTHORITY: ::libc::c_uint =
    3223912543;
pub const MD_NTSTATUS_WIN_STATUS_TPM_PERMANENTEK: ::libc::c_uint = 3223912545;
pub const MD_NTSTATUS_WIN_STATUS_TPM_BAD_SIGNATURE: ::libc::c_uint =
    3223912546;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOCONTEXTSPACE: ::libc::c_uint =
    3223912547;
pub const MD_NTSTATUS_WIN_STATUS_TPM_COMMAND_BLOCKED: ::libc::c_uint =
    3223913472;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INVALID_HANDLE: ::libc::c_uint =
    3223913473;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DUPLICATE_VHANDLE: ::libc::c_uint =
    3223913474;
pub const MD_NTSTATUS_WIN_STATUS_TPM_EMBEDDED_COMMAND_BLOCKED: ::libc::c_uint
          =
    3223913475;
pub const MD_NTSTATUS_WIN_STATUS_TPM_EMBEDDED_COMMAND_UNSUPPORTED:
          ::libc::c_uint =
    3223913476;
pub const MD_NTSTATUS_WIN_STATUS_TPM_RETRY: ::libc::c_uint = 3223914496;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NEEDS_SELFTEST: ::libc::c_uint =
    3223914497;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DOING_SELFTEST: ::libc::c_uint =
    3223914498;
pub const MD_NTSTATUS_WIN_STATUS_TPM_DEFEND_LOCK_RUNNING: ::libc::c_uint =
    3223914499;
pub const MD_NTSTATUS_WIN_STATUS_TPM_COMMAND_CANCELED: ::libc::c_uint =
    3223916545;
pub const MD_NTSTATUS_WIN_STATUS_TPM_TOO_MANY_CONTEXTS: ::libc::c_uint =
    3223916546;
pub const MD_NTSTATUS_WIN_STATUS_TPM_NOT_FOUND: ::libc::c_uint = 3223916547;
pub const MD_NTSTATUS_WIN_STATUS_TPM_ACCESS_DENIED: ::libc::c_uint =
    3223916548;
pub const MD_NTSTATUS_WIN_STATUS_TPM_INSUFFICIENT_BUFFER: ::libc::c_uint =
    3223916549;
pub const MD_NTSTATUS_WIN_STATUS_TPM_PPI_FUNCTION_UNSUPPORTED: ::libc::c_uint
          =
    3223916550;
pub const MD_NTSTATUS_WIN_STATUS_PCP_ERROR_MASK: ::libc::c_uint = 3223920640;
pub const MD_NTSTATUS_WIN_STATUS_PCP_DEVICE_NOT_READY: ::libc::c_uint =
    3223920641;
pub const MD_NTSTATUS_WIN_STATUS_PCP_INVALID_HANDLE: ::libc::c_uint =
    3223920642;
pub const MD_NTSTATUS_WIN_STATUS_PCP_INVALID_PARAMETER: ::libc::c_uint =
    3223920643;
pub const MD_NTSTATUS_WIN_STATUS_PCP_FLAG_NOT_SUPPORTED: ::libc::c_uint =
    3223920644;
pub const MD_NTSTATUS_WIN_STATUS_PCP_NOT_SUPPORTED: ::libc::c_uint =
    3223920645;
pub const MD_NTSTATUS_WIN_STATUS_PCP_BUFFER_TOO_SMALL: ::libc::c_uint =
    3223920646;
pub const MD_NTSTATUS_WIN_STATUS_PCP_INTERNAL_ERROR: ::libc::c_uint =
    3223920647;
pub const MD_NTSTATUS_WIN_STATUS_PCP_AUTHENTICATION_FAILED: ::libc::c_uint =
    3223920648;
pub const MD_NTSTATUS_WIN_STATUS_PCP_AUTHENTICATION_IGNORED: ::libc::c_uint =
    3223920649;
pub const MD_NTSTATUS_WIN_STATUS_PCP_POLICY_NOT_FOUND: ::libc::c_uint =
    3223920650;
pub const MD_NTSTATUS_WIN_STATUS_PCP_PROFILE_NOT_FOUND: ::libc::c_uint =
    3223920651;
pub const MD_NTSTATUS_WIN_STATUS_PCP_VALIDATION_FAILED: ::libc::c_uint =
    3223920652;
pub const MD_NTSTATUS_WIN_STATUS_PCP_DEVICE_NOT_FOUND: ::libc::c_uint =
    3223920653;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_HYPERCALL_CODE: ::libc::c_uint =
    3224698882;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_HYPERCALL_INPUT: ::libc::c_uint =
    3224698883;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_ALIGNMENT: ::libc::c_uint =
    3224698884;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_PARAMETER: ::libc::c_uint =
    3224698885;
pub const MD_NTSTATUS_WIN_STATUS_HV_ACCESS_DENIED: ::libc::c_uint =
    3224698886;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_PARTITION_STATE: ::libc::c_uint =
    3224698887;
pub const MD_NTSTATUS_WIN_STATUS_HV_OPERATION_DENIED: ::libc::c_uint =
    3224698888;
pub const MD_NTSTATUS_WIN_STATUS_HV_UNKNOWN_PROPERTY: ::libc::c_uint =
    3224698889;
pub const MD_NTSTATUS_WIN_STATUS_HV_PROPERTY_VALUE_OUT_OF_RANGE:
          ::libc::c_uint =
    3224698890;
pub const MD_NTSTATUS_WIN_STATUS_HV_INSUFFICIENT_MEMORY: ::libc::c_uint =
    3224698891;
pub const MD_NTSTATUS_WIN_STATUS_HV_PARTITION_TOO_DEEP: ::libc::c_uint =
    3224698892;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_PARTITION_ID: ::libc::c_uint =
    3224698893;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_VP_INDEX: ::libc::c_uint =
    3224698894;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_PORT_ID: ::libc::c_uint =
    3224698897;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_CONNECTION_ID: ::libc::c_uint =
    3224698898;
pub const MD_NTSTATUS_WIN_STATUS_HV_INSUFFICIENT_BUFFERS: ::libc::c_uint =
    3224698899;
pub const MD_NTSTATUS_WIN_STATUS_HV_NOT_ACKNOWLEDGED: ::libc::c_uint =
    3224698900;
pub const MD_NTSTATUS_WIN_STATUS_HV_ACKNOWLEDGED: ::libc::c_uint = 3224698902;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_SAVE_RESTORE_STATE: ::libc::c_uint
          =
    3224698903;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_SYNIC_STATE: ::libc::c_uint =
    3224698904;
pub const MD_NTSTATUS_WIN_STATUS_HV_OBJECT_IN_USE: ::libc::c_uint =
    3224698905;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_PROXIMITY_DOMAIN_INFO:
          ::libc::c_uint =
    3224698906;
pub const MD_NTSTATUS_WIN_STATUS_HV_NO_DATA: ::libc::c_uint = 3224698907;
pub const MD_NTSTATUS_WIN_STATUS_HV_INACTIVE: ::libc::c_uint = 3224698908;
pub const MD_NTSTATUS_WIN_STATUS_HV_NO_RESOURCES: ::libc::c_uint = 3224698909;
pub const MD_NTSTATUS_WIN_STATUS_HV_FEATURE_UNAVAILABLE: ::libc::c_uint =
    3224698910;
pub const MD_NTSTATUS_WIN_STATUS_HV_INSUFFICIENT_BUFFER: ::libc::c_uint =
    3224698931;
pub const MD_NTSTATUS_WIN_STATUS_HV_INSUFFICIENT_DEVICE_DOMAINS:
          ::libc::c_uint =
    3224698936;
pub const MD_NTSTATUS_WIN_STATUS_HV_INVALID_LP_INDEX: ::libc::c_uint =
    3224698945;
pub const MD_NTSTATUS_WIN_STATUS_HV_NOT_PRESENT: ::libc::c_uint = 3224702976;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_BAD_SPI: ::libc::c_uint = 3224764417;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_SA_LIFETIME_EXPIRED: ::libc::c_uint =
    3224764418;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_WRONG_SA: ::libc::c_uint = 3224764419;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_REPLAY_CHECK_FAILED: ::libc::c_uint =
    3224764420;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_INVALID_PACKET: ::libc::c_uint =
    3224764421;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_INTEGRITY_CHECK_FAILED: ::libc::c_uint
          =
    3224764422;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_CLEAR_TEXT_DROP: ::libc::c_uint =
    3224764423;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_AUTH_FIREWALL_DROP: ::libc::c_uint =
    3224764424;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_THROTTLE_DROP: ::libc::c_uint =
    3224764425;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_DOSP_BLOCK: ::libc::c_uint =
    3224797184;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_DOSP_RECEIVED_MULTICAST: ::libc::c_uint
          =
    3224797185;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_DOSP_INVALID_PACKET: ::libc::c_uint =
    3224797186;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_DOSP_STATE_LOOKUP_FAILED:
          ::libc::c_uint =
    3224797187;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_DOSP_MAX_ENTRIES: ::libc::c_uint =
    3224797188;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_DOSP_KEYMOD_NOT_ALLOWED: ::libc::c_uint
          =
    3224797189;
pub const MD_NTSTATUS_WIN_STATUS_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES:
          ::libc::c_uint =
    3224797190;
pub const MD_NTSTATUS_WIN_STATUS_VID_DUPLICATE_HANDLER: ::libc::c_uint =
    3224829953;
pub const MD_NTSTATUS_WIN_STATUS_VID_TOO_MANY_HANDLERS: ::libc::c_uint =
    3224829954;
pub const MD_NTSTATUS_WIN_STATUS_VID_QUEUE_FULL: ::libc::c_uint = 3224829955;
pub const MD_NTSTATUS_WIN_STATUS_VID_HANDLER_NOT_PRESENT: ::libc::c_uint =
    3224829956;
pub const MD_NTSTATUS_WIN_STATUS_VID_INVALID_OBJECT_NAME: ::libc::c_uint =
    3224829957;
pub const MD_NTSTATUS_WIN_STATUS_VID_PARTITION_NAME_TOO_LONG: ::libc::c_uint =
    3224829958;
pub const MD_NTSTATUS_WIN_STATUS_VID_MESSAGE_QUEUE_NAME_TOO_LONG:
          ::libc::c_uint =
    3224829959;
pub const MD_NTSTATUS_WIN_STATUS_VID_PARTITION_ALREADY_EXISTS: ::libc::c_uint
          =
    3224829960;
pub const MD_NTSTATUS_WIN_STATUS_VID_PARTITION_DOES_NOT_EXIST: ::libc::c_uint
          =
    3224829961;
pub const MD_NTSTATUS_WIN_STATUS_VID_PARTITION_NAME_NOT_FOUND: ::libc::c_uint
          =
    3224829962;
pub const MD_NTSTATUS_WIN_STATUS_VID_MESSAGE_QUEUE_ALREADY_EXISTS:
          ::libc::c_uint =
    3224829963;
pub const MD_NTSTATUS_WIN_STATUS_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT:
          ::libc::c_uint =
    3224829964;
pub const MD_NTSTATUS_WIN_STATUS_VID_MB_STILL_REFERENCED: ::libc::c_uint =
    3224829965;
pub const MD_NTSTATUS_WIN_STATUS_VID_CHILD_GPA_PAGE_SET_CORRUPTED:
          ::libc::c_uint =
    3224829966;
pub const MD_NTSTATUS_WIN_STATUS_VID_INVALID_NUMA_SETTINGS: ::libc::c_uint =
    3224829967;
pub const MD_NTSTATUS_WIN_STATUS_VID_INVALID_NUMA_NODE_INDEX: ::libc::c_uint =
    3224829968;
pub const MD_NTSTATUS_WIN_STATUS_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED:
          ::libc::c_uint =
    3224829969;
pub const MD_NTSTATUS_WIN_STATUS_VID_INVALID_MEMORY_BLOCK_HANDLE:
          ::libc::c_uint =
    3224829970;
pub const MD_NTSTATUS_WIN_STATUS_VID_PAGE_RANGE_OVERFLOW: ::libc::c_uint =
    3224829971;
pub const MD_NTSTATUS_WIN_STATUS_VID_INVALID_MESSAGE_QUEUE_HANDLE:
          ::libc::c_uint =
    3224829972;
pub const MD_NTSTATUS_WIN_STATUS_VID_INVALID_GPA_RANGE_HANDLE: ::libc::c_uint
          =
    3224829973;
pub const MD_NTSTATUS_WIN_STATUS_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE:
          ::libc::c_uint =
    3224829974;
pub const MD_NTSTATUS_WIN_STATUS_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED:
          ::libc::c_uint =
    3224829975;
pub const MD_NTSTATUS_WIN_STATUS_VID_INVALID_PPM_HANDLE: ::libc::c_uint =
    3224829976;
pub const MD_NTSTATUS_WIN_STATUS_VID_MBPS_ARE_LOCKED: ::libc::c_uint =
    3224829977;
pub const MD_NTSTATUS_WIN_STATUS_VID_MESSAGE_QUEUE_CLOSED: ::libc::c_uint =
    3224829978;
pub const MD_NTSTATUS_WIN_STATUS_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED:
          ::libc::c_uint =
    3224829979;
pub const MD_NTSTATUS_WIN_STATUS_VID_STOP_PENDING: ::libc::c_uint =
    3224829980;
pub const MD_NTSTATUS_WIN_STATUS_VID_INVALID_PROCESSOR_STATE: ::libc::c_uint =
    3224829981;
pub const MD_NTSTATUS_WIN_STATUS_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT:
          ::libc::c_uint =
    3224829982;
pub const MD_NTSTATUS_WIN_STATUS_VID_KM_INTERFACE_ALREADY_INITIALIZED:
          ::libc::c_uint =
    3224829983;
pub const MD_NTSTATUS_WIN_STATUS_VID_MB_PROPERTY_ALREADY_SET_RESET:
          ::libc::c_uint =
    3224829984;
pub const MD_NTSTATUS_WIN_STATUS_VID_MMIO_RANGE_DESTROYED: ::libc::c_uint =
    3224829985;
pub const MD_NTSTATUS_WIN_STATUS_VID_INVALID_CHILD_GPA_PAGE_SET:
          ::libc::c_uint =
    3224829986;
pub const MD_NTSTATUS_WIN_STATUS_VID_RESERVE_PAGE_SET_IS_BEING_USED:
          ::libc::c_uint =
    3224829987;
pub const MD_NTSTATUS_WIN_STATUS_VID_RESERVE_PAGE_SET_TOO_SMALL:
          ::libc::c_uint =
    3224829988;
pub const MD_NTSTATUS_WIN_STATUS_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE:
          ::libc::c_uint =
    3224829989;
pub const MD_NTSTATUS_WIN_STATUS_VID_MBP_COUNT_EXCEEDED_LIMIT: ::libc::c_uint
          =
    3224829990;
pub const MD_NTSTATUS_WIN_STATUS_VID_SAVED_STATE_CORRUPT: ::libc::c_uint =
    3224829991;
pub const MD_NTSTATUS_WIN_STATUS_VID_SAVED_STATE_UNRECOGNIZED_ITEM:
          ::libc::c_uint =
    3224829992;
pub const MD_NTSTATUS_WIN_STATUS_VID_SAVED_STATE_INCOMPATIBLE: ::libc::c_uint
          =
    3224829993;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DATABASE_FULL: ::libc::c_uint =
    3224895489;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_CONFIGURATION_CORRUPTED:
          ::libc::c_uint =
    3224895490;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC:
          ::libc::c_uint =
    3224895491;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_CONFIG_UPDATE_FAILED:
          ::libc::c_uint =
    3224895492;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME:
          ::libc::c_uint =
    3224895493;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_DUPLICATE: ::libc::c_uint =
    3224895494;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_DYNAMIC: ::libc::c_uint =
    3224895495;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_ID_INVALID: ::libc::c_uint =
    3224895496;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_INVALID: ::libc::c_uint =
    3224895497;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_LAST_VOTER: ::libc::c_uint =
    3224895498;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_LAYOUT_INVALID: ::libc::c_uint =
    3224895499;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS:
          ::libc::c_uint =
    3224895500;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED:
          ::libc::c_uint =
    3224895501;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL:
          ::libc::c_uint =
    3224895502;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS:
          ::libc::c_uint =
    3224895503;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS:
          ::libc::c_uint =
    3224895504;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_MISSING: ::libc::c_uint =
    3224895505;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_NOT_EMPTY: ::libc::c_uint =
    3224895506;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_NOT_ENOUGH_SPACE: ::libc::c_uint
          =
    3224895507;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_REVECTORING_FAILED:
          ::libc::c_uint =
    3224895508;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_SECTOR_SIZE_INVALID:
          ::libc::c_uint =
    3224895509;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_SET_NOT_CONTAINED: ::libc::c_uint
          =
    3224895510;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS:
          ::libc::c_uint =
    3224895511;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES:
          ::libc::c_uint =
    3224895512;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED:
          ::libc::c_uint =
    3224895513;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_EXTENT_ALREADY_USED: ::libc::c_uint =
    3224895514;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_EXTENT_NOT_CONTIGUOUS: ::libc::c_uint
          =
    3224895515;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION:
          ::libc::c_uint =
    3224895516;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED:
          ::libc::c_uint =
    3224895517;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION:
          ::libc::c_uint =
    3224895518;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH:
          ::libc::c_uint =
    3224895519;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED:
          ::libc::c_uint =
    3224895520;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_INTERLEAVE_LENGTH_INVALID:
          ::libc::c_uint =
    3224895521;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_MAXIMUM_REGISTERED_USERS:
          ::libc::c_uint =
    3224895522;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_MEMBER_IN_SYNC: ::libc::c_uint =
    3224895523;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_MEMBER_INDEX_DUPLICATE: ::libc::c_uint
          =
    3224895524;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_MEMBER_INDEX_INVALID: ::libc::c_uint =
    3224895525;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_MEMBER_MISSING: ::libc::c_uint =
    3224895526;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_MEMBER_NOT_DETACHED: ::libc::c_uint =
    3224895527;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_MEMBER_REGENERATING: ::libc::c_uint =
    3224895528;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_ALL_DISKS_FAILED: ::libc::c_uint =
    3224895529;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NO_REGISTERED_USERS: ::libc::c_uint =
    3224895530;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NO_SUCH_USER: ::libc::c_uint =
    3224895531;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NOTIFICATION_RESET: ::libc::c_uint =
    3224895532;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NUMBER_OF_MEMBERS_INVALID:
          ::libc::c_uint =
    3224895533;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NUMBER_OF_PLEXES_INVALID:
          ::libc::c_uint =
    3224895534;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_DUPLICATE: ::libc::c_uint =
    3224895535;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_ID_INVALID: ::libc::c_uint =
    3224895536;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_INVALID: ::libc::c_uint =
    3224895537;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_NAME_INVALID: ::libc::c_uint =
    3224895538;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_OFFLINE: ::libc::c_uint =
    3224895539;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_HAS_QUORUM: ::libc::c_uint =
    3224895540;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_WITHOUT_QUORUM: ::libc::c_uint =
    3224895541;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PARTITION_STYLE_INVALID:
          ::libc::c_uint =
    3224895542;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PARTITION_UPDATE_FAILED:
          ::libc::c_uint =
    3224895543;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_IN_SYNC: ::libc::c_uint =
    3224895544;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_INDEX_DUPLICATE: ::libc::c_uint =
    3224895545;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_INDEX_INVALID: ::libc::c_uint =
    3224895546;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_LAST_ACTIVE: ::libc::c_uint =
    3224895547;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_MISSING: ::libc::c_uint =
    3224895548;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_REGENERATING: ::libc::c_uint =
    3224895549;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_TYPE_INVALID: ::libc::c_uint =
    3224895550;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_NOT_RAID5: ::libc::c_uint =
    3224895551;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_NOT_SIMPLE: ::libc::c_uint =
    3224895552;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_STRUCTURE_SIZE_INVALID: ::libc::c_uint
          =
    3224895553;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS:
          ::libc::c_uint =
    3224895554;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_TRANSACTION_IN_PROGRESS:
          ::libc::c_uint =
    3224895555;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE:
          ::libc::c_uint =
    3224895556;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_VOLUME_CONTAINS_MISSING_DISK:
          ::libc::c_uint =
    3224895557;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_VOLUME_ID_INVALID: ::libc::c_uint =
    3224895558;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_VOLUME_LENGTH_INVALID: ::libc::c_uint
          =
    3224895559;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE:
          ::libc::c_uint =
    3224895560;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_VOLUME_NOT_MIRRORED: ::libc::c_uint =
    3224895561;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_VOLUME_NOT_RETAINED: ::libc::c_uint =
    3224895562;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_VOLUME_OFFLINE: ::libc::c_uint =
    3224895563;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_VOLUME_RETAINED: ::libc::c_uint =
    3224895564;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NUMBER_OF_EXTENTS_INVALID:
          ::libc::c_uint =
    3224895565;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_DIFFERENT_SECTOR_SIZE: ::libc::c_uint
          =
    3224895566;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_BAD_BOOT_DISK: ::libc::c_uint =
    3224895567;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_CONFIG_OFFLINE: ::libc::c_uint =
    3224895568;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_CONFIG_ONLINE: ::libc::c_uint =
    3224895569;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NOT_PRIMARY_PACK: ::libc::c_uint =
    3224895570;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PACK_LOG_UPDATE_FAILED: ::libc::c_uint
          =
    3224895571;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID:
          ::libc::c_uint =
    3224895572;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID:
          ::libc::c_uint =
    3224895573;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_VOLUME_MIRRORED: ::libc::c_uint =
    3224895574;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PLEX_NOT_SIMPLE_SPANNED:
          ::libc::c_uint =
    3224895575;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NO_VALID_LOG_COPIES: ::libc::c_uint =
    3224895576;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_PRIMARY_PACK_PRESENT: ::libc::c_uint =
    3224895577;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_NUMBER_OF_DISKS_INVALID:
          ::libc::c_uint =
    3224895578;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_MIRROR_NOT_SUPPORTED: ::libc::c_uint =
    3224895579;
pub const MD_NTSTATUS_WIN_STATUS_VOLMGR_RAID5_NOT_SUPPORTED: ::libc::c_uint =
    3224895580;
pub const MD_NTSTATUS_WIN_STATUS_BCD_TOO_MANY_ELEMENTS: ::libc::c_uint =
    3224961026;
pub const MD_NTSTATUS_WIN_STATUS_VHD_DRIVE_FOOTER_MISSING: ::libc::c_uint =
    3225026561;
pub const MD_NTSTATUS_WIN_STATUS_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH:
          ::libc::c_uint =
    3225026562;
pub const MD_NTSTATUS_WIN_STATUS_VHD_DRIVE_FOOTER_CORRUPT: ::libc::c_uint =
    3225026563;
pub const MD_NTSTATUS_WIN_STATUS_VHD_FORMAT_UNKNOWN: ::libc::c_uint =
    3225026564;
pub const MD_NTSTATUS_WIN_STATUS_VHD_FORMAT_UNSUPPORTED_VERSION:
          ::libc::c_uint =
    3225026565;
pub const MD_NTSTATUS_WIN_STATUS_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH:
          ::libc::c_uint =
    3225026566;
pub const MD_NTSTATUS_WIN_STATUS_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION:
          ::libc::c_uint =
    3225026567;
pub const MD_NTSTATUS_WIN_STATUS_VHD_SPARSE_HEADER_CORRUPT: ::libc::c_uint =
    3225026568;
pub const MD_NTSTATUS_WIN_STATUS_VHD_BLOCK_ALLOCATION_FAILURE: ::libc::c_uint
          =
    3225026569;
pub const MD_NTSTATUS_WIN_STATUS_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT:
          ::libc::c_uint =
    3225026570;
pub const MD_NTSTATUS_WIN_STATUS_VHD_INVALID_BLOCK_SIZE: ::libc::c_uint =
    3225026571;
pub const MD_NTSTATUS_WIN_STATUS_VHD_BITMAP_MISMATCH: ::libc::c_uint =
    3225026572;
pub const MD_NTSTATUS_WIN_STATUS_VHD_PARENT_VHD_NOT_FOUND: ::libc::c_uint =
    3225026573;
pub const MD_NTSTATUS_WIN_STATUS_VHD_CHILD_PARENT_ID_MISMATCH: ::libc::c_uint
          =
    3225026574;
pub const MD_NTSTATUS_WIN_STATUS_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH:
          ::libc::c_uint =
    3225026575;
pub const MD_NTSTATUS_WIN_STATUS_VHD_METADATA_READ_FAILURE: ::libc::c_uint =
    3225026576;
pub const MD_NTSTATUS_WIN_STATUS_VHD_METADATA_WRITE_FAILURE: ::libc::c_uint =
    3225026577;
pub const MD_NTSTATUS_WIN_STATUS_VHD_INVALID_SIZE: ::libc::c_uint =
    3225026578;
pub const MD_NTSTATUS_WIN_STATUS_VHD_INVALID_FILE_SIZE: ::libc::c_uint =
    3225026579;
pub const MD_NTSTATUS_WIN_STATUS_VIRTDISK_PROVIDER_NOT_FOUND: ::libc::c_uint =
    3225026580;
pub const MD_NTSTATUS_WIN_STATUS_VIRTDISK_NOT_VIRTUAL_DISK: ::libc::c_uint =
    3225026581;
pub const MD_NTSTATUS_WIN_STATUS_VHD_PARENT_VHD_ACCESS_DENIED: ::libc::c_uint
          =
    3225026582;
pub const MD_NTSTATUS_WIN_STATUS_VHD_CHILD_PARENT_SIZE_MISMATCH:
          ::libc::c_uint =
    3225026583;
pub const MD_NTSTATUS_WIN_STATUS_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED:
          ::libc::c_uint =
    3225026584;
pub const MD_NTSTATUS_WIN_STATUS_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT:
          ::libc::c_uint =
    3225026585;
pub const MD_NTSTATUS_WIN_STATUS_VIRTUAL_DISK_LIMITATION: ::libc::c_uint =
    3225026586;
pub const MD_NTSTATUS_WIN_STATUS_VHD_INVALID_TYPE: ::libc::c_uint =
    3225026587;
pub const MD_NTSTATUS_WIN_STATUS_VHD_INVALID_STATE: ::libc::c_uint =
    3225026588;
pub const MD_NTSTATUS_WIN_STATUS_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE:
          ::libc::c_uint =
    3225026589;
pub const MD_NTSTATUS_WIN_STATUS_VIRTDISK_DISK_ALREADY_OWNED: ::libc::c_uint =
    3225026590;
pub const MD_NTSTATUS_WIN_STATUS_VIRTDISK_DISK_ONLINE_AND_WRITABLE:
          ::libc::c_uint =
    3225026591;
pub const MD_NTSTATUS_WIN_STATUS_CTLOG_TRACKING_NOT_INITIALIZED:
          ::libc::c_uint =
    3225026592;
pub const MD_NTSTATUS_WIN_STATUS_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE:
          ::libc::c_uint =
    3225026593;
pub const MD_NTSTATUS_WIN_STATUS_CTLOG_VHD_CHANGED_OFFLINE: ::libc::c_uint =
    3225026594;
pub const MD_NTSTATUS_WIN_STATUS_CTLOG_INVALID_TRACKING_STATE: ::libc::c_uint
          =
    3225026595;
pub const MD_NTSTATUS_WIN_STATUS_CTLOG_INCONSISTENT_TRACKING_FILE:
          ::libc::c_uint =
    3225026596;
pub const MD_NTSTATUS_WIN_STATUS_VHD_METADATA_FULL: ::libc::c_uint =
    3225026600;
pub const MD_NTSTATUS_WIN_STATUS_RKF_KEY_NOT_FOUND: ::libc::c_uint =
    3225419777;
pub const MD_NTSTATUS_WIN_STATUS_RKF_DUPLICATE_KEY: ::libc::c_uint =
    3225419778;
pub const MD_NTSTATUS_WIN_STATUS_RKF_BLOB_FULL: ::libc::c_uint = 3225419779;
pub const MD_NTSTATUS_WIN_STATUS_RKF_STORE_FULL: ::libc::c_uint = 3225419780;
pub const MD_NTSTATUS_WIN_STATUS_RKF_FILE_BLOCKED: ::libc::c_uint =
    3225419781;
pub const MD_NTSTATUS_WIN_STATUS_RKF_ACTIVE_KEY: ::libc::c_uint = 3225419782;
pub const MD_NTSTATUS_WIN_STATUS_RDBSS_RESTART_OPERATION: ::libc::c_uint =
    3225485313;
pub const MD_NTSTATUS_WIN_STATUS_RDBSS_CONTINUE_OPERATION: ::libc::c_uint =
    3225485314;
pub const MD_NTSTATUS_WIN_STATUS_RDBSS_POST_OPERATION: ::libc::c_uint =
    3225485315;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_INVALID_HANDLE: ::libc::c_uint =
    3225550849;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_READ_NOT_PERMITTED: ::libc::c_uint =
    3225550850;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_WRITE_NOT_PERMITTED: ::libc::c_uint =
    3225550851;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_INVALID_PDU: ::libc::c_uint =
    3225550852;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_INSUFFICIENT_AUTHENTICATION:
          ::libc::c_uint =
    3225550853;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_REQUEST_NOT_SUPPORTED: ::libc::c_uint
          =
    3225550854;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_INVALID_OFFSET: ::libc::c_uint =
    3225550855;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_INSUFFICIENT_AUTHORIZATION:
          ::libc::c_uint =
    3225550856;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_PREPARE_QUEUE_FULL: ::libc::c_uint =
    3225550857;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_ATTRIBUTE_NOT_FOUND: ::libc::c_uint =
    3225550858;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_ATTRIBUTE_NOT_LONG: ::libc::c_uint =
    3225550859;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE:
          ::libc::c_uint =
    3225550860;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH:
          ::libc::c_uint =
    3225550861;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_UNLIKELY: ::libc::c_uint =
    3225550862;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION:
          ::libc::c_uint =
    3225550863;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_UNSUPPORTED_GROUP_TYPE:
          ::libc::c_uint =
    3225550864;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_INSUFFICIENT_RESOURCES:
          ::libc::c_uint =
    3225550865;
pub const MD_NTSTATUS_WIN_STATUS_BTH_ATT_UNKNOWN_ERROR: ::libc::c_uint =
    3225554944;
pub const MD_NTSTATUS_WIN_STATUS_SECUREBOOT_ROLLBACK_DETECTED: ::libc::c_uint
          =
    3225616385;
pub const MD_NTSTATUS_WIN_STATUS_SECUREBOOT_POLICY_VIOLATION: ::libc::c_uint =
    3225616386;
pub const MD_NTSTATUS_WIN_STATUS_SECUREBOOT_INVALID_POLICY: ::libc::c_uint =
    3225616387;
pub const MD_NTSTATUS_WIN_STATUS_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND:
          ::libc::c_uint =
    3225616388;
pub const MD_NTSTATUS_WIN_STATUS_SECUREBOOT_POLICY_NOT_SIGNED: ::libc::c_uint
          =
    3225616389;
pub const MD_NTSTATUS_WIN_STATUS_SECUREBOOT_FILE_REPLACED: ::libc::c_uint =
    3225616391;
pub const MD_NTSTATUS_WIN_STATUS_AUDIO_ENGINE_NODE_NOT_FOUND: ::libc::c_uint =
    3225681921;
pub const MD_NTSTATUS_WIN_STATUS_HDAUDIO_EMPTY_CONNECTION_LIST: ::libc::c_uint
          =
    3225681922;
pub const MD_NTSTATUS_WIN_STATUS_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED:
          ::libc::c_uint =
    3225681923;
pub const MD_NTSTATUS_WIN_STATUS_HDAUDIO_NO_LOGICAL_DEVICES_CREATED:
          ::libc::c_uint =
    3225681924;
pub const MD_NTSTATUS_WIN_STATUS_HDAUDIO_NULL_LINKED_LIST_ENTRY:
          ::libc::c_uint =
    3225681925;
pub const MD_NTSTATUS_WIN_STATUS_VOLSNAP_BOOTFILE_NOT_VALID: ::libc::c_uint =
    3226468355;
pub const MD_NTSTATUS_WIN_STATUS_IO_PREEMPTED: ::libc::c_uint = 3226533889;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_ERROR_STORED: ::libc::c_uint =
    3227254784;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_ERROR_NOT_AVAILABLE: ::libc::c_uint =
    3227320064;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_UNIT_ATTENTION_AVAILABLE:
          ::libc::c_uint =
    3227320065;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED:
          ::libc::c_uint =
    3227320066;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED:
          ::libc::c_uint =
    3227320067;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED:
          ::libc::c_uint =
    3227320068;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED:
          ::libc::c_uint =
    3227320069;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED:
          ::libc::c_uint =
    3227320070;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_RESERVATION_CONFLICT: ::libc::c_uint =
    3227320071;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_WRONG_FILE_TYPE: ::libc::c_uint =
    3227320072;
pub const MD_NTSTATUS_WIN_STATUS_SVHDX_VERSION_MISMATCH: ::libc::c_uint =
    3227320073;
pub const MD_NTSTATUS_WIN_STATUS_VHD_SHARED: ::libc::c_uint = 3227320074;
pub const MD_NTSTATUS_WIN_STATUS_SPACES_RESILIENCY_TYPE_INVALID:
          ::libc::c_uint =
    3236364291;
pub const MD_NTSTATUS_WIN_STATUS_SPACES_DRIVE_SECTOR_SIZE_INVALID:
          ::libc::c_uint =
    3236364292;
pub const MD_NTSTATUS_WIN_STATUS_SPACES_INTERLEAVE_LENGTH_INVALID:
          ::libc::c_uint =
    3236364297;
pub const MD_NTSTATUS_WIN_STATUS_SPACES_NUMBER_OF_COLUMNS_INVALID:
          ::libc::c_uint =
    3236364298;
pub const MD_NTSTATUS_WIN_STATUS_SPACES_NOT_ENOUGH_DRIVES: ::libc::c_uint =
    3236364299;
pub type MDNTStatusCodeWin = Enum_Unnamed47;
pub type Enum_Unnamed48 = ::libc::c_uint;
pub const MD_ACCESS_VIOLATION_WIN_READ: ::libc::c_uint = 0;
pub const MD_ACCESS_VIOLATION_WIN_WRITE: ::libc::c_uint = 1;
pub const MD_ACCESS_VIOLATION_WIN_EXEC: ::libc::c_uint = 8;
pub type MDAccessViolationTypeWin = Enum_Unnamed48;
pub type Enum_Unnamed49 = ::libc::c_uint;
pub const MD_IN_PAGE_ERROR_WIN_READ: ::libc::c_uint = 0;
pub const MD_IN_PAGE_ERROR_WIN_WRITE: ::libc::c_uint = 1;
pub const MD_IN_PAGE_ERROR_WIN_EXEC: ::libc::c_uint = 8;
pub type MDInPageErrorTypeWin = Enum_Unnamed49;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed50 {
    pub thread_id: uint32_t,
    pub __align: uint32_t,
    pub exception_record: MDException,
    pub thread_context: MDLocationDescriptor,
}
impl ::std::clone::Clone for Struct_Unnamed50 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed50 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawExceptionStream = Struct_Unnamed50;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Union_Unnamed51 {
    pub _bindgen_data_: [u64; 3usize],
}
impl Union_Unnamed51 {
    pub unsafe fn x86_cpu_info(&mut self) -> *mut Struct_Unnamed52 {
        let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_);
        ::std::mem::transmute(raw.offset(0))
    }
    pub unsafe fn arm_cpu_info(&mut self) -> *mut Struct_Unnamed53 {
        let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_);
        ::std::mem::transmute(raw.offset(0))
    }
    pub unsafe fn other_cpu_info(&mut self) -> *mut Struct_Unnamed54 {
        let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_);
        ::std::mem::transmute(raw.offset(0))
    }
}
impl ::std::clone::Clone for Union_Unnamed51 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Union_Unnamed51 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed52 {
    pub vendor_id: [uint32_t; 3usize],
    pub version_information: uint32_t,
    pub feature_information: uint32_t,
    pub amd_extended_cpu_features: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed52 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed52 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed53 {
    pub cpuid: uint32_t,
    pub elf_hwcaps: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed53 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed53 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed54 {
    pub processor_features: [uint64_t; 2usize],
}
impl ::std::clone::Clone for Struct_Unnamed54 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed54 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDCPUInformation = Union_Unnamed51;
pub type Enum_Unnamed55 = ::libc::c_uint;
pub const MD_CPU_ARM_ELF_HWCAP_SWP: ::libc::c_uint = 1;
pub const MD_CPU_ARM_ELF_HWCAP_HALF: ::libc::c_uint = 2;
pub const MD_CPU_ARM_ELF_HWCAP_THUMB: ::libc::c_uint = 4;
pub const MD_CPU_ARM_ELF_HWCAP_26BIT: ::libc::c_uint = 8;
pub const MD_CPU_ARM_ELF_HWCAP_FAST_MULT: ::libc::c_uint = 16;
pub const MD_CPU_ARM_ELF_HWCAP_FPA: ::libc::c_uint = 32;
pub const MD_CPU_ARM_ELF_HWCAP_VFP: ::libc::c_uint = 64;
pub const MD_CPU_ARM_ELF_HWCAP_EDSP: ::libc::c_uint = 128;
pub const MD_CPU_ARM_ELF_HWCAP_JAVA: ::libc::c_uint = 256;
pub const MD_CPU_ARM_ELF_HWCAP_IWMMXT: ::libc::c_uint = 512;
pub const MD_CPU_ARM_ELF_HWCAP_CRUNCH: ::libc::c_uint = 1024;
pub const MD_CPU_ARM_ELF_HWCAP_THUMBEE: ::libc::c_uint = 2048;
pub const MD_CPU_ARM_ELF_HWCAP_NEON: ::libc::c_uint = 4096;
pub const MD_CPU_ARM_ELF_HWCAP_VFPv3: ::libc::c_uint = 8192;
pub const MD_CPU_ARM_ELF_HWCAP_VFPv3D16: ::libc::c_uint = 16384;
pub const MD_CPU_ARM_ELF_HWCAP_TLS: ::libc::c_uint = 32768;
pub const MD_CPU_ARM_ELF_HWCAP_VFPv4: ::libc::c_uint = 65536;
pub const MD_CPU_ARM_ELF_HWCAP_IDIVA: ::libc::c_uint = 131072;
pub const MD_CPU_ARM_ELF_HWCAP_IDIVT: ::libc::c_uint = 262144;
pub type MDCPUInformationARMElfHwCaps = Enum_Unnamed55;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed56 {
    pub processor_architecture: uint16_t,
    pub processor_level: uint16_t,
    pub processor_revision: uint16_t,
    pub number_of_processors: uint8_t,
    pub product_type: uint8_t,
    pub major_version: uint32_t,
    pub minor_version: uint32_t,
    pub build_number: uint32_t,
    pub platform_id: uint32_t,
    pub csd_version_rva: MDRVA,
    pub suite_mask: uint16_t,
    pub reserved2: uint16_t,
    pub cpu: MDCPUInformation,
}
impl ::std::clone::Clone for Struct_Unnamed56 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed56 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawSystemInfo = Struct_Unnamed56;
pub type Enum_Unnamed57 = ::libc::c_uint;
pub const MD_CPU_ARCHITECTURE_X86: ::libc::c_uint = 0;
pub const MD_CPU_ARCHITECTURE_MIPS: ::libc::c_uint = 1;
pub const MD_CPU_ARCHITECTURE_ALPHA: ::libc::c_uint = 2;
pub const MD_CPU_ARCHITECTURE_PPC: ::libc::c_uint = 3;
pub const MD_CPU_ARCHITECTURE_SHX: ::libc::c_uint = 4;
pub const MD_CPU_ARCHITECTURE_ARM: ::libc::c_uint = 5;
pub const MD_CPU_ARCHITECTURE_IA64: ::libc::c_uint = 6;
pub const MD_CPU_ARCHITECTURE_ALPHA64: ::libc::c_uint = 7;
pub const MD_CPU_ARCHITECTURE_MSIL: ::libc::c_uint = 8;
pub const MD_CPU_ARCHITECTURE_AMD64: ::libc::c_uint = 9;
pub const MD_CPU_ARCHITECTURE_X86_WIN64: ::libc::c_uint = 10;
pub const MD_CPU_ARCHITECTURE_SPARC: ::libc::c_uint = 32769;
pub const MD_CPU_ARCHITECTURE_PPC64: ::libc::c_uint = 32770;
pub const MD_CPU_ARCHITECTURE_ARM64: ::libc::c_uint = 32771;
pub const MD_CPU_ARCHITECTURE_MIPS64: ::libc::c_uint = 32772;
pub const MD_CPU_ARCHITECTURE_UNKNOWN: ::libc::c_uint = 65535;
pub type MDCPUArchitecture = Enum_Unnamed57;
pub type Enum_Unnamed58 = ::libc::c_uint;
pub const MD_OS_WIN32S: ::libc::c_uint = 0;
pub const MD_OS_WIN32_WINDOWS: ::libc::c_uint = 1;
pub const MD_OS_WIN32_NT: ::libc::c_uint = 2;
pub const MD_OS_WIN32_CE: ::libc::c_uint = 3;
pub const MD_OS_UNIX: ::libc::c_uint = 32768;
pub const MD_OS_MAC_OS_X: ::libc::c_uint = 33025;
pub const MD_OS_IOS: ::libc::c_uint = 33026;
pub const MD_OS_LINUX: ::libc::c_uint = 33281;
pub const MD_OS_SOLARIS: ::libc::c_uint = 33282;
pub const MD_OS_ANDROID: ::libc::c_uint = 33283;
pub const MD_OS_PS3: ::libc::c_uint = 33284;
pub const MD_OS_NACL: ::libc::c_uint = 33285;
pub type MDOSPlatform = Enum_Unnamed58;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed59 {
    pub year: uint16_t,
    pub month: uint16_t,
    pub day_of_week: uint16_t,
    pub day: uint16_t,
    pub hour: uint16_t,
    pub minute: uint16_t,
    pub second: uint16_t,
    pub milliseconds: uint16_t,
}
impl ::std::clone::Clone for Struct_Unnamed59 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed59 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDSystemTime = Struct_Unnamed59;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed60 {
    pub bias: int32_t,
    pub standard_name: [uint16_t; 32usize],
    pub standard_date: MDSystemTime,
    pub standard_bias: int32_t,
    pub daylight_name: [uint16_t; 32usize],
    pub daylight_date: MDSystemTime,
    pub daylight_bias: int32_t,
}
impl ::std::clone::Clone for Struct_Unnamed60 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed60 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDTimeZoneInformation = Struct_Unnamed60;
#[repr(C, packed)]
#[derive(Copy)]
pub struct MDRawMiscInfo {
    pub size_of_info: uint32_t,
    pub flags1: uint32_t,
    pub process_id: uint32_t,
    pub process_create_time: uint32_t,
    pub process_user_time: uint32_t,
    pub process_kernel_time: uint32_t,
    pub processor_max_mhz: uint32_t,
    pub processor_current_mhz: uint32_t,
    pub processor_mhz_limit: uint32_t,
    pub processor_max_idle_state: uint32_t,
    pub processor_current_idle_state: uint32_t,
    pub process_integrity_level: uint32_t,
    pub process_execute_flags: uint32_t,
    pub protected_process: uint32_t,
    pub time_zone_id: uint32_t,
    pub time_zone: MDTimeZoneInformation,
    pub build_string: [uint16_t; 260usize],
    pub dbg_bld_str: [uint16_t; 40usize],
}

impl ::std::clone::Clone for MDRawMiscInfo {
    fn clone(&self) -> Self { *self }
}

impl ::std::default::Default for MDRawMiscInfo {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}

pub type Enum_Unnamed62 = ::libc::c_uint;
pub const MD_MISCINFO_FLAGS1_PROCESS_ID: ::libc::c_uint = 1;
pub const MD_MISCINFO_FLAGS1_PROCESS_TIMES: ::libc::c_uint = 2;
pub const MD_MISCINFO_FLAGS1_PROCESSOR_POWER_INFO: ::libc::c_uint = 4;
pub const MD_MISCINFO_FLAGS1_PROCESS_INTEGRITY: ::libc::c_uint = 16;
pub const MD_MISCINFO_FLAGS1_PROCESS_EXECUTE_FLAGS: ::libc::c_uint = 32;
pub const MD_MISCINFO_FLAGS1_TIMEZONE: ::libc::c_uint = 64;
pub const MD_MISCINFO_FLAGS1_PROTECTED_PROCESS: ::libc::c_uint = 128;
pub const MD_MISCINFO_FLAGS1_BUILDSTRING: ::libc::c_uint = 256;
pub type MDMiscInfoFlags1 = Enum_Unnamed62;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed63 {
    pub size_of_header: uint32_t,
    pub size_of_entry: uint32_t,
    pub number_of_entries: uint64_t,
}
impl ::std::clone::Clone for Struct_Unnamed63 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed63 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawMemoryInfoList = Struct_Unnamed63;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed64 {
    pub base_address: uint64_t,
    pub allocation_base: uint64_t,
    pub allocation_protection: uint32_t,
    pub __alignment1: uint32_t,
    pub region_size: uint64_t,
    pub state: uint32_t,
    pub protection: uint32_t,
    pub _type: uint32_t,
    pub __alignment2: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed64 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed64 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawMemoryInfo = Struct_Unnamed64;
pub type Enum_Unnamed65 = ::libc::c_uint;
pub const MD_MEMORY_STATE_COMMIT: ::libc::c_uint = 4096;
pub const MD_MEMORY_STATE_RESERVE: ::libc::c_uint = 8192;
pub const MD_MEMORY_STATE_FREE: ::libc::c_uint = 65536;
pub type MDMemoryState = Enum_Unnamed65;
pub type Enum_Unnamed66 = ::libc::c_uint;
pub const MD_MEMORY_PROTECT_NOACCESS: ::libc::c_uint = 1;
pub const MD_MEMORY_PROTECT_READONLY: ::libc::c_uint = 2;
pub const MD_MEMORY_PROTECT_READWRITE: ::libc::c_uint = 4;
pub const MD_MEMORY_PROTECT_WRITECOPY: ::libc::c_uint = 8;
pub const MD_MEMORY_PROTECT_EXECUTE: ::libc::c_uint = 16;
pub const MD_MEMORY_PROTECT_EXECUTE_READ: ::libc::c_uint = 32;
pub const MD_MEMORY_PROTECT_EXECUTE_READWRITE: ::libc::c_uint = 64;
pub const MD_MEMORY_PROTECT_EXECUTE_WRITECOPY: ::libc::c_uint = 128;
pub const MD_MEMORY_PROTECT_GUARD: ::libc::c_uint = 256;
pub const MD_MEMORY_PROTECT_NOCACHE: ::libc::c_uint = 512;
pub const MD_MEMORY_PROTECT_WRITECOMBINE: ::libc::c_uint = 1024;
pub type MDMemoryProtection = Enum_Unnamed66;
pub type Enum_Unnamed67 = ::libc::c_uint;
pub const MD_MEMORY_TYPE_PRIVATE: ::libc::c_uint = 131072;
pub const MD_MEMORY_TYPE_MAPPED: ::libc::c_uint = 262144;
pub const MD_MEMORY_TYPE_IMAGE: ::libc::c_uint = 16777216;
pub type MDMemoryType = Enum_Unnamed67;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed68 {
    pub validity: uint32_t,
    pub dump_thread_id: uint32_t,
    pub requesting_thread_id: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed68 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed68 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawBreakpadInfo = Struct_Unnamed68;
pub type Enum_Unnamed69 = ::libc::c_uint;
pub const MD_BREAKPAD_INFO_VALID_DUMP_THREAD_ID: ::libc::c_uint = 1;
pub const MD_BREAKPAD_INFO_VALID_REQUESTING_THREAD_ID: ::libc::c_uint = 2;
pub type MDBreakpadInfoValidity = Enum_Unnamed69;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed70 {
    pub expression: [uint16_t; 128usize],
    pub function: [uint16_t; 128usize],
    pub file: [uint16_t; 128usize],
    pub line: uint32_t,
    pub _type: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed70 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed70 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawAssertionInfo = Struct_Unnamed70;
pub type Enum_Unnamed71 = ::libc::c_uint;
pub const MD_ASSERTION_INFO_TYPE_UNKNOWN: ::libc::c_uint = 0;
pub const MD_ASSERTION_INFO_TYPE_INVALID_PARAMETER: ::libc::c_uint = 1;
pub const MD_ASSERTION_INFO_TYPE_PURE_VIRTUAL_CALL: ::libc::c_uint = 2;
pub type MDAssertionInfoData = Enum_Unnamed71;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed72 {
    pub addr: uint32_t,
    pub name: MDRVA,
    pub ld: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed72 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed72 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawLinkMap32 = Struct_Unnamed72;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed73 {
    pub version: uint32_t,
    pub map: MDRVA,
    pub dso_count: uint32_t,
    pub brk: uint32_t,
    pub ldbase: uint32_t,
    pub dynamic: uint32_t,
}
impl ::std::clone::Clone for Struct_Unnamed73 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed73 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawDebug32 = Struct_Unnamed73;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed74 {
    pub addr: uint64_t,
    pub name: MDRVA,
    pub ld: uint64_t,
}
impl ::std::clone::Clone for Struct_Unnamed74 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed74 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawLinkMap64 = Struct_Unnamed74;
#[repr(C, packed)]
#[derive(Copy)]
pub struct Struct_Unnamed75 {
    pub version: uint32_t,
    pub map: MDRVA,
    pub dso_count: uint32_t,
    pub brk: uint64_t,
    pub ldbase: uint64_t,
    pub dynamic: uint64_t,
}
impl ::std::clone::Clone for Struct_Unnamed75 {
    fn clone(&self) -> Self { *self }
}
impl ::std::default::Default for Struct_Unnamed75 {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type MDRawDebug64 = Struct_Unnamed75;
extern "C" {
    pub static MD_MEMORY_PROTECTION_ACCESS_MASK: uint32_t;
}
extern "C" {
    pub fn imaxabs(__n: intmax_t) -> intmax_t;
    pub fn imaxdiv(__numer: intmax_t, __denom: intmax_t) -> imaxdiv_t;
    pub fn strtoimax(__nptr: *const ::libc::c_char,
                     __endptr: *mut *mut ::libc::c_char,
                     __base: ::libc::c_int) -> intmax_t;
    pub fn strtoumax(__nptr: *const ::libc::c_char,
                     __endptr: *mut *mut ::libc::c_char,
                     __base: ::libc::c_int) -> uintmax_t;
    pub fn wcstoimax(__nptr: *const __gwchar_t,
                     __endptr: *mut *mut __gwchar_t, __base: ::libc::c_int)
     -> intmax_t;
    pub fn wcstoumax(__nptr: *const __gwchar_t,
                     __endptr: *mut *mut __gwchar_t, __base: ::libc::c_int)
     -> uintmax_t;
}