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
use crate*;
///The operation completed successfully.
pub const ERROR_SUCCESS: DWORD = 0x00000000;
///The operation completed successfully.
pub const NERR_Success: DWORD = 0x00000000;
///Incorrect function.
pub const ERROR_INVALID_FUNCTION: DWORD = 0x00000001;
///The system cannot find the file specified.
pub const ERROR_FILE_NOT_FOUND: DWORD = 0x00000002;
///The system cannot find the path specified.
pub const ERROR_PATH_NOT_FOUND: DWORD = 0x00000003;
///The system cannot open the file.
pub const ERROR_TOO_MANY_OPEN_FILES: DWORD = 0x00000004;
///Access is denied.
pub const ERROR_ACCESS_DENIED: DWORD = 0x00000005;
///The handle is invalid.
pub const ERROR_INVALID_HANDLE: DWORD = 0x00000006;
///The storage control blocks were destroyed.
pub const ERROR_ARENA_TRASHED: DWORD = 0x00000007;
///Not enough storage is available to process this command.
pub const ERROR_NOT_ENOUGH_MEMORY: DWORD = 0x00000008;
///The storage control block address is invalid.
pub const ERROR_INVALID_BLOCK: DWORD = 0x00000009;
///The environment is incorrect.
pub const ERROR_BAD_ENVIRONMENT: DWORD = 0x0000000A;
///An attempt was made to load a program with an incorrect format.
pub const ERROR_BAD_FORMAT: DWORD = 0x0000000B;
///The access code is invalid.
pub const ERROR_INVALID_ACCESS: DWORD = 0x0000000C;
///The data is invalid.
pub const ERROR_INVALID_DATA: DWORD = 0x0000000D;
///Not enough storage is available to complete this operation.
pub const ERROR_OUTOFMEMORY: DWORD = 0x0000000E;
///The system cannot find the drive specified.
pub const ERROR_INVALID_DRIVE: DWORD = 0x0000000F;
///The directory cannot be removed.
pub const ERROR_CURRENT_DIRECTORY: DWORD = 0x00000010;
///The system cannot move the file to a different disk drive.
pub const ERROR_NOT_SAME_DEVICE: DWORD = 0x00000011;
///There are no more files.
pub const ERROR_NO_MORE_FILES: DWORD = 0x00000012;
///The media is write-protected.
pub const ERROR_WRITE_PROTECT: DWORD = 0x00000013;
///The system cannot find the device specified.
pub const ERROR_BAD_UNIT: DWORD = 0x00000014;
///The device is not ready.
pub const ERROR_NOT_READY: DWORD = 0x00000015;
///The device does not recognize the command.
pub const ERROR_BAD_COMMAND: DWORD = 0x00000016;
///Data error (cyclic redundancy check).
pub const ERROR_CRC: DWORD = 0x00000017;
///The program issued a command but the command length is incorrect.
pub const ERROR_BAD_LENGTH: DWORD = 0x00000018;
///The drive cannot locate a specific area or track on the disk.
pub const ERROR_SEEK: DWORD = 0x00000019;
///The specified disk cannot be accessed.
pub const ERROR_NOT_DOS_DISK: DWORD = 0x0000001A;
///The drive cannot find the sector requested.
pub const ERROR_SECTOR_NOT_FOUND: DWORD = 0x0000001B;
///The printer is out of paper.
pub const ERROR_OUT_OF_PAPER: DWORD = 0x0000001C;
///The system cannot write to the specified device.
pub const ERROR_WRITE_FAULT: DWORD = 0x0000001D;
///The system cannot read from the specified device.
pub const ERROR_READ_FAULT: DWORD = 0x0000001E;
///A device attached to the system is not functioning.
pub const ERROR_GEN_FAILURE: DWORD = 0x0000001F;
///The process cannot access the file because it is being used by another process.
pub const ERROR_SHARING_VIOLATION: DWORD = 0x00000020;
///The process cannot access the file because another process has locked a portion of the file.
pub const ERROR_LOCK_VIOLATION: DWORD = 0x00000021;
///The wrong disk is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1.
pub const ERROR_WRONG_DISK: DWORD = 0x00000022;
///Too many files opened for sharing.
pub const ERROR_SHARING_BUFFER_EXCEEDED: DWORD = 0x00000024;
///Reached the end of the file.
pub const ERROR_HANDLE_EOF: DWORD = 0x00000026;
///The disk is full.
pub const ERROR_HANDLE_DISK_FULL: DWORD = 0x00000027;
///The request is not supported.
pub const ERROR_NOT_SUPPORTED: DWORD = 0x00000032;
///Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
pub const ERROR_REM_NOT_LIST: DWORD = 0x00000033;
///You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name, and then try again.
pub const ERROR_DUP_NAME: DWORD = 0x00000034;
///The network path was not found.
pub const ERROR_BAD_NETPATH: DWORD = 0x00000035;
///The network is busy.
pub const ERROR_NETWORK_BUSY: DWORD = 0x00000036;
///The specified network resource or device is no longer available.
pub const ERROR_DEV_NOT_EXIST: DWORD = 0x00000037;
///The network BIOS command limit has been reached.
pub const ERROR_TOO_MANY_CMDS: DWORD = 0x00000038;
///A network adapter hardware error occurred.
pub const ERROR_ADAP_HDW_ERR: DWORD = 0x00000039;
///The specified server cannot perform the requested operation.
pub const ERROR_BAD_NET_RESP: DWORD = 0x0000003A;
///An unexpected network error occurred.
pub const ERROR_UNEXP_NET_ERR: DWORD = 0x0000003B;
///The remote adapter is not compatible.
pub const ERROR_BAD_REM_ADAP: DWORD = 0x0000003C;
///The print queue is full.
pub const ERROR_PRINTQ_FULL: DWORD = 0x0000003D;
///Space to store the file waiting to be printed is not available on the server.
pub const ERROR_NO_SPOOL_SPACE: DWORD = 0x0000003E;
///Your file waiting to be printed was deleted.
pub const ERROR_PRINT_CANCELLED: DWORD = 0x0000003F;
///The specified network name is no longer available.
pub const ERROR_NETNAME_DELETED: DWORD = 0x00000040;
///Network access is denied.
pub const ERROR_NETWORK_ACCESS_DENIED: DWORD = 0x00000041;
///The network resource type is not correct.
pub const ERROR_BAD_DEV_TYPE: DWORD = 0x00000042;
///The network name cannot be found.
pub const ERROR_BAD_NET_NAME: DWORD = 0x00000043;
///The name limit for the local computer network adapter card was exceeded.
pub const ERROR_TOO_MANY_NAMES: DWORD = 0x00000044;
///The network BIOS session limit was exceeded.
pub const ERROR_TOO_MANY_SESS: DWORD = 0x00000045;
///The remote server has been paused or is in the process of being started.
pub const ERROR_SHARING_PAUSED: DWORD = 0x00000046;
///No more connections can be made to this remote computer at this time because the computer has accepted the maximum number of connections.
pub const ERROR_REQ_NOT_ACCEP: DWORD = 0x00000047;
///The specified printer or disk device has been paused.
pub const ERROR_REDIR_PAUSED: DWORD = 0x00000048;
///The file exists.
pub const ERROR_FILE_EXISTS: DWORD = 0x00000050;
///The directory or file cannot be created.
pub const ERROR_CANNOT_MAKE: DWORD = 0x00000052;
///Fail on INT 24.
pub const ERROR_FAIL_I24: DWORD = 0x00000053;
///Storage to process this request is not available.
pub const ERROR_OUT_OF_STRUCTURES: DWORD = 0x00000054;
///The local device name is already in use.
pub const ERROR_ALREADY_ASSIGNED: DWORD = 0x00000055;
///The specified network password is not correct.
pub const ERROR_INVALID_PASSWORD: DWORD = 0x00000056;
///The parameter is incorrect.
pub const ERROR_INVALID_PARAMETER: DWORD = 0x00000057;
///A write fault occurred on the network.
pub const ERROR_NET_WRITE_FAULT: DWORD = 0x00000058;
///The system cannot start another process at this time.
pub const ERROR_NO_PROC_SLOTS: DWORD = 0x00000059;
///Cannot create another system semaphore.
pub const ERROR_TOO_MANY_SEMAPHORES: DWORD = 0x00000064;
///The exclusive semaphore is owned by another process.
pub const ERROR_EXCL_SEM_ALREADY_OWNED: DWORD = 0x00000065;
///The semaphore is set and cannot be closed.
pub const ERROR_SEM_IS_SET: DWORD = 0x00000066;
///The semaphore cannot be set again.
pub const ERROR_TOO_MANY_SEM_REQUESTS: DWORD = 0x00000067;
///Cannot request exclusive semaphores at interrupt time.
pub const ERROR_INVALID_AT_INTERRUPT_TIME: DWORD = 0x00000068;
///The previous ownership of this semaphore has ended.
pub const ERROR_SEM_OWNER_DIED: DWORD = 0x00000069;
///Insert the disk for drive %1.
pub const ERROR_SEM_USER_LIMIT: DWORD = 0x0000006A;
///The program stopped because an alternate disk was not inserted.
pub const ERROR_DISK_CHANGE: DWORD = 0x0000006B;
///The disk is in use or locked by another process.
pub const ERROR_DRIVE_LOCKED: DWORD = 0x0000006C;
///The pipe has been ended.
pub const ERROR_BROKEN_PIPE: DWORD = 0x0000006D;
///The system cannot open the device or file specified.
pub const ERROR_OPEN_FAILED: DWORD = 0x0000006E;
///The file name is too long.
pub const ERROR_BUFFER_OVERFLOW: DWORD = 0x0000006F;
///There is not enough space on the disk.
pub const ERROR_DISK_FULL: DWORD = 0x00000070;
///No more internal file identifiers are available.
pub const ERROR_NO_MORE_SEARCH_HANDLES: DWORD = 0x00000071;
///The target internal file identifier is incorrect.
pub const ERROR_INVALID_TARGET_HANDLE: DWORD = 0x00000072;
///The Input Output Control (IOCTL) call made by the application program is not correct.
pub const ERROR_INVALID_CATEGORY: DWORD = 0x00000075;
///The verify-on-write switch parameter value is not correct.
pub const ERROR_INVALID_VERIFY_SWITCH: DWORD = 0x00000076;
///The system does not support the command requested.
pub const ERROR_BAD_DRIVER_LEVEL: DWORD = 0x00000077;
///This function is not supported on this system.
pub const ERROR_CALL_NOT_IMPLEMENTED: DWORD = 0x00000078;
///The semaphore time-out period has expired.
pub const ERROR_SEM_TIMEOUT: DWORD = 0x00000079;
///The data area passed to a system call is too small.
pub const ERROR_INSUFFICIENT_BUFFER: DWORD = 0x0000007A;
///The file name, directory name, or volume label syntax is incorrect.
pub const ERROR_INVALID_NAME: DWORD = 0x0000007B;
///The system call level is not correct.
pub const ERROR_INVALID_LEVEL: DWORD = 0x0000007C;
///The disk has no volume label.
pub const ERROR_NO_VOLUME_LABEL: DWORD = 0x0000007D;
///The specified module could not be found.
pub const ERROR_MOD_NOT_FOUND: DWORD = 0x0000007E;
///The specified procedure could not be found.
pub const ERROR_PROC_NOT_FOUND: DWORD = 0x0000007F;
///There are no child processes to wait for.
pub const ERROR_WAIT_NO_CHILDREN: DWORD = 0x00000080;
///The %1 application cannot be run in Win32 mode.
pub const ERROR_CHILD_NOT_COMPLETE: DWORD = 0x00000081;
///Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
pub const ERROR_DIRECT_ACCESS_HANDLE: DWORD = 0x00000082;
///An attempt was made to move the file pointer before the beginning of the file.
pub const ERROR_NEGATIVE_SEEK: DWORD = 0x00000083;
///The file pointer cannot be set on the specified device or file.
pub const ERROR_SEEK_ON_DEVICE: DWORD = 0x00000084;
///A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
pub const ERROR_IS_JOIN_TARGET: DWORD = 0x00000085;
///An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
pub const ERROR_IS_JOINED: DWORD = 0x00000086;
///An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
pub const ERROR_IS_SUBSTED: DWORD = 0x00000087;
///The system tried to delete the JOIN of a drive that is not joined.
pub const ERROR_NOT_JOINED: DWORD = 0x00000088;
///The system tried to delete the substitution of a drive that is not substituted.
pub const ERROR_NOT_SUBSTED: DWORD = 0x00000089;
///The system tried to join a drive to a directory on a joined drive.
pub const ERROR_JOIN_TO_JOIN: DWORD = 0x0000008A;
///The system tried to substitute a drive to a directory on a substituted drive.
pub const ERROR_SUBST_TO_SUBST: DWORD = 0x0000008B;
///The system tried to join a drive to a directory on a substituted drive.
pub const ERROR_JOIN_TO_SUBST: DWORD = 0x0000008C;
///The system tried to SUBST a drive to a directory on a joined drive.
pub const ERROR_SUBST_TO_JOIN: DWORD = 0x0000008D;
///The system cannot perform a JOIN or SUBST at this time.
pub const ERROR_BUSY_DRIVE: DWORD = 0x0000008E;
///The system cannot join or substitute a drive to or for a directory on the same drive.
pub const ERROR_SAME_DRIVE: DWORD = 0x0000008F;
///The directory is not a subdirectory of the root directory.
pub const ERROR_DIR_NOT_ROOT: DWORD = 0x00000090;
///The directory is not empty.
pub const ERROR_DIR_NOT_EMPTY: DWORD = 0x00000091;
///The path specified is being used in a substitute.
pub const ERROR_IS_SUBST_PATH: DWORD = 0x00000092;
///Not enough resources are available to process this command.
pub const ERROR_IS_JOIN_PATH: DWORD = 0x00000093;
///The path specified cannot be used at this time.
pub const ERROR_PATH_BUSY: DWORD = 0x00000094;
///An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
pub const ERROR_IS_SUBST_TARGET: DWORD = 0x00000095;
///System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
pub const ERROR_SYSTEM_TRACE: DWORD = 0x00000096;
///The number of specified semaphore events for DosMuxSemWait is not correct.
pub const ERROR_INVALID_EVENT_COUNT: DWORD = 0x00000097;
///DosMuxSemWait did not execute; too many semaphores are already set.
pub const ERROR_TOO_MANY_MUXWAITERS: DWORD = 0x00000098;
///The DosMuxSemWait list is not correct.
pub const ERROR_INVALID_LIST_FORMAT: DWORD = 0x00000099;
///The volume label you entered exceeds the label character limit of the destination file system.
pub const ERROR_LABEL_TOO_LONG: DWORD = 0x0000009A;
///Cannot create another thread.
pub const ERROR_TOO_MANY_TCBS: DWORD = 0x0000009B;
///The recipient process has refused the signal.
pub const ERROR_SIGNAL_REFUSED: DWORD = 0x0000009C;
///The segment is already discarded and cannot be locked.
pub const ERROR_DISCARDED: DWORD = 0x0000009D;
///The segment is already unlocked.
pub const ERROR_NOT_LOCKED: DWORD = 0x0000009E;
///The address for the thread ID is not correct.
pub const ERROR_BAD_THREADID_ADDR: DWORD = 0x0000009F;
///One or more arguments are not correct.
pub const ERROR_BAD_ARGUMENTS: DWORD = 0x000000A0;
///The specified path is invalid.
pub const ERROR_BAD_PATHNAME: DWORD = 0x000000A1;
///A signal is already pending.
pub const ERROR_SIGNAL_PENDING: DWORD = 0x000000A2;
///No more threads can be created in the system.
pub const ERROR_MAX_THRDS_REACHED: DWORD = 0x000000A4;
///Unable to lock a region of a file.
pub const ERROR_LOCK_FAILED: DWORD = 0x000000A7;
///The requested resource is in use.
pub const ERROR_BUSY: DWORD = 0x000000AA;
///A lock request was not outstanding for the supplied cancel region.
pub const ERROR_CANCEL_VIOLATION: DWORD = 0x000000AD;
///The file system does not support atomic changes to the lock type.
pub const ERROR_ATOMIC_LOCKS_NOT_SUPPORTED: DWORD = 0x000000AE;
///The system detected a segment number that was not correct.
pub const ERROR_INVALID_SEGMENT_NUMBER: DWORD = 0x000000B4;
///The operating system cannot run %1.
pub const ERROR_INVALID_ORDINAL: DWORD = 0x000000B6;
///Cannot create a file when that file already exists.
pub const ERROR_ALREADY_EXISTS: DWORD = 0x000000B7;
///The flag passed is not correct.
pub const ERROR_INVALID_FLAG_NUMBER: DWORD = 0x000000BA;
///The specified system semaphore name was not found.
pub const ERROR_SEM_NOT_FOUND: DWORD = 0x000000BB;
///The operating system cannot run %1.
pub const ERROR_INVALID_STARTING_CODESEG: DWORD = 0x000000BC;
///The operating system cannot run %1.
pub const ERROR_INVALID_STACKSEG: DWORD = 0x000000BD;
///The operating system cannot run %1.
pub const ERROR_INVALID_MODULETYPE: DWORD = 0x000000BE;
///Cannot run %1 in Win32 mode.
pub const ERROR_INVALID_EXE_SIGNATURE: DWORD = 0x000000BF;
///The operating system cannot run %1.
pub const ERROR_EXE_MARKED_INVALID: DWORD = 0x000000C0;
///%1 is not a valid Win32 application.
pub const ERROR_BAD_EXE_FORMAT: DWORD = 0x000000C1;
///The operating system cannot run %1.
pub const ERROR_ITERATED_DATA_EXCEEDS_64k: DWORD = 0x000000C2;
///The operating system cannot run %1.
pub const ERROR_INVALID_MINALLOCSIZE: DWORD = 0x000000C3;
///The operating system cannot run this application program.
pub const ERROR_DYNLINK_FROM_INVALID_RING: DWORD = 0x000000C4;
///The operating system is not presently configured to run this application.
pub const ERROR_IOPL_NOT_ENABLED: DWORD = 0x000000C5;
///The operating system cannot run %1.
pub const ERROR_INVALID_SEGDPL: DWORD = 0x000000C6;
///The operating system cannot run this application program.
pub const ERROR_AUTODATASEG_EXCEEDS_64k: DWORD = 0x000000C7;
///The code segment cannot be greater than or equal to 64 KB.
pub const ERROR_RING2SEG_MUST_BE_MOVABLE: DWORD = 0x000000C8;
///The operating system cannot run %1.
pub const ERROR_RELOC_CHAIN_XEEDS_SEGLIM: DWORD = 0x000000C9;
///The operating system cannot run %1.
pub const ERROR_INFLOOP_IN_RELOC_CHAIN: DWORD = 0x000000CA;
///The system could not find the environment option that was entered.
pub const ERROR_ENVVAR_NOT_FOUND: DWORD = 0x000000CB;
///No process in the command subtree has a signal handler.
pub const ERROR_NO_SIGNAL_SENT: DWORD = 0x000000CD;
///The file name or extension is too long.
pub const ERROR_FILENAME_EXCED_RANGE: DWORD = 0x000000CE;
///The ring 2 stack is in use.
pub const ERROR_RING2_STACK_IN_USE: DWORD = 0x000000CF;
///The asterisk (*) or question mark (?) global file name characters are entered incorrectly, or too many global file name characters are specified.
pub const ERROR_META_EXPANSION_TOO_LONG: DWORD = 0x000000D0;
///The signal being posted is not correct.
pub const ERROR_INVALID_SIGNAL_NUMBER: DWORD = 0x000000D1;
///The signal handler cannot be set.
pub const ERROR_THREAD_1_INACTIVE: DWORD = 0x000000D2;
///The segment is locked and cannot be reallocated.
pub const ERROR_LOCKED: DWORD = 0x000000D4;
///Too many dynamic-link modules are attached to this program or dynamic-link module.
pub const ERROR_TOO_MANY_MODULES: DWORD = 0x000000D6;
///Cannot nest calls to LoadModule.
pub const ERROR_NESTING_NOT_ALLOWED: DWORD = 0x000000D7;
///This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information to see whether you need an x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher.
pub const ERROR_EXE_MACHINE_TYPE_MISMATCH: DWORD = 0x000000D8;
///The image file %1 is signed, unable to modify.
pub const ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY: DWORD = 0x000000D9;
///The image file %1 is strong signed, unable to modify.
pub const ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY: DWORD = 0x000000DA;
///This file is checked out or locked for editing by another user.
pub const ERROR_FILE_CHECKED_OUT: DWORD = 0x000000DC;
///The file must be checked out before saving changes.
pub const ERROR_CHECKOUT_REQUIRED: DWORD = 0x000000DD;
///The file type being saved or retrieved has been blocked.
pub const ERROR_BAD_FILE_TYPE: DWORD = 0x000000DE;
///The file size exceeds the limit allowed and cannot be saved.
pub const ERROR_FILE_TOO_LARGE: DWORD = 0x000000DF;
///Access denied. Before opening files in this location, you must first browse to the website and select the option to sign in automatically.
pub const ERROR_FORMS_AUTH_REQUIRED: DWORD = 0x000000E0;
///Operation did not complete successfully because the file contains a virus.
pub const ERROR_VIRUS_INFECTED: DWORD = 0x000000E1;
///This file contains a virus and cannot be opened. Due to the nature of this virus, the file has been removed from this location.
pub const ERROR_VIRUS_DELETED: DWORD = 0x000000E2;
///The pipe is local.
pub const ERROR_PIPE_LOCAL: DWORD = 0x000000E5;
///The pipe state is invalid.
pub const ERROR_BAD_PIPE: DWORD = 0x000000E6;
///All pipe instances are busy.
pub const ERROR_PIPE_BUSY: DWORD = 0x000000E7;
///The pipe is being closed.
pub const ERROR_NO_DATA: DWORD = 0x000000E8;
///No process is on the other end of the pipe.
pub const ERROR_PIPE_NOT_CONNECTED: DWORD = 0x000000E9;
///More data is available.
pub const ERROR_MORE_DATA: DWORD = 0x000000EA;
///The session was canceled.
pub const ERROR_VC_DISCONNECTED: DWORD = 0x000000F0;
///The specified extended attribute name was invalid.
pub const ERROR_INVALID_EA_NAME: DWORD = 0x000000FE;
///The extended attributes are inconsistent.
pub const ERROR_EA_LIST_INCONSISTENT: DWORD = 0x000000FF;
///The wait operation timed out.
pub const WAIT_TIMEOUT: DWORD = 0x00000102;
///No more data is available.
pub const ERROR_NO_MORE_ITEMS: DWORD = 0x00000103;
///The copy functions cannot be used.
pub const ERROR_CANNOT_COPY: DWORD = 0x0000010A;
///The directory name is invalid.
pub const ERROR_DIRECTORY: DWORD = 0x0000010B;
///The extended attributes did not fit in the buffer.
pub const ERROR_EAS_DIDNT_FIT: DWORD = 0x00000113;
///The extended attribute file on the mounted file system is corrupt.
pub const ERROR_EA_FILE_CORRUPT: DWORD = 0x00000114;
///The extended attribute table file is full.
pub const ERROR_EA_TABLE_FULL: DWORD = 0x00000115;
///The specified extended attribute handle is invalid.
pub const ERROR_INVALID_EA_HANDLE: DWORD = 0x00000116;
///The mounted file system does not support extended attributes.
pub const ERROR_EAS_NOT_SUPPORTED: DWORD = 0x0000011A;
///Attempt to release mutex not owned by caller.
pub const ERROR_NOT_OWNER: DWORD = 0x00000120;
///Too many posts were made to a semaphore.
pub const ERROR_TOO_MANY_POSTS: DWORD = 0x0000012A;
///Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
pub const ERROR_PARTIAL_COPY: DWORD = 0x0000012B;
///The oplock request is denied.
pub const ERROR_OPLOCK_NOT_GRANTED: DWORD = 0x0000012C;
///An invalid oplock acknowledgment was received by the system.
pub const ERROR_INVALID_OPLOCK_PROTOCOL: DWORD = 0x0000012D;
///The volume is too fragmented to complete this operation.
pub const ERROR_DISK_TOO_FRAGMENTED: DWORD = 0x0000012E;
///The file cannot be opened because it is in the process of being deleted.
pub const ERROR_DELETE_PENDING: DWORD = 0x0000012F;
///The system cannot find message text for message number 0x%1 in the message file for %2.
pub const ERROR_MR_MID_NOT_FOUND: DWORD = 0x0000013D;
///The scope specified was not found.
pub const ERROR_SCOPE_NOT_FOUND: DWORD = 0x0000013E;
///No action was taken because a system reboot is required.
pub const ERROR_FAIL_NOACTION_REBOOT: DWORD = 0x0000015E;
///The shutdown operation failed.
pub const ERROR_FAIL_SHUTDOWN: DWORD = 0x0000015F;
///The restart operation failed.
pub const ERROR_FAIL_RESTART: DWORD = 0x00000160;
///The maximum number of sessions has been reached.
pub const ERROR_MAX_SESSIONS_REACHED: DWORD = 0x00000161;
///The thread is already in background processing mode.
pub const ERROR_THREAD_MODE_ALREADY_BACKGROUND: DWORD = 0x00000190;
///The thread is not in background processing mode.
pub const ERROR_THREAD_MODE_NOT_BACKGROUND: DWORD = 0x00000191;
///The process is already in background processing mode.
pub const ERROR_PROCESS_MODE_ALREADY_BACKGROUND: DWORD = 0x00000192;
///The process is not in background processing mode.
pub const ERROR_PROCESS_MODE_NOT_BACKGROUND: DWORD = 0x00000193;
///Attempt to access invalid address.
pub const ERROR_INVALID_ADDRESS: DWORD = 0x000001E7;
///User profile cannot be loaded.
pub const ERROR_USER_PROFILE_LOAD: DWORD = 0x000001F4;
///Arithmetic result exceeded 32 bits.
pub const ERROR_ARITHMETIC_OVERFLOW: DWORD = 0x00000216;
///There is a process on the other end of the pipe.
pub const ERROR_PIPE_CONNECTED: DWORD = 0x00000217;
///Waiting for a process to open the other end of the pipe.
pub const ERROR_PIPE_LISTENING: DWORD = 0x00000218;
///Application verifier has found an error in the current process.
pub const ERROR_VERIFIER_STOP: DWORD = 0x00000219;
///An error occurred in the ABIOS subsystem.
pub const ERROR_ABIOS_ERROR: DWORD = 0x0000021A;
///A warning occurred in the WX86 subsystem.
pub const ERROR_WX86_WARNING: DWORD = 0x0000021B;
///An error occurred in the WX86 subsystem.
pub const ERROR_WX86_ERROR: DWORD = 0x0000021C;
///An attempt was made to cancel or set a timer that has an associated asynchronous procedure call (APC) and the subject thread is not the thread that originally set the timer with an associated APC routine.
pub const ERROR_TIMER_NOT_CANCELED: DWORD = 0x0000021D;
///Unwind exception code.
pub const ERROR_UNWIND: DWORD = 0x0000021E;
///An invalid or unaligned stack was encountered during an unwind operation.
pub const ERROR_BAD_STACK: DWORD = 0x0000021F;
///An invalid unwind target was encountered during an unwind operation.
pub const ERROR_INVALID_UNWIND_TARGET: DWORD = 0x00000220;
///Invalid object attributes specified to NtCreatePort or invalid port attributes specified to NtConnectPort.
pub const ERROR_INVALID_PORT_ATTRIBUTES: DWORD = 0x00000221;
///Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
pub const ERROR_PORT_MESSAGE_TOO_LONG: DWORD = 0x00000222;
///An attempt was made to lower a quota limit below the current usage.
pub const ERROR_INVALID_QUOTA_LOWER: DWORD = 0x00000223;
///An attempt was made to attach to a device that was already attached to another device.
pub const ERROR_DEVICE_ALREADY_ATTACHED: DWORD = 0x00000224;
///An attempt was made to execute an instruction at an unaligned address, and the host system does not support unaligned instruction references.
pub const ERROR_INSTRUCTION_MISALIGNMENT: DWORD = 0x00000225;
///Profiling not started.
pub const ERROR_PROFILING_NOT_STARTED: DWORD = 0x00000226;
///Profiling not stopped.
pub const ERROR_PROFILING_NOT_STOPPED: DWORD = 0x00000227;
///The passed ACL did not contain the minimum required information.
pub const ERROR_COULD_NOT_INTERPRET: DWORD = 0x00000228;
///The number of active profiling objects is at the maximum and no more can be started.
pub const ERROR_PROFILING_AT_LIMIT: DWORD = 0x00000229;
///Used to indicate that an operation cannot continue without blocking for I/O.
pub const ERROR_CANT_WAIT: DWORD = 0x0000022A;
///Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
pub const ERROR_CANT_TERMINATE_SELF: DWORD = 0x0000022B;
///If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception.
pub const ERROR_UNEXPECTED_MM_CREATE_ERR: DWORD = 0x0000022C;
///If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception.
pub const ERROR_UNEXPECTED_MM_MAP_ERROR: DWORD = 0x0000022D;
///If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception.
pub const ERROR_UNEXPECTED_MM_EXTEND_ERR: DWORD = 0x0000022E;
///A malformed function table was encountered during an unwind operation.
pub const ERROR_BAD_FUNCTION_TABLE: DWORD = 0x0000022F;
///Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which might cause a file creation attempt to fail.
pub const ERROR_NO_GUID_TRANSLATION: DWORD = 0x00000230;
///Indicates that an attempt was made to grow a local domain table (LDT) by setting its size, or that the size was not an even number of selectors.
pub const ERROR_INVALID_LDT_SIZE: DWORD = 0x00000231;
///Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
pub const ERROR_INVALID_LDT_OFFSET: DWORD = 0x00000233;
///Indicates that the user supplied an invalid descriptor when trying to set up LDT descriptors.
pub const ERROR_INVALID_LDT_DESCRIPTOR: DWORD = 0x00000234;
///Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token can be performed only when a process has zero or one threads.
pub const ERROR_TOO_MANY_THREADS: DWORD = 0x00000235;
///An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.
pub const ERROR_THREAD_NOT_IN_PROCESS: DWORD = 0x00000236;
///Page file quota was exceeded.
pub const ERROR_PAGEFILE_QUOTA_EXCEEDED: DWORD = 0x00000237;
///The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
pub const ERROR_LOGON_SERVER_CONFLICT: DWORD = 0x00000238;
///On applicable Windows Server releases, the Security Accounts Manager (SAM) database is significantly out of synchronization with the copy on the domain controller. A complete synchronization is required.
pub const ERROR_SYNCHRONIZATION_REQUIRED: DWORD = 0x00000239;
///The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows LAN Manager Redirector to use in its internal error mapping routines.
pub const ERROR_NET_OPEN_FAILED: DWORD = 0x0000023A;
///{Privilege Failed} The I/O permissions for the process could not be changed.
pub const ERROR_IO_PRIVILEGE_FAILED: DWORD = 0x0000023B;
///{Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.
pub const ERROR_CONTROL_C_EXIT: DWORD = 0x0000023C;
///{Missing System File} The required system file %hs is bad or missing.
pub const ERROR_MISSING_SYSTEMFILE: DWORD = 0x0000023D;
///{Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
pub const ERROR_UNHANDLED_EXCEPTION: DWORD = 0x0000023E;
///{Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application.
pub const ERROR_APP_INIT_FAILURE: DWORD = 0x0000023F;
///{Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.
pub const ERROR_PAGEFILE_CREATE_FAILED: DWORD = 0x00000240;
///The hash for the image cannot be found in the system catalogs. The image is likely corrupt or the victim of tampering.
pub const ERROR_INVALID_IMAGE_HASH: DWORD = 0x00000241;
///{No Paging File Specified} No paging file was specified in the system configuration.
pub const ERROR_NO_PAGEFILE: DWORD = 0x00000242;
///{EXCEPTION} A real-mode application issued a floating-point instruction, and floating-point hardware is not present.
pub const ERROR_ILLEGAL_FLOAT_CONTEXT: DWORD = 0x00000243;
///An event pair synchronization operation was performed using the thread-specific client/server event pair object, but no event pair object was associated with the thread.
pub const ERROR_NO_EVENT_PAIR: DWORD = 0x00000244;
///A domain server has an incorrect configuration.
pub const ERROR_DOMAIN_CTRLR_CONFIG_ERROR: DWORD = 0x00000245;
///An illegal character was encountered. For a multibyte character set, this includes a lead byte without a succeeding trail byte. For the Unicode character set, this includes the characters 0xFFFF and 0xFFFE.
pub const ERROR_ILLEGAL_CHARACTER: DWORD = 0x00000246;
///The Unicode character is not defined in the Unicode character set installed on the system.
pub const ERROR_UNDEFINED_CHARACTER: DWORD = 0x00000247;
///The paging file cannot be created on a floppy disk.
pub const ERROR_FLOPPY_VOLUME: DWORD = 0x00000248;
///The system bios failed to connect a system interrupt to the device or bus for which the device is connected.
pub const ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT: DWORD = 0x00000249;
///This operation is only allowed for the primary domain controller (PDC) of the domain.
pub const ERROR_BACKUP_CONTROLLER: DWORD = 0x0000024A;
///An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
pub const ERROR_MUTANT_LIMIT_EXCEEDED: DWORD = 0x0000024B;
///A volume has been accessed for which a file system driver is required that has not yet been loaded.
pub const ERROR_FS_DRIVER_REQUIRED: DWORD = 0x0000024C;
///{Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.
pub const ERROR_CANNOT_LOAD_REGISTRY_FILE: DWORD = 0x0000024D;
///{Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. Choosing OK will terminate the process, and choosing Cancel will ignore the error.
pub const ERROR_DEBUG_ATTACH_FAILED: DWORD = 0x0000024E;
///{Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down.
pub const ERROR_SYSTEM_PROCESS_TERMINATED: DWORD = 0x0000024F;
///{Data Not Accepted} The transport driver interface (TDI) client could not handle the data received during an indication.
pub const ERROR_DATA_NOT_ACCEPTED: DWORD = 0x00000250;
///The NT Virtual DOS Machine (NTVDM) encountered a hard error.
pub const ERROR_VDM_HARD_ERROR: DWORD = 0x00000251;
///{Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time.
pub const ERROR_DRIVER_CANCEL_TIMEOUT: DWORD = 0x00000252;
///{Reply Message Mismatch} An attempt was made to reply to a local procedure call (LPC) message, but the thread specified by the client ID in the message was not waiting on that message.
pub const ERROR_REPLY_MESSAGE_MISMATCH: DWORD = 0x00000253;
///{Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error might be caused by a failure of your computer hardware or network connection. Try to save this file elsewhere.
pub const ERROR_LOST_WRITEBEHIND_DATA: DWORD = 0x00000254;
///The parameters passed to the server in the client/server shared memory window were invalid. Too much data might have been put in the shared memory window.
pub const ERROR_CLIENT_SERVER_PARAMETERS_INVALID: DWORD = 0x00000255;
///The stream is not a tiny stream.
pub const ERROR_NOT_TINY_STREAM: DWORD = 0x00000256;
///The request must be handled by the stack overflow code.
pub const ERROR_STACK_OVERFLOW_READ: DWORD = 0x00000257;
///Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream.
pub const ERROR_CONVERT_TO_LARGE: DWORD = 0x00000258;
///The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.
pub const ERROR_FOUND_OUT_OF_SCOPE: DWORD = 0x00000259;
///The bucket array must be grown. Retry transaction after doing so.
pub const ERROR_ALLOCATE_BUCKET: DWORD = 0x0000025A;
///The user/kernel marshaling buffer has overflowed.
pub const ERROR_MARSHALL_OVERFLOW: DWORD = 0x0000025B;
///The supplied variant structure contains invalid data.
pub const ERROR_INVALID_VARIANT: DWORD = 0x0000025C;
///The specified buffer contains ill-formed data.
pub const ERROR_BAD_COMPRESSION_BUFFER: DWORD = 0x0000025D;
///{Audit Failed} An attempt to generate a security audit failed.
pub const ERROR_AUDIT_FAILED: DWORD = 0x0000025E;
///The timer resolution was not previously set by the current process.
pub const ERROR_TIMER_RESOLUTION_NOT_SET: DWORD = 0x0000025F;
///There is insufficient account information to log you on.
pub const ERROR_INSUFFICIENT_LOGON_INFO: DWORD = 0x00000260;
///{Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entry point should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO can cause the application to operate incorrectly.
pub const ERROR_BAD_DLL_ENTRYPOINT: DWORD = 0x00000261;
///{Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entry point should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process might operate incorrectly.
pub const ERROR_BAD_SERVICE_ENTRYPOINT: DWORD = 0x00000262;
///There is an IP address conflict with another system on the network.
pub const ERROR_IP_ADDRESS_CONFLICT1: DWORD = 0x00000263;
///There is an IP address conflict with another system on the network.
pub const ERROR_IP_ADDRESS_CONFLICT2: DWORD = 0x00000264;
///{Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.
pub const ERROR_REGISTRY_QUOTA_LIMIT: DWORD = 0x00000265;
///A callback return system service cannot be executed when no callback is active.
pub const ERROR_NO_CALLBACK_ACTIVE: DWORD = 0x00000266;
///The password provided is too short to meet the policy of your user account. Choose a longer password.
pub const ERROR_PWD_TOO_SHORT: DWORD = 0x00000267;
///The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised, contact your administrator immediately to have a new one assigned.
pub const ERROR_PWD_TOO_RECENT: DWORD = 0x00000268;
///You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Select a password that you have not previously used.
pub const ERROR_PWD_HISTORY_CONFLICT: DWORD = 0x00000269;
///The specified compression format is unsupported.
pub const ERROR_UNSUPPORTED_COMPRESSION: DWORD = 0x0000026A;
///The specified hardware profile configuration is invalid.
pub const ERROR_INVALID_HW_PROFILE: DWORD = 0x0000026B;
///The specified Plug and Play registry device path is invalid.
pub const ERROR_INVALID_PLUGPLAY_DEVICE_PATH: DWORD = 0x0000026C;
///The specified quota list is internally inconsistent with its descriptor.
pub const ERROR_QUOTA_LIST_INCONSISTENT: DWORD = 0x0000026D;
///{Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shut down in 1 hour. To restore access to this installation of Windows, upgrade this installation using a licensed distribution of this product.
pub const ERROR_EVALUATION_EXPIRATION: DWORD = 0x0000026E;
///{Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.
pub const ERROR_ILLEGAL_DLL_RELOCATION: DWORD = 0x0000026F;
///{DLL Initialization Failed} The application failed to initialize because the window station is shutting down.
pub const ERROR_DLL_INIT_FAILED_LOGOFF: DWORD = 0x00000270;
///The validation process needs to continue on to the next step.
pub const ERROR_VALIDATE_CONTINUE: DWORD = 0x00000271;
///There are no more matches for the current index enumeration.
pub const ERROR_NO_MORE_MATCHES: DWORD = 0x00000272;
///The range could not be added to the range list because of a conflict.
pub const ERROR_RANGE_LIST_CONFLICT: DWORD = 0x00000273;
///The server process is running under a SID different than that required by the client.
pub const ERROR_SERVER_SID_MISMATCH: DWORD = 0x00000274;
///A group marked use for deny only cannot be enabled.
pub const ERROR_CANT_ENABLE_DENY_ONLY: DWORD = 0x00000275;
///{EXCEPTION} Multiple floating point faults.
pub const ERROR_FLOAT_MULTIPLE_FAULTS: DWORD = 0x00000276;
///{EXCEPTION} Multiple floating point traps.
pub const ERROR_FLOAT_MULTIPLE_TRAPS: DWORD = 0x00000277;
///The requested interface is not supported.
pub const ERROR_NOINTERFACE: DWORD = 0x00000278;
///{System Standby Failed} The driver %hs does not support standby mode. Updating this driver might allow the system to go to standby mode.
pub const ERROR_DRIVER_FAILED_SLEEP: DWORD = 0x00000279;
///The system file %1 has become corrupt and has been replaced.
pub const ERROR_CORRUPT_SYSTEM_FILE: DWORD = 0x0000027A;
///{Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications might be denied. For more information, see Help.
pub const ERROR_COMMITMENT_MINIMUM: DWORD = 0x0000027B;
///A device was removed so enumeration must be restarted.
pub const ERROR_PNP_RESTART_ENUMERATION: DWORD = 0x0000027C;
///{Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down.
pub const ERROR_SYSTEM_IMAGE_BAD_SIGNATURE: DWORD = 0x0000027D;
///Device will not start without a reboot.
pub const ERROR_PNP_REBOOT_REQUIRED: DWORD = 0x0000027E;
///There is not enough power to complete the requested operation.
pub const ERROR_INSUFFICIENT_POWER: DWORD = 0x0000027F;
///The system is in the process of shutting down.
pub const ERROR_SYSTEM_SHUTDOWN: DWORD = 0x00000281;
///An attempt to remove a process DebugPort was made, but a port was not already associated with the process.
pub const ERROR_PORT_NOT_SET: DWORD = 0x00000282;
///This version of Windows is not compatible with the behavior version of directory forest, domain, or domain controller.
pub const ERROR_DS_VERSION_CHECK_FAILURE: DWORD = 0x00000283;
///The specified range could not be found in the range list.
pub const ERROR_RANGE_NOT_FOUND: DWORD = 0x00000284;
///The driver was not loaded because the system is booting into safe mode.
pub const ERROR_NOT_SAFE_MODE_DRIVER: DWORD = 0x00000286;
///The driver was not loaded because it failed its initialization call.
pub const ERROR_FAILED_DRIVER_ENTRY: DWORD = 0x00000287;
///The device encountered an error while applying power or reading the device configuration. This might be caused by a failure of your hardware or by a poor connection.
pub const ERROR_DEVICE_ENUMERATION_ERROR: DWORD = 0x00000288;
///The create operation failed because the name contained at least one mount point that resolves to a volume to which the specified device object is not attached.
pub const ERROR_MOUNT_POINT_NOT_RESOLVED: DWORD = 0x00000289;
///The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.
pub const ERROR_INVALID_DEVICE_OBJECT_PARAMETER: DWORD = 0x0000028A;
///A machine check error has occurred. Check the system event log for additional information.
pub const ERROR_MCA_OCCURED: DWORD = 0x0000028B;
///There was an error [%2] processing the driver database.
pub const ERROR_DRIVER_DATABASE_ERROR: DWORD = 0x0000028C;
///The system hive size has exceeded its limit.
pub const ERROR_SYSTEM_HIVE_TOO_LARGE: DWORD = 0x0000028D;
///The driver could not be loaded because a previous version of the driver is still in memory.
pub const ERROR_DRIVER_FAILED_PRIOR_UNLOAD: DWORD = 0x0000028E;
///{Volume Shadow Copy Service} Wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
pub const ERROR_VOLSNAP_PREPARE_HIBERNATE: DWORD = 0x0000028F;
///The system has failed to hibernate (the error code is %hs). Hibernation will be disabled until the system is restarted.
pub const ERROR_HIBERNATION_FAILURE: DWORD = 0x00000290;
///The requested operation could not be completed due to a file system limitation.
pub const ERROR_FILE_SYSTEM_LIMITATION: DWORD = 0x00000299;
///An assertion failure has occurred.
pub const ERROR_ASSERTION_FAILURE: DWORD = 0x0000029C;
///An error occurred in the Advanced Configuration and Power Interface (ACPI) subsystem.
pub const ERROR_ACPI_ERROR: DWORD = 0x0000029D;
///WOW assertion error.
pub const ERROR_WOW_ASSERTION: DWORD = 0x0000029E;
///A device is missing in the system BIOS MultiProcessor Specification (MPS) table. This device will not be used. Contact your system vendor for system BIOS update.
pub const ERROR_PNP_BAD_MPS_TABLE: DWORD = 0x0000029F;
///A translator failed to translate resources.
pub const ERROR_PNP_TRANSLATION_FAILED: DWORD = 0x000002A0;
///An interrupt request (IRQ) translator failed to translate resources.
pub const ERROR_PNP_IRQ_TRANSLATION_FAILED: DWORD = 0x000002A1;
///Driver %2 returned invalid ID for a child device (%3).
pub const ERROR_PNP_INVALID_ID: DWORD = 0x000002A2;
///{Kernel Debugger Awakened} the system debugger was awakened by an interrupt.
pub const ERROR_WAKE_SYSTEM_DEBUGGER: DWORD = 0x000002A3;
///{Handles Closed} Handles to objects have been automatically closed because of the requested operation.
pub const ERROR_HANDLES_CLOSED: DWORD = 0x000002A4;
///{Too Much Information} The specified ACL contained more information than was expected.
pub const ERROR_EXTRANEOUS_INFORMATION: DWORD = 0x000002A5;
///This warning level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted. The commit has NOT been completed, but it has not been rolled back either (so it can still be committed if desired).
pub const ERROR_RXACT_COMMIT_NECESSARY: DWORD = 0x000002A6;
///{Media Changed} The media might have changed.
pub const ERROR_MEDIA_CHECK: DWORD = 0x000002A7;
///{GUID Substitution} During the translation of a GUID to a Windows SID, no administratively defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this might provide more restrictive access than intended.
pub const ERROR_GUID_SUBSTITUTION_MADE: DWORD = 0x000002A8;
///The create operation stopped after reaching a symbolic link.
pub const ERROR_STOPPED_ON_SYMLINK: DWORD = 0x000002A9;
///A long jump has been executed.
pub const ERROR_LONGJUMP: DWORD = 0x000002AA;
///The Plug and Play query operation was not successful.
pub const ERROR_PLUGPLAY_QUERY_VETOED: DWORD = 0x000002AB;
///A frame consolidation has been executed.
pub const ERROR_UNWIND_CONSOLIDATE: DWORD = 0x000002AC;
///{Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.
pub const ERROR_REGISTRY_HIVE_RECOVERED: DWORD = 0x000002AD;
///The application is attempting to run executable code from the module %hs. This might be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?
pub const ERROR_DLL_MIGHT_BE_INSECURE: DWORD = 0x000002AE;
///The application is loading executable code from the module %hs. This is secure, but might be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?
pub const ERROR_DLL_MIGHT_BE_INCOMPATIBLE: DWORD = 0x000002AF;
///Debugger did not handle the exception.
pub const ERROR_DBG_EXCEPTION_NOT_HANDLED: DWORD = 0x000002B0;
///Debugger will reply later.
pub const ERROR_DBG_REPLY_LATER: DWORD = 0x000002B1;
///Debugger cannot provide handle.
pub const ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE: DWORD = 0x000002B2;
///Debugger terminated thread.
pub const ERROR_DBG_TERMINATE_THREAD: DWORD = 0x000002B3;
///Debugger terminated process.
pub const ERROR_DBG_TERMINATE_PROCESS: DWORD = 0x000002B4;
///Debugger got control C.
pub const ERROR_DBG_CONTROL_C: DWORD = 0x000002B5;
///Debugger printed exception on control C.
pub const ERROR_DBG_PRINTEXCEPTION_C: DWORD = 0x000002B6;
///Debugger received Routing Information Protocol (RIP) exception.
pub const ERROR_DBG_RIPEXCEPTION: DWORD = 0x000002B7;
///Debugger received control break.
pub const ERROR_DBG_CONTROL_BREAK: DWORD = 0x000002B8;
///Debugger command communication exception.
pub const ERROR_DBG_COMMAND_EXCEPTION: DWORD = 0x000002B9;
///{Object Exists} An attempt was made to create an object and the object name already existed.
pub const ERROR_OBJECT_NAME_EXISTS: DWORD = 0x000002BA;
///{Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed and termination proceeded.
pub const ERROR_THREAD_WAS_SUSPENDED: DWORD = 0x000002BB;
///{Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixes must be performed on this image.
pub const ERROR_IMAGE_NOT_AT_BASE: DWORD = 0x000002BC;
///This informational level status indicates that a specified registry subtree transaction state did not yet exist and had to be created.
pub const ERROR_RXACT_STATE_CREATED: DWORD = 0x000002BD;
///{Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload, or track symbols and breakpoints within these 16-bit segments.
pub const ERROR_SEGMENT_NOTIFICATION: DWORD = 0x000002BE;
///{Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit.
pub const ERROR_BAD_CURRENT_DIRECTORY: DWORD = 0x000002BF;
///{Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but it was unable to reassign the failing area of the device.
pub const ERROR_FT_READ_RECOVERY_FROM_BACKUP: DWORD = 0x000002C0;
///{Redundant Write} To satisfy a write request, the Windows NT operating system fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but it was not able to reassign the failing area of the device.
pub const ERROR_FT_WRITE_RECOVERY: DWORD = 0x000002C1;
///{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.
pub const ERROR_IMAGE_MACHINE_TYPE_MISMATCH: DWORD = 0x000002C2;
///{Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.
pub const ERROR_RECEIVE_PARTIAL: DWORD = 0x000002C3;
///{Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.
pub const ERROR_RECEIVE_EXPEDITED: DWORD = 0x000002C4;
///{Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later.
pub const ERROR_RECEIVE_PARTIAL_EXPEDITED: DWORD = 0x000002C5;
///{TDI Event Done} The TDI indication has completed successfully.
pub const ERROR_EVENT_DONE: DWORD = 0x000002C6;
///{TDI Event Pending} The TDI indication has entered the pending state.
pub const ERROR_EVENT_PENDING: DWORD = 0x000002C7;
///Checking file system on %wZ.
pub const ERROR_CHECKING_FILE_SYSTEM: DWORD = 0x000002C8;
///{Fatal Application Exit} %hs.
pub const ERROR_FATAL_APP_EXIT: DWORD = 0x000002C9;
///The specified registry key is referenced by a predefined handle.
pub const ERROR_PREDEFINED_HANDLE: DWORD = 0x000002CA;
///{Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.
pub const ERROR_WAS_UNLOCKED: DWORD = 0x000002CB;
///{Page Locked} One of the pages to lock was already locked.
pub const ERROR_WAS_LOCKED: DWORD = 0x000002CD;
///The value already corresponds with a Win 32 error code.
pub const ERROR_ALREADY_WIN32: DWORD = 0x000002CF;
///{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.
pub const ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE: DWORD = 0x000002D0;
///A yield execution was performed and no thread was available to run.
pub const ERROR_NO_YIELD_PERFORMED: DWORD = 0x000002D1;
///The resume flag to a timer API was ignored.
pub const ERROR_TIMER_RESUME_IGNORED: DWORD = 0x000002D2;
///The arbiter has deferred arbitration of these resources to its parent.
pub const ERROR_ARBITRATION_UNHANDLED: DWORD = 0x000002D3;
///The inserted CardBus device cannot be started because of a configuration error on %hs"."
pub const ERROR_CARDBUS_NOT_SUPPORTED: DWORD = 0x000002D4;
///The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. If problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.
pub const ERROR_MP_PROCESSOR_MISMATCH: DWORD = 0x000002D5;
///The system was put into hibernation.
pub const ERROR_HIBERNATED: DWORD = 0x000002D6;
///The system was resumed from hibernation.
pub const ERROR_RESUME_HIBERNATION: DWORD = 0x000002D7;
///Windows has detected that the system firmware (BIOS) was updated (previous firmware date = %2, current firmware date %3).
pub const ERROR_FIRMWARE_UPDATED: DWORD = 0x000002D8;
///A device driver is leaking locked I/O pages, causing system degradation. The system has automatically enabled a tracking code to try and catch the culprit.
pub const ERROR_DRIVERS_LEAKING_LOCKED_PAGES: DWORD = 0x000002D9;
///The system has awoken.
pub const ERROR_WAKE_SYSTEM: DWORD = 0x000002DA;
///The call failed because the handle associated with it was closed.
pub const ERROR_ABANDONED_WAIT_0: DWORD = 0x000002DF;
///The requested operation requires elevation.
pub const ERROR_ELEVATION_REQUIRED: DWORD = 0x000002E4;
///A reparse should be performed by the object manager because the name of the file resulted in a symbolic link.
pub const ERROR_REPARSE: DWORD = 0x000002E5;
///An open/create operation completed while an oplock break is underway.
pub const ERROR_OPLOCK_BREAK_IN_PROGRESS: DWORD = 0x000002E6;
///A new volume has been mounted by a file system.
pub const ERROR_VOLUME_MOUNTED: DWORD = 0x000002E7;
///This success level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted. The commit has now been completed.
pub const ERROR_RXACT_COMMITTED: DWORD = 0x000002E8;
///This indicates that a notify change request has been completed due to closing the handle which made the notify change request.
pub const ERROR_NOTIFY_CLEANUP: DWORD = 0x000002E9;
///{Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer was able to connect on a secondary transport.
pub const ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED: DWORD = 0x000002EA;
///Page fault was a transition fault.
pub const ERROR_PAGE_FAULT_TRANSITION: DWORD = 0x000002EB;
///Page fault was a demand zero fault.
pub const ERROR_PAGE_FAULT_DEMAND_ZERO: DWORD = 0x000002EC;
///Page fault was a demand zero fault.
pub const ERROR_PAGE_FAULT_COPY_ON_WRITE: DWORD = 0x000002ED;
///Page fault was a demand zero fault.
pub const ERROR_PAGE_FAULT_GUARD_PAGE: DWORD = 0x000002EE;
///Page fault was satisfied by reading from a secondary storage device.
pub const ERROR_PAGE_FAULT_PAGING_FILE: DWORD = 0x000002EF;
///Cached page was locked during operation.
pub const ERROR_CACHE_PAGE_LOCKED: DWORD = 0x000002F0;
///Crash dump exists in paging file.
pub const ERROR_CRASH_DUMP: DWORD = 0x000002F1;
///Specified buffer contains all zeros.
pub const ERROR_BUFFER_ALL_ZEROS: DWORD = 0x000002F2;
///A reparse should be performed by the object manager because the name of the file resulted in a symbolic link.
pub const ERROR_REPARSE_OBJECT: DWORD = 0x000002F3;
///The device has succeeded a query-stop and its resource requirements have changed.
pub const ERROR_RESOURCE_REQUIREMENTS_CHANGED: DWORD = 0x000002F4;
///The translator has translated these resources into the global space and no further translations should be performed.
pub const ERROR_TRANSLATION_COMPLETE: DWORD = 0x000002F5;
///A process being terminated has no threads to terminate.
pub const ERROR_NOTHING_TO_TERMINATE: DWORD = 0x000002F6;
///The specified process is not part of a job.
pub const ERROR_PROCESS_NOT_IN_JOB: DWORD = 0x000002F7;
///The specified process is part of a job.
pub const ERROR_PROCESS_IN_JOB: DWORD = 0x000002F8;
///{Volume Shadow Copy Service} The system is now ready for hibernation.
pub const ERROR_VOLSNAP_HIBERNATE_READY: DWORD = 0x000002F9;
///A file system or file system filter driver has successfully completed an FsFilter operation.
pub const ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY: DWORD = 0x000002FA;
///The specified interrupt vector was already connected.
pub const ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED: DWORD = 0x000002FB;
///The specified interrupt vector is still connected.
pub const ERROR_INTERRUPT_STILL_CONNECTED: DWORD = 0x000002FC;
///An operation is blocked waiting for an oplock.
pub const ERROR_WAIT_FOR_OPLOCK: DWORD = 0x000002FD;
///Debugger handled exception.
pub const ERROR_DBG_EXCEPTION_HANDLED: DWORD = 0x000002FE;
///Debugger continued.
pub const ERROR_DBG_CONTINUE: DWORD = 0x000002FF;
///An exception occurred in a user mode callback and the kernel callback frame should be removed.
pub const ERROR_CALLBACK_POP_STACK: DWORD = 0x00000300;
///Compression is disabled for this volume.
pub const ERROR_COMPRESSION_DISABLED: DWORD = 0x00000301;
///The data provider cannot fetch backward through a result set.
pub const ERROR_CANTFETCHBACKWARDS: DWORD = 0x00000302;
///The data provider cannot scroll backward through a result set.
pub const ERROR_CANTSCROLLBACKWARDS: DWORD = 0x00000303;
///The data provider requires that previously fetched data is released before asking for more data.
pub const ERROR_ROWSNOTRELEASED: DWORD = 0x00000304;
///The data provider was not able to interpret the flags set for a column binding in an accessor.
pub const ERROR_BAD_ACCESSOR_FLAGS: DWORD = 0x00000305;
///One or more errors occurred while processing the request.
pub const ERROR_ERRORS_ENCOUNTERED: DWORD = 0x00000306;
///The implementation is not capable of performing the request.
pub const ERROR_NOT_CAPABLE: DWORD = 0x00000307;
///The client of a component requested an operation that is not valid given the state of the component instance.
pub const ERROR_REQUEST_OUT_OF_SEQUENCE: DWORD = 0x00000308;
///A version number could not be parsed.
pub const ERROR_VERSION_PARSE_ERROR: DWORD = 0x00000309;
///The iterator's start position is invalid.
pub const ERROR_BADSTARTPOSITION: DWORD = 0x0000030A;
///The hardware has reported an uncorrectable memory error.
pub const ERROR_MEMORY_HARDWARE: DWORD = 0x0000030B;
///The attempted operation required self-healing to be enabled.
pub const ERROR_DISK_REPAIR_DISABLED: DWORD = 0x0000030C;
///The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.
pub const ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE: DWORD = 0x0000030D;
///The system power state is transitioning from %2 to %3.
pub const ERROR_SYSTEM_POWERSTATE_TRANSITION: DWORD = 0x0000030E;
///The system power state is transitioning from %2 to %3 but could enter %4.
pub const ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION: DWORD = 0x0000030F;
///A thread is getting dispatched with MCA EXCEPTION because of MCA.
pub const ERROR_MCA_EXCEPTION: DWORD = 0x00000310;
///Access to %1 is monitored by policy rule %2.
pub const ERROR_ACCESS_AUDIT_BY_POLICY: DWORD = 0x00000311;
///Access to %1 has been restricted by your administrator by policy rule %2.
pub const ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY: DWORD = 0x00000312;
///A valid hibernation file has been invalidated and should be abandoned.
pub const ERROR_ABANDON_HIBERFILE: DWORD = 0x00000313;
///{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error can be caused by network connectivity issues. Try to save this file elsewhere.
pub const ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED: DWORD = 0x00000314;
///{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Try to save this file elsewhere.
pub const ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR: DWORD = 0x00000315;
///{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error can be caused if the device has been removed or the media is write-protected.
pub const ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR: DWORD = 0x00000316;
///Access to the extended attribute was denied.
pub const ERROR_EA_ACCESS_DENIED: DWORD = 0x000003E2;
///The I/O operation has been aborted because of either a thread exit or an application request.
pub const ERROR_OPERATION_ABORTED: DWORD = 0x000003E3;
///Overlapped I/O event is not in a signaled state.
pub const ERROR_IO_INCOMPLETE: DWORD = 0x000003E4;
///Overlapped I/O operation is in progress.
pub const ERROR_IO_PENDING: DWORD = 0x000003E5;
///Invalid access to memory location.
pub const ERROR_NOACCESS: DWORD = 0x000003E6;
///Error performing in-page operation.
pub const ERROR_SWAPERROR: DWORD = 0x000003E7;
///Recursion too deep; the stack overflowed.
pub const ERROR_STACK_OVERFLOW: DWORD = 0x000003E9;
///The window cannot act on the sent message.
pub const ERROR_INVALID_MESSAGE: DWORD = 0x000003EA;
///Cannot complete this function.
pub const ERROR_CAN_NOT_COMPLETE: DWORD = 0x000003EB;
///Invalid flags.
pub const ERROR_INVALID_FLAGS: DWORD = 0x000003EC;
///The volume does not contain a recognized file system. Be sure that all required file system drivers are loaded and that the volume is not corrupted.
pub const ERROR_UNRECOGNIZED_VOLUME: DWORD = 0x000003ED;
///The volume for a file has been externally altered so that the opened file is no longer valid.
pub const ERROR_FILE_INVALID: DWORD = 0x000003EE;
///The requested operation cannot be performed in full-screen mode.
pub const ERROR_FULLSCREEN_MODE: DWORD = 0x000003EF;
///An attempt was made to reference a token that does not exist.
pub const ERROR_NO_TOKEN: DWORD = 0x000003F0;
///The configuration registry database is corrupt.
pub const ERROR_BADDB: DWORD = 0x000003F1;
///The configuration registry key is invalid.
pub const ERROR_BADKEY: DWORD = 0x000003F2;
///The configuration registry key could not be opened.
pub const ERROR_CANTOPEN: DWORD = 0x000003F3;
///The configuration registry key could not be read.
pub const ERROR_CANTREAD: DWORD = 0x000003F4;
///The configuration registry key could not be written.
pub const ERROR_CANTWRITE: DWORD = 0x000003F5;
///One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
pub const ERROR_REGISTRY_RECOVERED: DWORD = 0x000003F6;
///The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
pub const ERROR_REGISTRY_CORRUPT: DWORD = 0x000003F7;
///An I/O operation initiated by the registry failed and cannot be recovered. The registry could not read in, write out, or flush one of the files that contain the system's image of the registry.
pub const ERROR_REGISTRY_IO_FAILED: DWORD = 0x000003F8;
///The system attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
pub const ERROR_NOT_REGISTRY_FILE: DWORD = 0x000003F9;
///Illegal operation attempted on a registry key that has been marked for deletion.
pub const ERROR_KEY_DELETED: DWORD = 0x000003FA;
///System could not allocate the required space in a registry log.
pub const ERROR_NO_LOG_SPACE: DWORD = 0x000003FB;
///Cannot create a symbolic link in a registry key that already has subkeys or values.
pub const ERROR_KEY_HAS_CHILDREN: DWORD = 0x000003FC;
///Cannot create a stable subkey under a volatile parent key.
pub const ERROR_CHILD_MUST_BE_VOLATILE: DWORD = 0x000003FD;
///A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
pub const ERROR_NOTIFY_ENUM_DIR: DWORD = 0x000003FE;
///A stop control has been sent to a service that other running services are dependent on.
pub const ERROR_DEPENDENT_SERVICES_RUNNING: DWORD = 0x0000041B;
///The requested control is not valid for this service.
pub const ERROR_INVALID_SERVICE_CONTROL: DWORD = 0x0000041C;
///The service did not respond to the start or control request in a timely fashion.
pub const ERROR_SERVICE_REQUEST_TIMEOUT: DWORD = 0x0000041D;
///A thread could not be created for the service.
pub const ERROR_SERVICE_NO_THREAD: DWORD = 0x0000041E;
///The service database is locked.
pub const ERROR_SERVICE_DATABASE_LOCKED: DWORD = 0x0000041F;
///An instance of the service is already running.
pub const ERROR_SERVICE_ALREADY_RUNNING: DWORD = 0x00000420;
///The account name is invalid or does not exist, or the password is invalid for the account name specified.
pub const ERROR_INVALID_SERVICE_ACCOUNT: DWORD = 0x00000421;
///The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
pub const ERROR_SERVICE_DISABLED: DWORD = 0x00000422;
///Circular service dependency was specified.
pub const ERROR_CIRCULAR_DEPENDENCY: DWORD = 0x00000423;
///The specified service does not exist as an installed service.
pub const ERROR_SERVICE_DOES_NOT_EXIST: DWORD = 0x00000424;
///The service cannot accept control messages at this time.
pub const ERROR_SERVICE_CANNOT_ACCEPT_CTRL: DWORD = 0x00000425;
///The service has not been started.
pub const ERROR_SERVICE_NOT_ACTIVE: DWORD = 0x00000426;
///The service process could not connect to the service controller.
pub const ERROR_FAILED_SERVICE_CONTROLLER_CONNECT: DWORD = 0x00000427;
///An exception occurred in the service when handling the control request.
pub const ERROR_EXCEPTION_IN_SERVICE: DWORD = 0x00000428;
///The database specified does not exist.
pub const ERROR_DATABASE_DOES_NOT_EXIST: DWORD = 0x00000429;
///The service has returned a service-specific error code.
pub const ERROR_SERVICE_SPECIFIC_ERROR: DWORD = 0x0000042A;
///The process terminated unexpectedly.
pub const ERROR_PROCESS_ABORTED: DWORD = 0x0000042B;
///The dependency service or group failed to start.
pub const ERROR_SERVICE_DEPENDENCY_FAIL: DWORD = 0x0000042C;
///The service did not start due to a logon failure.
pub const ERROR_SERVICE_LOGON_FAILED: DWORD = 0x0000042D;
///After starting, the service stopped responding in a start-pending state.
pub const ERROR_SERVICE_START_HANG: DWORD = 0x0000042E;
///The specified service database lock is invalid.
pub const ERROR_INVALID_SERVICE_LOCK: DWORD = 0x0000042F;
///The specified service has been marked for deletion.
pub const ERROR_SERVICE_MARKED_FOR_DELETE: DWORD = 0x00000430;
///The specified service already exists.
pub const ERROR_SERVICE_EXISTS: DWORD = 0x00000431;
///The system is currently running with the last-known-good configuration.
pub const ERROR_ALREADY_RUNNING_LKG: DWORD = 0x00000432;
///The dependency service does not exist or has been marked for deletion.
pub const ERROR_SERVICE_DEPENDENCY_DELETED: DWORD = 0x00000433;
///The current boot has already been accepted for use as the last-known-good control set.
pub const ERROR_BOOT_ALREADY_ACCEPTED: DWORD = 0x00000434;
///No attempts to start the service have been made since the last boot.
pub const ERROR_SERVICE_NEVER_STARTED: DWORD = 0x00000435;
///The name is already in use as either a service name or a service display name.
pub const ERROR_DUPLICATE_SERVICE_NAME: DWORD = 0x00000436;
///The account specified for this service is different from the account specified for other services running in the same process.
pub const ERROR_DIFFERENT_SERVICE_ACCOUNT: DWORD = 0x00000437;
///Failure actions can only be set for Win32 services, not for drivers.
pub const ERROR_CANNOT_DETECT_DRIVER_FAILURE: DWORD = 0x00000438;
///This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
pub const ERROR_CANNOT_DETECT_PROCESS_ABORT: DWORD = 0x00000439;
///No recovery program has been configured for this service.
pub const ERROR_NO_RECOVERY_PROGRAM: DWORD = 0x0000043A;
///The executable program that this service is configured to run in does not implement the service.
pub const ERROR_SERVICE_NOT_IN_EXE: DWORD = 0x0000043B;
///This service cannot be started in Safe Mode.
pub const ERROR_NOT_SAFEBOOT_SERVICE: DWORD = 0x0000043C;
///The physical end of the tape has been reached.
pub const ERROR_END_OF_MEDIA: DWORD = 0x0000044C;
///A tape access reached a filemark.
pub const ERROR_FILEMARK_DETECTED: DWORD = 0x0000044D;
///The beginning of the tape or a partition was encountered.
pub const ERROR_BEGINNING_OF_MEDIA: DWORD = 0x0000044E;
///A tape access reached the end of a set of files.
pub const ERROR_SETMARK_DETECTED: DWORD = 0x0000044F;
///No more data is on the tape.
pub const ERROR_NO_DATA_DETECTED: DWORD = 0x00000450;
///Tape could not be partitioned.
pub const ERROR_PARTITION_FAILURE: DWORD = 0x00000451;
///When accessing a new tape of a multivolume partition, the current block size is incorrect.
pub const ERROR_INVALID_BLOCK_LENGTH: DWORD = 0x00000452;
///Tape partition information could not be found when loading a tape.
pub const ERROR_DEVICE_NOT_PARTITIONED: DWORD = 0x00000453;
///Unable to lock the media eject mechanism.
pub const ERROR_UNABLE_TO_LOCK_MEDIA: DWORD = 0x00000454;
///Unable to unload the media.
pub const ERROR_UNABLE_TO_UNLOAD_MEDIA: DWORD = 0x00000455;
///The media in the drive might have changed.
pub const ERROR_MEDIA_CHANGED: DWORD = 0x00000456;
///The I/O bus was reset.
pub const ERROR_BUS_RESET: DWORD = 0x00000457;
///No media in drive.
pub const ERROR_NO_MEDIA_IN_DRIVE: DWORD = 0x00000458;
///No mapping for the Unicode character exists in the target multibyte code page.
pub const ERROR_NO_UNICODE_TRANSLATION: DWORD = 0x00000459;
///A DLL initialization routine failed.
pub const ERROR_DLL_INIT_FAILED: DWORD = 0x0000045A;
///A system shutdown is in progress.
pub const ERROR_SHUTDOWN_IN_PROGRESS: DWORD = 0x0000045B;
///Unable to abort the system shutdown because no shutdown was in progress.
pub const ERROR_NO_SHUTDOWN_IN_PROGRESS: DWORD = 0x0000045C;
///The request could not be performed because of an I/O device error.
pub const ERROR_IO_DEVICE: DWORD = 0x0000045D;
///No serial device was successfully initialized. The serial driver will unload.
pub const ERROR_SERIAL_NO_DEVICE: DWORD = 0x0000045E;
///Unable to open a device that was sharing an IRQ with other devices. At least one other device that uses that IRQ was already opened.
pub const ERROR_IRQ_BUSY: DWORD = 0x0000045F;
///A serial I/O operation was completed by another write to the serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
pub const ERROR_MORE_WRITES: DWORD = 0x00000460;
///A serial I/O operation completed because the time-out period expired. (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
pub const ERROR_COUNTER_TIMEOUT: DWORD = 0x00000461;
///No ID address mark was found on the floppy disk.
pub const ERROR_FLOPPY_ID_MARK_NOT_FOUND: DWORD = 0x00000462;
///Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
pub const ERROR_FLOPPY_WRONG_CYLINDER: DWORD = 0x00000463;
///The floppy disk controller reported an error that is not recognized by the floppy disk driver.
pub const ERROR_FLOPPY_UNKNOWN_ERROR: DWORD = 0x00000464;
///The floppy disk controller returned inconsistent results in its registers.
pub const ERROR_FLOPPY_BAD_REGISTERS: DWORD = 0x00000465;
///While accessing the hard disk, a recalibrate operation failed, even after retries.
pub const ERROR_DISK_RECALIBRATE_FAILED: DWORD = 0x00000466;
///While accessing the hard disk, a disk operation failed even after retries.
pub const ERROR_DISK_OPERATION_FAILED: DWORD = 0x00000467;
///While accessing the hard disk, a disk controller reset was needed, but that also failed.
pub const ERROR_DISK_RESET_FAILED: DWORD = 0x00000468;
///Physical end of tape encountered.
pub const ERROR_EOM_OVERFLOW: DWORD = 0x00000469;
///Not enough server storage is available to process this command.
pub const ERROR_NOT_ENOUGH_SERVER_MEMORY: DWORD = 0x0000046A;
///A potential deadlock condition has been detected.
pub const ERROR_POSSIBLE_DEADLOCK: DWORD = 0x0000046B;
///The base address or the file offset specified does not have the proper alignment.
pub const ERROR_MAPPED_ALIGNMENT: DWORD = 0x0000046C;
///An attempt to change the system power state was vetoed by another application or driver.
pub const ERROR_SET_POWER_STATE_VETOED: DWORD = 0x00000474;
///The system BIOS failed an attempt to change the system power state.
pub const ERROR_SET_POWER_STATE_FAILED: DWORD = 0x00000475;
///An attempt was made to create more links on a file than the file system supports.
pub const ERROR_TOO_MANY_LINKS: DWORD = 0x00000476;
///The specified program requires a newer version of Windows.
pub const ERROR_OLD_WIN_VERSION: DWORD = 0x0000047E;
///The specified program is not a Windows or MS-DOS program.
pub const ERROR_APP_WRONG_OS: DWORD = 0x0000047F;
///Cannot start more than one instance of the specified program.
pub const ERROR_SINGLE_INSTANCE_APP: DWORD = 0x00000480;
///The specified program was written for an earlier version of Windows.
pub const ERROR_RMODE_APP: DWORD = 0x00000481;
///One of the library files needed to run this application is damaged.
pub const ERROR_INVALID_DLL: DWORD = 0x00000482;
///No application is associated with the specified file for this operation.
pub const ERROR_NO_ASSOCIATION: DWORD = 0x00000483;
///An error occurred in sending the command to the application.
pub const ERROR_DDE_FAIL: DWORD = 0x00000484;
///One of the library files needed to run this application cannot be found.
pub const ERROR_DLL_NOT_FOUND: DWORD = 0x00000485;
///The current process has used all of its system allowance of handles for Windows manager objects.
pub const ERROR_NO_MORE_USER_HANDLES: DWORD = 0x00000486;
///The message can be used only with synchronous operations.
pub const ERROR_MESSAGE_SYNC_ONLY: DWORD = 0x00000487;
///The indicated source element has no media.
pub const ERROR_SOURCE_ELEMENT_EMPTY: DWORD = 0x00000488;
///The indicated destination element already contains media.
pub const ERROR_DESTINATION_ELEMENT_FULL: DWORD = 0x00000489;
///The indicated element does not exist.
pub const ERROR_ILLEGAL_ELEMENT_ADDRESS: DWORD = 0x0000048A;
///The indicated element is part of a magazine that is not present.
pub const ERROR_MAGAZINE_NOT_PRESENT: DWORD = 0x0000048B;
///The indicated device requires re-initialization due to hardware errors.
pub const ERROR_DEVICE_REINITIALIZATION_NEEDED: DWORD = 0x0000048C;
///The device has indicated that cleaning is required before further operations are attempted.
pub const ERROR_DEVICE_REQUIRES_CLEANING: DWORD = 0x0000048D;
///The device has indicated that its door is open.
pub const ERROR_DEVICE_DOOR_OPEN: DWORD = 0x0000048E;
///The device is not connected.
pub const ERROR_DEVICE_NOT_CONNECTED: DWORD = 0x0000048F;
///Element not found.
pub const ERROR_NOT_FOUND: DWORD = 0x00000490;
///There was no match for the specified key in the index.
pub const ERROR_NO_MATCH: DWORD = 0x00000491;
///The property set specified does not exist on the object.
pub const ERROR_SET_NOT_FOUND: DWORD = 0x00000492;
///The point passed to GetMouseMovePoints is not in the buffer.
pub const ERROR_POINT_NOT_FOUND: DWORD = 0x00000493;
///The tracking (workstation) service is not running.
pub const ERROR_NO_TRACKING_SERVICE: DWORD = 0x00000494;
///The volume ID could not be found.
pub const ERROR_NO_VOLUME_ID: DWORD = 0x00000495;
///Unable to remove the file to be replaced.
pub const ERROR_UNABLE_TO_REMOVE_REPLACED: DWORD = 0x00000497;
///Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
pub const ERROR_UNABLE_TO_MOVE_REPLACEMENT: DWORD = 0x00000498;
///Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
pub const ERROR_UNABLE_TO_MOVE_REPLACEMENT_2: DWORD = 0x00000499;
///The volume change journal is being deleted.
pub const ERROR_JOURNAL_DELETE_IN_PROGRESS: DWORD = 0x0000049A;
///The volume change journal is not active.
pub const ERROR_JOURNAL_NOT_ACTIVE: DWORD = 0x0000049B;
///A file was found, but it might not be the correct file.
pub const ERROR_POTENTIAL_FILE_FOUND: DWORD = 0x0000049C;
///The journal entry has been deleted from the journal.
pub const ERROR_JOURNAL_ENTRY_DELETED: DWORD = 0x0000049D;
///A system shutdown has already been scheduled.
pub const ERROR_SHUTDOWN_IS_SCHEDULED: DWORD = 0x000004A6;
///The system shutdown cannot be initiated because there are other users logged on to the computer.
pub const ERROR_SHUTDOWN_USERS_LOGGED_ON: DWORD = 0x000004A7;
///The specified device name is invalid.
pub const ERROR_BAD_DEVICE: DWORD = 0x000004B0;
///The device is not currently connected but it is a remembered connection.
pub const ERROR_CONNECTION_UNAVAIL: DWORD = 0x000004B1;
///The local device name has a remembered connection to another network resource.
pub const ERROR_DEVICE_ALREADY_REMEMBERED: DWORD = 0x000004B2;
///The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Try retyping the path or contact your network administrator.
pub const ERROR_NO_NET_OR_BAD_PATH: DWORD = 0x000004B3;
///The specified network provider name is invalid.
pub const ERROR_BAD_PROVIDER: DWORD = 0x000004B4;
///Unable to open the network connection profile.
pub const ERROR_CANNOT_OPEN_PROFILE: DWORD = 0x000004B5;
///The network connection profile is corrupted.
pub const ERROR_BAD_PROFILE: DWORD = 0x000004B6;
///Cannot enumerate a noncontainer.
pub const ERROR_NOT_CONTAINER: DWORD = 0x000004B7;
///An extended error has occurred.
pub const ERROR_EXTENDED_ERROR: DWORD = 0x000004B8;
///The format of the specified group name is invalid.
pub const ERROR_INVALID_GROUPNAME: DWORD = 0x000004B9;
///The format of the specified computer name is invalid.
pub const ERROR_INVALID_COMPUTERNAME: DWORD = 0x000004BA;
///The format of the specified event name is invalid.
pub const ERROR_INVALID_EVENTNAME: DWORD = 0x000004BB;
///The format of the specified domain name is invalid.
pub const ERROR_INVALID_DOMAINNAME: DWORD = 0x000004BC;
///The format of the specified service name is invalid.
pub const ERROR_INVALID_SERVICENAME: DWORD = 0x000004BD;
///The format of the specified network name is invalid.
pub const ERROR_INVALID_NETNAME: DWORD = 0x000004BE;
///The format of the specified share name is invalid.
pub const ERROR_INVALID_SHARENAME: DWORD = 0x000004BF;
///The format of the specified password is invalid.
pub const ERROR_INVALID_PASSWORDNAME: DWORD = 0x000004C0;
///The format of the specified message name is invalid.
pub const ERROR_INVALID_MESSAGENAME: DWORD = 0x000004C1;
///The format of the specified message destination is invalid.
pub const ERROR_INVALID_MESSAGEDEST: DWORD = 0x000004C2;
///Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.
pub const ERROR_SESSION_CREDENTIAL_CONFLICT: DWORD = 0x000004C3;
///An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
pub const ERROR_REMOTE_SESSION_LIMIT_EXCEEDED: DWORD = 0x000004C4;
///The workgroup or domain name is already in use by another computer on the network.
pub const ERROR_DUP_DOMAINNAME: DWORD = 0x000004C5;
///The network is not present or not started.
pub const ERROR_NO_NETWORK: DWORD = 0x000004C6;
///The operation was canceled by the user.
pub const ERROR_CANCELLED: DWORD = 0x000004C7;
///The requested operation cannot be performed on a file with a user-mapped section open.
pub const ERROR_USER_MAPPED_FILE: DWORD = 0x000004C8;
///The remote system refused the network connection.
pub const ERROR_CONNECTION_REFUSED: DWORD = 0x000004C9;
///The network connection was gracefully closed.
pub const ERROR_GRACEFUL_DISCONNECT: DWORD = 0x000004CA;
///The network transport endpoint already has an address associated with it.
pub const ERROR_ADDRESS_ALREADY_ASSOCIATED: DWORD = 0x000004CB;
///An address has not yet been associated with the network endpoint.
pub const ERROR_ADDRESS_NOT_ASSOCIATED: DWORD = 0x000004CC;
///An operation was attempted on a nonexistent network connection.
pub const ERROR_CONNECTION_INVALID: DWORD = 0x000004CD;
///An invalid operation was attempted on an active network connection.
pub const ERROR_CONNECTION_ACTIVE: DWORD = 0x000004CE;
///The network location cannot be reached. For information about network troubleshooting, see Windows Help.
pub const ERROR_NETWORK_UNREACHABLE: DWORD = 0x000004CF;
///The network location cannot be reached. For information about network troubleshooting, see Windows Help.
pub const ERROR_HOST_UNREACHABLE: DWORD = 0x000004D0;
///The network location cannot be reached. For information about network troubleshooting, see Windows Help.
pub const ERROR_PROTOCOL_UNREACHABLE: DWORD = 0x000004D1;
///No service is operating at the destination network endpoint on the remote system.
pub const ERROR_PORT_UNREACHABLE: DWORD = 0x000004D2;
///The request was aborted.
pub const ERROR_REQUEST_ABORTED: DWORD = 0x000004D3;
///The network connection was aborted by the local system.
pub const ERROR_CONNECTION_ABORTED: DWORD = 0x000004D4;
///The operation could not be completed. A retry should be performed.
pub const ERROR_RETRY: DWORD = 0x000004D5;
///A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
pub const ERROR_CONNECTION_COUNT_LIMIT: DWORD = 0x000004D6;
///Attempting to log on during an unauthorized time of day for this account.
pub const ERROR_LOGIN_TIME_RESTRICTION: DWORD = 0x000004D7;
///The account is not authorized to log on from this station.
pub const ERROR_LOGIN_WKSTA_RESTRICTION: DWORD = 0x000004D8;
///The network address could not be used for the operation requested.
pub const ERROR_INCORRECT_ADDRESS: DWORD = 0x000004D9;
///The service is already registered.
pub const ERROR_ALREADY_REGISTERED: DWORD = 0x000004DA;
///The specified service does not exist.
pub const ERROR_SERVICE_NOT_FOUND: DWORD = 0x000004DB;
///The operation being requested was not performed because the user has not been authenticated.
pub const ERROR_NOT_AUTHENTICATED: DWORD = 0x000004DC;
///The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.
pub const ERROR_NOT_LOGGED_ON: DWORD = 0x000004DD;
///Continue with work in progress.
pub const ERROR_CONTINUE: DWORD = 0x000004DE;
///An attempt was made to perform an initialization operation when initialization has already been completed.
pub const ERROR_ALREADY_INITIALIZED: DWORD = 0x000004DF;
///No more local devices.
pub const ERROR_NO_MORE_DEVICES: DWORD = 0x000004E0;
///The specified site does not exist.
pub const ERROR_NO_SUCH_SITE: DWORD = 0x000004E1;
///A domain controller with the specified name already exists.
pub const ERROR_DOMAIN_CONTROLLER_EXISTS: DWORD = 0x000004E2;
///This operation is supported only when you are connected to the server.
pub const ERROR_ONLY_IF_CONNECTED: DWORD = 0x000004E3;
///The group policy framework should call the extension even if there are no changes.
pub const ERROR_OVERRIDE_NOCHANGES: DWORD = 0x000004E4;
///The specified user does not have a valid profile.
pub const ERROR_BAD_USER_PROFILE: DWORD = 0x000004E5;
///This operation is not supported on a computer running Windows Server 2003 operating system for Small Business Server.
pub const ERROR_NOT_SUPPORTED_ON_SBS: DWORD = 0x000004E6;
///The server machine is shutting down.
pub const ERROR_SERVER_SHUTDOWN_IN_PROGRESS: DWORD = 0x000004E7;
///The remote system is not available. For information about network troubleshooting, see Windows Help.
pub const ERROR_HOST_DOWN: DWORD = 0x000004E8;
///The security identifier provided is not from an account domain.
pub const ERROR_NON_ACCOUNT_SID: DWORD = 0x000004E9;
///The security identifier provided does not have a domain component.
pub const ERROR_NON_DOMAIN_SID: DWORD = 0x000004EA;
///AppHelp dialog canceled, thus preventing the application from starting.
pub const ERROR_APPHELP_BLOCK: DWORD = 0x000004EB;
///This program is blocked by Group Policy. For more information, contact your system administrator.
pub const ERROR_ACCESS_DISABLED_BY_POLICY: DWORD = 0x000004EC;
///A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.
pub const ERROR_REG_NAT_CONSUMPTION: DWORD = 0x000004ED;
///The share is currently offline or does not exist.
pub const ERROR_CSCSHARE_OFFLINE: DWORD = 0x000004EE;
///The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log.
pub const ERROR_PKINIT_FAILURE: DWORD = 0x000004EF;
///The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.
pub const ERROR_SMARTCARD_SUBSYSTEM_FAILURE: DWORD = 0x000004F0;
///The system detected a possible attempt to compromise security. Ensure that you can contact the server that authenticated you.
pub const ERROR_DOWNGRADE_DETECTED: DWORD = 0x000004F1;
///The machine is locked and cannot be shut down without the force option.
pub const ERROR_MACHINE_LOCKED: DWORD = 0x000004F7;
///An application-defined callback gave invalid data when called.
pub const ERROR_CALLBACK_SUPPLIED_INVALID_DATA: DWORD = 0x000004F9;
///The Group Policy framework should call the extension in the synchronous foreground policy refresh.
pub const ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED: DWORD = 0x000004FA;
///This driver has been blocked from loading.
pub const ERROR_DRIVER_BLOCKED: DWORD = 0x000004FB;
///A DLL referenced a module that was neither a DLL nor the process's executable image.
pub const ERROR_INVALID_IMPORT_OF_NON_DLL: DWORD = 0x000004FC;
///Windows cannot open this program because it has been disabled.
pub const ERROR_ACCESS_DISABLED_WEBBLADE: DWORD = 0x000004FD;
///Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
pub const ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER: DWORD = 0x000004FE;
///A transaction recover failed.
pub const ERROR_RECOVERY_FAILURE: DWORD = 0x000004FF;
///The current thread has already been converted to a fiber.
pub const ERROR_ALREADY_FIBER: DWORD = 0x00000500;
///The current thread has already been converted from a fiber.
pub const ERROR_ALREADY_THREAD: DWORD = 0x00000501;
///The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application.
pub const ERROR_STACK_BUFFER_OVERRUN: DWORD = 0x00000502;
///Data present in one of the parameters is more than the function can operate on.
pub const ERROR_PARAMETER_QUOTA_EXCEEDED: DWORD = 0x00000503;
///An attempt to perform an operation on a debug object failed because the object is in the process of being deleted.
pub const ERROR_DEBUGGER_INACTIVE: DWORD = 0x00000504;
///An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
pub const ERROR_DELAY_LOAD_FAILED: DWORD = 0x00000505;
///%1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
pub const ERROR_VDM_DISALLOWED: DWORD = 0x00000506;
///Insufficient information exists to identify the cause of failure.
pub const ERROR_UNIDENTIFIED_ERROR: DWORD = 0x00000507;
///The parameter passed to a C runtime function is incorrect.
pub const ERROR_INVALID_CRUNTIME_PARAMETER: DWORD = 0x00000508;
///The operation occurred beyond the valid data length of the file.
pub const ERROR_BEYOND_VDL: DWORD = 0x00000509;
///The service start failed because one or more services in the same process have an incompatible service SID type setting. A service with a restricted service SID type can only coexist in the same process with other services with a restricted SID type.
pub const ERROR_INCOMPATIBLE_SERVICE_SID_TYPE: DWORD = 0x0000050A;
///The process hosting the driver for this device has been terminated.
pub const ERROR_DRIVER_PROCESS_TERMINATED: DWORD = 0x0000050B;
///An operation attempted to exceed an implementation-defined limit.
pub const ERROR_IMPLEMENTATION_LIMIT: DWORD = 0x0000050C;
///Either the target process, or the target thread's containing process, is a protected process.
pub const ERROR_PROCESS_IS_PROTECTED: DWORD = 0x0000050D;
///The service notification client is lagging too far behind the current state of services in the machine.
pub const ERROR_SERVICE_NOTIFY_CLIENT_LAGGING: DWORD = 0x0000050E;
///An operation failed because the storage quota was exceeded.
pub const ERROR_DISK_QUOTA_EXCEEDED: DWORD = 0x0000050F;
///An operation failed because the content was blocked.
pub const ERROR_CONTENT_BLOCKED: DWORD = 0x00000510;
///A privilege that the service requires to function properly does not exist in the service account configuration. The Services Microsoft Management Console (MMC) snap-in (Services.msc) and the Local Security Settings MMC snap-in (Secpol.msc) can be used to view the service configuration and the account configuration.
pub const ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE: DWORD = 0x00000511;
///Indicates a particular SID cannot be assigned as the label of an object.
pub const ERROR_INVALID_LABEL: DWORD = 0x00000513;
///Not all privileges or groups referenced are assigned to the caller.
pub const ERROR_NOT_ALL_ASSIGNED: DWORD = 0x00000514;
///Some mapping between account names and SIDs was not done.
pub const ERROR_SOME_NOT_MAPPED: DWORD = 0x00000515;
///No system quota limits are specifically set for this account.
pub const ERROR_NO_QUOTAS_FOR_ACCOUNT: DWORD = 0x00000516;
///No encryption key is available. A well-known encryption key was returned.
pub const ERROR_LOCAL_USER_SESSION_KEY: DWORD = 0x00000517;
///The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a null string.
pub const ERROR_NULL_LM_PASSWORD: DWORD = 0x00000518;
///The revision level is unknown.
pub const ERROR_UNKNOWN_REVISION: DWORD = 0x00000519;
///Indicates two revision levels are incompatible.
pub const ERROR_REVISION_MISMATCH: DWORD = 0x0000051A;
///This SID cannot be assigned as the owner of this object.
pub const ERROR_INVALID_OWNER: DWORD = 0x0000051B;
///This SID cannot be assigned as the primary group of an object.
pub const ERROR_INVALID_PRIMARY_GROUP: DWORD = 0x0000051C;
///An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
pub const ERROR_NO_IMPERSONATION_TOKEN: DWORD = 0x0000051D;
///The group cannot be disabled.
pub const ERROR_CANT_DISABLE_MANDATORY: DWORD = 0x0000051E;
///There are currently no logon servers available to service the logon request.
pub const ERROR_NO_LOGON_SERVERS: DWORD = 0x0000051F;
///A specified logon session does not exist. It might already have been terminated.
pub const ERROR_NO_SUCH_LOGON_SESSION: DWORD = 0x00000520;
///A specified privilege does not exist.
pub const ERROR_NO_SUCH_PRIVILEGE: DWORD = 0x00000521;
///A required privilege is not held by the client.
pub const ERROR_PRIVILEGE_NOT_HELD: DWORD = 0x00000522;
///The name provided is not a properly formed account name.
pub const ERROR_INVALID_ACCOUNT_NAME: DWORD = 0x00000523;
///The specified account already exists.
pub const ERROR_USER_EXISTS: DWORD = 0x00000524;
///The specified account does not exist.
pub const ERROR_NO_SUCH_USER: DWORD = 0x00000525;
///The specified group already exists.
pub const ERROR_GROUP_EXISTS: DWORD = 0x00000526;
///The specified group does not exist.
pub const ERROR_NO_SUCH_GROUP: DWORD = 0x00000527;
///Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.
pub const ERROR_MEMBER_IN_GROUP: DWORD = 0x00000528;
///The specified user account is not a member of the specified group account.
pub const ERROR_MEMBER_NOT_IN_GROUP: DWORD = 0x00000529;
///The last remaining administration account cannot be disabled or deleted.
pub const ERROR_LAST_ADMIN: DWORD = 0x0000052A;
///Unable to update the password. The value provided as the current password is incorrect.
pub const ERROR_WRONG_PASSWORD: DWORD = 0x0000052B;
///Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
pub const ERROR_ILL_FORMED_PASSWORD: DWORD = 0x0000052C;
///Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain.
pub const ERROR_PASSWORD_RESTRICTION: DWORD = 0x0000052D;
///Logon failure: Unknown user name or bad password.
pub const ERROR_LOGON_FAILURE: DWORD = 0x0000052E;
///Logon failure: User account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced.
pub const ERROR_ACCOUNT_RESTRICTION: DWORD = 0x0000052F;
///Logon failure: Account logon time restriction violation.
pub const ERROR_INVALID_LOGON_HOURS: DWORD = 0x00000530;
///Logon failure: User not allowed to log on to this computer.
pub const ERROR_INVALID_WORKSTATION: DWORD = 0x00000531;
///Logon failure: The specified account password has expired.
pub const ERROR_PASSWORD_EXPIRED: DWORD = 0x00000532;
///Logon failure: Account currently disabled.
pub const ERROR_ACCOUNT_DISABLED: DWORD = 0x00000533;
///No mapping between account names and SIDs was done.
pub const ERROR_NONE_MAPPED: DWORD = 0x00000534;
///Too many local user identifiers (LUIDs) were requested at one time.
pub const ERROR_TOO_MANY_LUIDS_REQUESTED: DWORD = 0x00000535;
///No more LUIDs are available.
pub const ERROR_LUIDS_EXHAUSTED: DWORD = 0x00000536;
///The sub-authority part of an SID is invalid for this particular use.
pub const ERROR_INVALID_SUB_AUTHORITY: DWORD = 0x00000537;
///The ACL structure is invalid.
pub const ERROR_INVALID_ACL: DWORD = 0x00000538;
///The SID structure is invalid.
pub const ERROR_INVALID_SID: DWORD = 0x00000539;
///The security descriptor structure is invalid.
pub const ERROR_INVALID_SECURITY_DESCR: DWORD = 0x0000053A;
///The inherited ACL or ACE could not be built.
pub const ERROR_BAD_INHERITANCE_ACL: DWORD = 0x0000053C;
///The server is currently disabled.
pub const ERROR_SERVER_DISABLED: DWORD = 0x0000053D;
///The server is currently enabled.
pub const ERROR_SERVER_NOT_DISABLED: DWORD = 0x0000053E;
///The value provided was an invalid value for an identifier authority.
pub const ERROR_INVALID_ID_AUTHORITY: DWORD = 0x0000053F;
///No more memory is available for security information updates.
pub const ERROR_ALLOTTED_SPACE_EXCEEDED: DWORD = 0x00000540;
///The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
pub const ERROR_INVALID_GROUP_ATTRIBUTES: DWORD = 0x00000541;
///Either a required impersonation level was not provided, or the provided impersonation level is invalid.
pub const ERROR_BAD_IMPERSONATION_LEVEL: DWORD = 0x00000542;
///Cannot open an anonymous level security token.
pub const ERROR_CANT_OPEN_ANONYMOUS: DWORD = 0x00000543;
///The validation information class requested was invalid.
pub const ERROR_BAD_VALIDATION_CLASS: DWORD = 0x00000544;
///The type of the token is inappropriate for its attempted use.
pub const ERROR_BAD_TOKEN_TYPE: DWORD = 0x00000545;
///Unable to perform a security operation on an object that has no associated security.
pub const ERROR_NO_SECURITY_ON_OBJECT: DWORD = 0x00000546;
///Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
pub const ERROR_CANT_ACCESS_DOMAIN_INFO: DWORD = 0x00000547;
///The SAM or local security authority (LSA) server was in the wrong state to perform the security operation.
pub const ERROR_INVALID_SERVER_STATE: DWORD = 0x00000548;
///The domain was in the wrong state to perform the security operation.
pub const ERROR_INVALID_DOMAIN_STATE: DWORD = 0x00000549;
///This operation is only allowed for the PDC of the domain.
pub const ERROR_INVALID_DOMAIN_ROLE: DWORD = 0x0000054A;
///The specified domain either does not exist or could not be contacted.
pub const ERROR_NO_SUCH_DOMAIN: DWORD = 0x0000054B;
///The specified domain already exists.
pub const ERROR_DOMAIN_EXISTS: DWORD = 0x0000054C;
///An attempt was made to exceed the limit on the number of domains per server.
pub const ERROR_DOMAIN_LIMIT_EXCEEDED: DWORD = 0x0000054D;
///Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
pub const ERROR_INTERNAL_DB_CORRUPTION: DWORD = 0x0000054E;
///An internal error occurred.
pub const ERROR_INTERNAL_ERROR: DWORD = 0x0000054F;
///Generic access types were contained in an access mask that should already be mapped to nongeneric types.
pub const ERROR_GENERIC_NOT_MAPPED: DWORD = 0x00000550;
///A security descriptor is not in the right format (absolute or self-relative).
pub const ERROR_BAD_DESCRIPTOR_FORMAT: DWORD = 0x00000551;
///The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
pub const ERROR_NOT_LOGON_PROCESS: DWORD = 0x00000552;
///Cannot start a new logon session with an ID that is already in use.
pub const ERROR_LOGON_SESSION_EXISTS: DWORD = 0x00000553;
///A specified authentication package is unknown.
pub const ERROR_NO_SUCH_PACKAGE: DWORD = 0x00000554;
///The logon session is not in a state that is consistent with the requested operation.
pub const ERROR_BAD_LOGON_SESSION_STATE: DWORD = 0x00000555;
///The logon session ID is already in use.
pub const ERROR_LOGON_SESSION_COLLISION: DWORD = 0x00000556;
///A logon request contained an invalid logon type value.
pub const ERROR_INVALID_LOGON_TYPE: DWORD = 0x00000557;
///Unable to impersonate using a named pipe until data has been read from that pipe.
pub const ERROR_CANNOT_IMPERSONATE: DWORD = 0x00000558;
///The transaction state of a registry subtree is incompatible with the requested operation.
pub const ERROR_RXACT_INVALID_STATE: DWORD = 0x00000559;
///An internal security database corruption has been encountered.
pub const ERROR_RXACT_COMMIT_FAILURE: DWORD = 0x0000055A;
///Cannot perform this operation on built-in accounts.
pub const ERROR_SPECIAL_ACCOUNT: DWORD = 0x0000055B;
///Cannot perform this operation on this built-in special group.
pub const ERROR_SPECIAL_GROUP: DWORD = 0x0000055C;
///Cannot perform this operation on this built-in special user.
pub const ERROR_SPECIAL_USER: DWORD = 0x0000055D;
///The user cannot be removed from a group because the group is currently the user's primary group.
pub const ERROR_MEMBERS_PRIMARY_GROUP: DWORD = 0x0000055E;
///The token is already in use as a primary token.
pub const ERROR_TOKEN_ALREADY_IN_USE: DWORD = 0x0000055F;
///The specified local group does not exist.
pub const ERROR_NO_SUCH_ALIAS: DWORD = 0x00000560;
///The specified account name is not a member of the group.
pub const ERROR_MEMBER_NOT_IN_ALIAS: DWORD = 0x00000561;
///The specified account name is already a member of the group.
pub const ERROR_MEMBER_IN_ALIAS: DWORD = 0x00000562;
///The specified local group already exists.
pub const ERROR_ALIAS_EXISTS: DWORD = 0x00000563;
///Logon failure: The user has not been granted the requested logon type at this computer.
pub const ERROR_LOGON_NOT_GRANTED: DWORD = 0x00000564;
///The maximum number of secrets that can be stored in a single system has been exceeded.
pub const ERROR_TOO_MANY_SECRETS: DWORD = 0x00000565;
///The length of a secret exceeds the maximum length allowed.
pub const ERROR_SECRET_TOO_LONG: DWORD = 0x00000566;
///The local security authority database contains an internal inconsistency.
pub const ERROR_INTERNAL_DB_ERROR: DWORD = 0x00000567;
///During a logon attempt, the user's security context accumulated too many SIDs.
pub const ERROR_TOO_MANY_CONTEXT_IDS: DWORD = 0x00000568;
///Logon failure: The user has not been granted the requested logon type at this computer.
pub const ERROR_LOGON_TYPE_NOT_GRANTED: DWORD = 0x00000569;
///A cross-encrypted password is necessary to change a user password.
pub const ERROR_NT_CROSS_ENCRYPTION_REQUIRED: DWORD = 0x0000056A;
///A member could not be added to or removed from the local group because the member does not exist.
pub const ERROR_NO_SUCH_MEMBER: DWORD = 0x0000056B;
///A new member could not be added to a local group because the member has the wrong account type.
pub const ERROR_INVALID_MEMBER: DWORD = 0x0000056C;
///Too many SIDs have been specified.
pub const ERROR_TOO_MANY_SIDS: DWORD = 0x0000056D;
///A cross-encrypted password is necessary to change this user password.
pub const ERROR_LM_CROSS_ENCRYPTION_REQUIRED: DWORD = 0x0000056E;
///Indicates an ACL contains no inheritable components.
pub const ERROR_NO_INHERITANCE: DWORD = 0x0000056F;
///The file or directory is corrupted and unreadable.
pub const ERROR_FILE_CORRUPT: DWORD = 0x00000570;
///The disk structure is corrupted and unreadable.
pub const ERROR_DISK_CORRUPT: DWORD = 0x00000571;
///There is no user session key for the specified logon session.
pub const ERROR_NO_USER_SESSION_KEY: DWORD = 0x00000572;
///The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because the service has accepted the maximum number of connections.
pub const ERROR_LICENSE_QUOTA_EXCEEDED: DWORD = 0x00000573;
///Logon failure: The target account name is incorrect.
pub const ERROR_WRONG_TARGET_NAME: DWORD = 0x00000574;
///Mutual authentication failed. The server's password is out of date at the domain controller.
pub const ERROR_MUTUAL_AUTH_FAILED: DWORD = 0x00000575;
///There is a time and/or date difference between the client and server.
pub const ERROR_TIME_SKEW: DWORD = 0x00000576;
///This operation cannot be performed on the current domain.
pub const ERROR_CURRENT_DOMAIN_NOT_ALLOWED: DWORD = 0x00000577;
///Invalid window handle.
pub const ERROR_INVALID_WINDOW_HANDLE: DWORD = 0x00000578;
///Invalid menu handle.
pub const ERROR_INVALID_MENU_HANDLE: DWORD = 0x00000579;
///Invalid cursor handle.
pub const ERROR_INVALID_CURSOR_HANDLE: DWORD = 0x0000057A;
///Invalid accelerator table handle.
pub const ERROR_INVALID_ACCEL_HANDLE: DWORD = 0x0000057B;
///Invalid hook handle.
pub const ERROR_INVALID_HOOK_HANDLE: DWORD = 0x0000057C;
///Invalid handle to a multiple-window position structure.
pub const ERROR_INVALID_DWP_HANDLE: DWORD = 0x0000057D;
///Cannot create a top-level child window.
pub const ERROR_TLW_WITH_WSCHILD: DWORD = 0x0000057E;
///Cannot find window class.
pub const ERROR_CANNOT_FIND_WND_CLASS: DWORD = 0x0000057F;
///Invalid window; it belongs to other thread.
pub const ERROR_WINDOW_OF_OTHER_THREAD: DWORD = 0x00000580;
///Hot key is already registered.
pub const ERROR_HOTKEY_ALREADY_REGISTERED: DWORD = 0x00000581;
///Class already exists.
pub const ERROR_CLASS_ALREADY_EXISTS: DWORD = 0x00000582;
///Class does not exist.
pub const ERROR_CLASS_DOES_NOT_EXIST: DWORD = 0x00000583;
///Class still has open windows.
pub const ERROR_CLASS_HAS_WINDOWS: DWORD = 0x00000584;
///Invalid index.
pub const ERROR_INVALID_INDEX: DWORD = 0x00000585;
///Invalid icon handle.
pub const ERROR_INVALID_ICON_HANDLE: DWORD = 0x00000586;
///Using private DIALOG window words.
pub const ERROR_PRIVATE_DIALOG_INDEX: DWORD = 0x00000587;
///The list box identifier was not found.
pub const ERROR_LISTBOX_ID_NOT_FOUND: DWORD = 0x00000588;
///No wildcards were found.
pub const ERROR_NO_WILDCARD_CHARACTERS: DWORD = 0x00000589;
///Thread does not have a clipboard open.
pub const ERROR_CLIPBOARD_NOT_OPEN: DWORD = 0x0000058A;
///Hot key is not registered.
pub const ERROR_HOTKEY_NOT_REGISTERED: DWORD = 0x0000058B;
///The window is not a valid dialog window.
pub const ERROR_WINDOW_NOT_DIALOG: DWORD = 0x0000058C;
///Control ID not found.
pub const ERROR_CONTROL_ID_NOT_FOUND: DWORD = 0x0000058D;
///Invalid message for a combo box because it does not have an edit control.
pub const ERROR_INVALID_COMBOBOX_MESSAGE: DWORD = 0x0000058E;
///The window is not a combo box.
pub const ERROR_WINDOW_NOT_COMBOBOX: DWORD = 0x0000058F;
///Height must be less than 256.
pub const ERROR_INVALID_EDIT_HEIGHT: DWORD = 0x00000590;
///Invalid device context (DC) handle.
pub const ERROR_DC_NOT_FOUND: DWORD = 0x00000591;
///Invalid hook procedure type.
pub const ERROR_INVALID_HOOK_FILTER: DWORD = 0x00000592;
///Invalid hook procedure.
pub const ERROR_INVALID_FILTER_PROC: DWORD = 0x00000593;
///Cannot set nonlocal hook without a module handle.
pub const ERROR_HOOK_NEEDS_HMOD: DWORD = 0x00000594;
///This hook procedure can only be set globally.
pub const ERROR_GLOBAL_ONLY_HOOK: DWORD = 0x00000595;
///The journal hook procedure is already installed.
pub const ERROR_JOURNAL_HOOK_SET: DWORD = 0x00000596;
///The hook procedure is not installed.
pub const ERROR_HOOK_NOT_INSTALLED: DWORD = 0x00000597;
///Invalid message for single-selection list box.
pub const ERROR_INVALID_LB_MESSAGE: DWORD = 0x00000598;
///LB_SETCOUNT sent to non-lazy list box.
pub const ERROR_SETCOUNT_ON_BAD_LB: DWORD = 0x00000599;
///This list box does not support tab stops.
pub const ERROR_LB_WITHOUT_TABSTOPS: DWORD = 0x0000059A;
///Cannot destroy object created by another thread.
pub const ERROR_DESTROY_OBJECT_OF_OTHER_THREAD: DWORD = 0x0000059B;
///Child windows cannot have menus.
pub const ERROR_CHILD_WINDOW_MENU: DWORD = 0x0000059C;
///The window does not have a system menu.
pub const ERROR_NO_SYSTEM_MENU: DWORD = 0x0000059D;
///Invalid message box style.
pub const ERROR_INVALID_MSGBOX_STYLE: DWORD = 0x0000059E;
///Invalid system-wide (SPI_*) parameter.
pub const ERROR_INVALID_SPI_VALUE: DWORD = 0x0000059F;
///Screen already locked.
pub const ERROR_SCREEN_ALREADY_LOCKED: DWORD = 0x000005A0;
///All handles to windows in a multiple-window position structure must have the same parent.
pub const ERROR_HWNDS_HAVE_DIFF_PARENT: DWORD = 0x000005A1;
///The window is not a child window.
pub const ERROR_NOT_CHILD_WINDOW: DWORD = 0x000005A2;
///Invalid GW_* command.
pub const ERROR_INVALID_GW_COMMAND: DWORD = 0x000005A3;
///Invalid thread identifier.
pub const ERROR_INVALID_THREAD_ID: DWORD = 0x000005A4;
///Cannot process a message from a window that is not a multiple document interface (MDI) window.
pub const ERROR_NON_MDICHILD_WINDOW: DWORD = 0x000005A5;
///Pop-up menu already active.
pub const ERROR_POPUP_ALREADY_ACTIVE: DWORD = 0x000005A6;
///The window does not have scroll bars.
pub const ERROR_NO_SCROLLBARS: DWORD = 0x000005A7;
///Scroll bar range cannot be greater than MAXLONG.
pub const ERROR_INVALID_SCROLLBAR_RANGE: DWORD = 0x000005A8;
///Cannot show or remove the window in the way specified.
pub const ERROR_INVALID_SHOWWIN_COMMAND: DWORD = 0x000005A9;
///Insufficient system resources exist to complete the requested service.
pub const ERROR_NO_SYSTEM_RESOURCES: DWORD = 0x000005AA;
///Insufficient system resources exist to complete the requested service.
pub const ERROR_NONPAGED_SYSTEM_RESOURCES: DWORD = 0x000005AB;
///Insufficient system resources exist to complete the requested service.
pub const ERROR_PAGED_SYSTEM_RESOURCES: DWORD = 0x000005AC;
///Insufficient quota to complete the requested service.
pub const ERROR_WORKING_SET_QUOTA: DWORD = 0x000005AD;
///Insufficient quota to complete the requested service.
pub const ERROR_PAGEFILE_QUOTA: DWORD = 0x000005AE;
///The paging file is too small for this operation to complete.
pub const ERROR_COMMITMENT_LIMIT: DWORD = 0x000005AF;
///A menu item was not found.
pub const ERROR_MENU_ITEM_NOT_FOUND: DWORD = 0x000005B0;
///Invalid keyboard layout handle.
pub const ERROR_INVALID_KEYBOARD_HANDLE: DWORD = 0x000005B1;
///Hook type not allowed.
pub const ERROR_HOOK_TYPE_NOT_ALLOWED: DWORD = 0x000005B2;
///This operation requires an interactive window station.
pub const ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION: DWORD = 0x000005B3;
///This operation returned because the time-out period expired.
pub const ERROR_TIMEOUT: DWORD = 0x000005B4;
///Invalid monitor handle.
pub const ERROR_INVALID_MONITOR_HANDLE: DWORD = 0x000005B5;
///Incorrect size argument.
pub const ERROR_INCORRECT_SIZE: DWORD = 0x000005B6;
///The symbolic link cannot be followed because its type is disabled.
pub const ERROR_SYMLINK_CLASS_DISABLED: DWORD = 0x000005B7;
///This application does not support the current operation on symbolic links.
pub const ERROR_SYMLINK_NOT_SUPPORTED: DWORD = 0x000005B8;
///The event log file is corrupted.
pub const ERROR_EVENTLOG_FILE_CORRUPT: DWORD = 0x000005DC;
///No event log file could be opened, so the event logging service did not start.
pub const ERROR_EVENTLOG_CANT_START: DWORD = 0x000005DD;
///The event log file is full.
pub const ERROR_LOG_FILE_FULL: DWORD = 0x000005DE;
///The event log file has changed between read operations.
pub const ERROR_EVENTLOG_FILE_CHANGED: DWORD = 0x000005DF;
///The specified task name is invalid.
pub const ERROR_INVALID_TASK_NAME: DWORD = 0x0000060E;
///The specified task index is invalid.
pub const ERROR_INVALID_TASK_INDEX: DWORD = 0x0000060F;
///The specified thread is already joining a task.
pub const ERROR_THREAD_ALREADY_IN_TASK: DWORD = 0x00000610;
///The Windows Installer service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
pub const ERROR_INSTALL_SERVICE_FAILURE: DWORD = 0x00000641;
///User canceled installation.
pub const ERROR_INSTALL_USEREXIT: DWORD = 0x00000642;
///Fatal error during installation.
pub const ERROR_INSTALL_FAILURE: DWORD = 0x00000643;
///Installation suspended, incomplete.
pub const ERROR_INSTALL_SUSPEND: DWORD = 0x00000644;
///This action is valid only for products that are currently installed.
pub const ERROR_UNKNOWN_PRODUCT: DWORD = 0x00000645;
///Feature ID not registered.
pub const ERROR_UNKNOWN_FEATURE: DWORD = 0x00000646;
///Component ID not registered.
pub const ERROR_UNKNOWN_COMPONENT: DWORD = 0x00000647;
///Unknown property.
pub const ERROR_UNKNOWN_PROPERTY: DWORD = 0x00000648;
///Handle is in an invalid state.
pub const ERROR_INVALID_HANDLE_STATE: DWORD = 0x00000649;
///The configuration data for this product is corrupt. Contact your support personnel.
pub const ERROR_BAD_CONFIGURATION: DWORD = 0x0000064A;
///Component qualifier not present.
pub const ERROR_INDEX_ABSENT: DWORD = 0x0000064B;
///The installation source for this product is not available. Verify that the source exists and that you can access it.
pub const ERROR_INSTALL_SOURCE_ABSENT: DWORD = 0x0000064C;
///This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
pub const ERROR_INSTALL_PACKAGE_VERSION: DWORD = 0x0000064D;
///Product is uninstalled.
pub const ERROR_PRODUCT_UNINSTALLED: DWORD = 0x0000064E;
///SQL query syntax invalid or unsupported.
pub const ERROR_BAD_QUERY_SYNTAX: DWORD = 0x0000064F;
///Record field does not exist.
pub const ERROR_INVALID_FIELD: DWORD = 0x00000650;
///The device has been removed.
pub const ERROR_DEVICE_REMOVED: DWORD = 0x00000651;
///Another installation is already in progress. Complete that installation before proceeding with this install.
pub const ERROR_INSTALL_ALREADY_RUNNING: DWORD = 0x00000652;
///This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.
pub const ERROR_INSTALL_PACKAGE_OPEN_FAILED: DWORD = 0x00000653;
///This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.
pub const ERROR_INSTALL_PACKAGE_INVALID: DWORD = 0x00000654;
///There was an error starting the Windows Installer service user interface. Contact your support personnel.
pub const ERROR_INSTALL_UI_FAILURE: DWORD = 0x00000655;
///Error opening installation log file. Verify that the specified log file location exists and that you can write to it.
pub const ERROR_INSTALL_LOG_FAILURE: DWORD = 0x00000656;
///The language of this installation package is not supported by your system.
pub const ERROR_INSTALL_LANGUAGE_UNSUPPORTED: DWORD = 0x00000657;
///Error applying transforms. Verify that the specified transform paths are valid.
pub const ERROR_INSTALL_TRANSFORM_FAILURE: DWORD = 0x00000658;
///This installation is forbidden by system policy. Contact your system administrator.
pub const ERROR_INSTALL_PACKAGE_REJECTED: DWORD = 0x00000659;
///Function could not be executed.
pub const ERROR_FUNCTION_NOT_CALLED: DWORD = 0x0000065A;
///Function failed during execution.
pub const ERROR_FUNCTION_FAILED: DWORD = 0x0000065B;
///Invalid or unknown table specified.
pub const ERROR_INVALID_TABLE: DWORD = 0x0000065C;
///Data supplied is of wrong type.
pub const ERROR_DATATYPE_MISMATCH: DWORD = 0x0000065D;
///Data of this type is not supported.
pub const ERROR_UNSUPPORTED_TYPE: DWORD = 0x0000065E;
///The Windows Installer service failed to start. Contact your support personnel.
pub const ERROR_CREATE_FAILED: DWORD = 0x0000065F;
///The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.
pub const ERROR_INSTALL_TEMP_UNWRITABLE: DWORD = 0x00000660;
///This installation package is not supported by this processor type. Contact your product vendor.
pub const ERROR_INSTALL_PLATFORM_UNSUPPORTED: DWORD = 0x00000661;
///Component not used on this computer.
pub const ERROR_INSTALL_NOTUSED: DWORD = 0x00000662;
///This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.
pub const ERROR_PATCH_PACKAGE_OPEN_FAILED: DWORD = 0x00000663;
///This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package.
pub const ERROR_PATCH_PACKAGE_INVALID: DWORD = 0x00000664;
///This update package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
pub const ERROR_PATCH_PACKAGE_UNSUPPORTED: DWORD = 0x00000665;
///Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs in Control Panel.
pub const ERROR_PRODUCT_VERSION: DWORD = 0x00000666;
///Invalid command-line argument. Consult the Windows Installer SDK for detailed command line help.
pub const ERROR_INVALID_COMMAND_LINE: DWORD = 0x00000667;
///Only administrators have permission to add, remove, or configure server software during a Terminal Services remote session. If you want to install or configure software on the server, contact your network administrator.
pub const ERROR_INSTALL_REMOTE_DISALLOWED: DWORD = 0x00000668;
///The requested operation completed successfully. The system will be restarted so the changes can take effect.
pub const ERROR_SUCCESS_REBOOT_INITIATED: DWORD = 0x00000669;
///The upgrade cannot be installed by the Windows Installer service because the program to be upgraded might be missing, or the upgrade might update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
pub const ERROR_PATCH_TARGET_NOT_FOUND: DWORD = 0x0000066A;
///The update package is not permitted by a software restriction policy.
pub const ERROR_PATCH_PACKAGE_REJECTED: DWORD = 0x0000066B;
///One or more customizations are not permitted by a software restriction policy.
pub const ERROR_INSTALL_TRANSFORM_REJECTED: DWORD = 0x0000066C;
///The Windows Installer does not permit installation from a Remote Desktop Connection.
pub const ERROR_INSTALL_REMOTE_PROHIBITED: DWORD = 0x0000066D;
///Uninstallation of the update package is not supported.
pub const ERROR_PATCH_REMOVAL_UNSUPPORTED: DWORD = 0x0000066E;
///The update is not applied to this product.
pub const ERROR_UNKNOWN_PATCH: DWORD = 0x0000066F;
///No valid sequence could be found for the set of updates.
pub const ERROR_PATCH_NO_SEQUENCE: DWORD = 0x00000670;
///Update removal was disallowed by policy.
pub const ERROR_PATCH_REMOVAL_DISALLOWED: DWORD = 0x00000671;
///The XML update data is invalid.
pub const ERROR_INVALID_PATCH_XML: DWORD = 0x00000672;
///Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update.
pub const ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT: DWORD = 0x00000673;
///The Windows Installer service is not accessible in Safe Mode. Try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state.
pub const ERROR_INSTALL_SERVICE_SAFEBOOT: DWORD = 0x00000674;
///The string binding is invalid.
pub const RPC_S_INVALID_STRING_BINDING: DWORD = 0x000006A4;
///The binding handle is not the correct type.
pub const RPC_S_WRONG_KIND_OF_BINDING: DWORD = 0x000006A5;
///The binding handle is invalid.
pub const RPC_S_INVALID_BINDING: DWORD = 0x000006A6;
///The RPC protocol sequence is not supported.
pub const RPC_S_PROTSEQ_NOT_SUPPORTED: DWORD = 0x000006A7;
///The RPC protocol sequence is invalid.
pub const RPC_S_INVALID_RPC_PROTSEQ: DWORD = 0x000006A8;
///The string UUID is invalid.
pub const RPC_S_INVALID_STRING_UUID: DWORD = 0x000006A9;
///The endpoint format is invalid.
pub const RPC_S_INVALID_ENDPOINT_FORMAT: DWORD = 0x000006AA;
///The network address is invalid.
pub const RPC_S_INVALID_NET_ADDR: DWORD = 0x000006AB;
///No endpoint was found.
pub const RPC_S_NO_ENDPOINT_FOUND: DWORD = 0x000006AC;
///The time-out value is invalid.
pub const RPC_S_INVALID_TIMEOUT: DWORD = 0x000006AD;
///The object UUID) was not found.
pub const RPC_S_OBJECT_NOT_FOUND: DWORD = 0x000006AE;
///The object UUID) has already been registered.
pub const RPC_S_ALREADY_REGISTERED: DWORD = 0x000006AF;
///The type UUID has already been registered.
pub const RPC_S_TYPE_ALREADY_REGISTERED: DWORD = 0x000006B0;
///The RPC server is already listening.
pub const RPC_S_ALREADY_LISTENING: DWORD = 0x000006B1;
///No protocol sequences have been registered.
pub const RPC_S_NO_PROTSEQS_REGISTERED: DWORD = 0x000006B2;
///The RPC server is not listening.
pub const RPC_S_NOT_LISTENING: DWORD = 0x000006B3;
///The manager type is unknown.
pub const RPC_S_UNKNOWN_MGR_TYPE: DWORD = 0x000006B4;
///The interface is unknown.
pub const RPC_S_UNKNOWN_IF: DWORD = 0x000006B5;
///There are no bindings.
pub const RPC_S_NO_BINDINGS: DWORD = 0x000006B6;
///There are no protocol sequences.
pub const RPC_S_NO_PROTSEQS: DWORD = 0x000006B7;
///The endpoint cannot be created.
pub const RPC_S_CANT_CREATE_ENDPOINT: DWORD = 0x000006B8;
///Not enough resources are available to complete this operation.
pub const RPC_S_OUT_OF_RESOURCES: DWORD = 0x000006B9;
///The RPC server is unavailable.
pub const RPC_S_SERVER_UNAVAILABLE: DWORD = 0x000006BA;
///The RPC server is too busy to complete this operation.
pub const RPC_S_SERVER_TOO_BUSY: DWORD = 0x000006BB;
///The network options are invalid.
pub const RPC_S_INVALID_NETWORK_OPTIONS: DWORD = 0x000006BC;
///There are no RPCs active on this thread.
pub const RPC_S_NO_CALL_ACTIVE: DWORD = 0x000006BD;
///The RPC failed.
pub const RPC_S_CALL_FAILED: DWORD = 0x000006BE;
///The RPC failed and did not execute.
pub const RPC_S_CALL_FAILED_DNE: DWORD = 0x000006BF;
///An RPC protocol error occurred.
pub const RPC_S_PROTOCOL_ERROR: DWORD = 0x000006C0;
///Access to the HTTP proxy is denied.
pub const RPC_S_PROXY_ACCESS_DENIED: DWORD = 0x000006C1;
///The transfer syntax is not supported by the RPC server.
pub const RPC_S_UNSUPPORTED_TRANS_SYN: DWORD = 0x000006C2;
///The UUID type is not supported.
pub const RPC_S_UNSUPPORTED_TYPE: DWORD = 0x000006C4;
///The tag is invalid.
pub const RPC_S_INVALID_TAG: DWORD = 0x000006C5;
///The array bounds are invalid.
pub const RPC_S_INVALID_BOUND: DWORD = 0x000006C6;
///The binding does not contain an entry name.
pub const RPC_S_NO_ENTRY_NAME: DWORD = 0x000006C7;
///The name syntax is invalid.
pub const RPC_S_INVALID_NAME_SYNTAX: DWORD = 0x000006C8;
///The name syntax is not supported.
pub const RPC_S_UNSUPPORTED_NAME_SYNTAX: DWORD = 0x000006C9;
///No network address is available to use to construct a UUID.
pub const RPC_S_UUID_NO_ADDRESS: DWORD = 0x000006CB;
///The endpoint is a duplicate.
pub const RPC_S_DUPLICATE_ENDPOINT: DWORD = 0x000006CC;
///The authentication type is unknown.
pub const RPC_S_UNKNOWN_AUTHN_TYPE: DWORD = 0x000006CD;
///The maximum number of calls is too small.
pub const RPC_S_MAX_CALLS_TOO_SMALL: DWORD = 0x000006CE;
///The string is too long.
pub const RPC_S_STRING_TOO_LONG: DWORD = 0x000006CF;
///The RPC protocol sequence was not found.
pub const RPC_S_PROTSEQ_NOT_FOUND: DWORD = 0x000006D0;
///The procedure number is out of range.
pub const RPC_S_PROCNUM_OUT_OF_RANGE: DWORD = 0x000006D1;
///The binding does not contain any authentication information.
pub const RPC_S_BINDING_HAS_NO_AUTH: DWORD = 0x000006D2;
///The authentication service is unknown.
pub const RPC_S_UNKNOWN_AUTHN_SERVICE: DWORD = 0x000006D3;
///The authentication level is unknown.
pub const RPC_S_UNKNOWN_AUTHN_LEVEL: DWORD = 0x000006D4;
///The security context is invalid.
pub const RPC_S_INVALID_AUTH_IDENTITY: DWORD = 0x000006D5;
///The authorization service is unknown.
pub const RPC_S_UNKNOWN_AUTHZ_SERVICE: DWORD = 0x000006D6;
///The entry is invalid.
pub const EPT_S_INVALID_ENTRY: DWORD = 0x000006D7;
///The server endpoint cannot perform the operation.
pub const EPT_S_CANT_PERFORM_OP: DWORD = 0x000006D8;
///There are no more endpoints available from the endpoint mapper.
pub const EPT_S_NOT_REGISTERED: DWORD = 0x000006D9;
///No interfaces have been exported.
pub const RPC_S_NOTHING_TO_EXPORT: DWORD = 0x000006DA;
///The entry name is incomplete.
pub const RPC_S_INCOMPLETE_NAME: DWORD = 0x000006DB;
///The version option is invalid.
pub const RPC_S_INVALID_VERS_OPTION: DWORD = 0x000006DC;
///There are no more members.
pub const RPC_S_NO_MORE_MEMBERS: DWORD = 0x000006DD;
///There is nothing to unexport.
pub const RPC_S_NOT_ALL_OBJS_UNEXPORTED: DWORD = 0x000006DE;
///The interface was not found.
pub const RPC_S_INTERFACE_NOT_FOUND: DWORD = 0x000006DF;
///The entry already exists.
pub const RPC_S_ENTRY_ALREADY_EXISTS: DWORD = 0x000006E0;
///The entry is not found.
pub const RPC_S_ENTRY_NOT_FOUND: DWORD = 0x000006E1;
///The name service is unavailable.
pub const RPC_S_NAME_SERVICE_UNAVAILABLE: DWORD = 0x000006E2;
///The network address family is invalid.
pub const RPC_S_INVALID_NAF_ID: DWORD = 0x000006E3;
///The requested operation is not supported.
pub const RPC_S_CANNOT_SUPPORT: DWORD = 0x000006E4;
///No security context is available to allow impersonation.
pub const RPC_S_NO_CONTEXT_AVAILABLE: DWORD = 0x000006E5;
///An internal error occurred in an RPC.
pub const RPC_S_INTERNAL_ERROR: DWORD = 0x000006E6;
///The RPC server attempted an integer division by zero.
pub const RPC_S_ZERO_DIVIDE: DWORD = 0x000006E7;
///An addressing error occurred in the RPC server.
pub const RPC_S_ADDRESS_ERROR: DWORD = 0x000006E8;
///A floating-point operation at the RPC server caused a division by zero.
pub const RPC_S_FP_DIV_ZERO: DWORD = 0x000006E9;
///A floating-point underflow occurred at the RPC server.
pub const RPC_S_FP_UNDERFLOW: DWORD = 0x000006EA;
///A floating-point overflow occurred at the RPC server.
pub const RPC_S_FP_OVERFLOW: DWORD = 0x000006EB;
///The list of RPC servers available for the binding of auto handles has been exhausted.
pub const RPC_X_NO_MORE_ENTRIES: DWORD = 0x000006EC;
///Unable to open the character translation table file.
pub const RPC_X_SS_CHAR_TRANS_OPEN_FAIL: DWORD = 0x000006ED;
///The file containing the character translation table has fewer than 512 bytes.
pub const RPC_X_SS_CHAR_TRANS_SHORT_FILE: DWORD = 0x000006EE;
///A null context handle was passed from the client to the host during an RPC.
pub const RPC_X_SS_IN_NULL_CONTEXT: DWORD = 0x000006EF;
///The context handle changed during an RPC.
pub const RPC_X_SS_CONTEXT_DAMAGED: DWORD = 0x000006F1;
///The binding handles passed to an RPC do not match.
pub const RPC_X_SS_HANDLES_MISMATCH: DWORD = 0x000006F2;
///The stub is unable to get the RPC handle.
pub const RPC_X_SS_CANNOT_GET_CALL_HANDLE: DWORD = 0x000006F3;
///A null reference pointer was passed to the stub.
pub const RPC_X_NULL_REF_POINTER: DWORD = 0x000006F4;
///The enumeration value is out of range.
pub const RPC_X_ENUM_VALUE_OUT_OF_RANGE: DWORD = 0x000006F5;
///The byte count is too small.
pub const RPC_X_BYTE_COUNT_TOO_SMALL: DWORD = 0x000006F6;
///The stub received bad data.
pub const RPC_X_BAD_STUB_DATA: DWORD = 0x000006F7;
///The supplied user buffer is not valid for the requested operation.
pub const ERROR_INVALID_USER_BUFFER: DWORD = 0x000006F8;
///The disk media is not recognized. It might not be formatted.
pub const ERROR_UNRECOGNIZED_MEDIA: DWORD = 0x000006F9;
///The workstation does not have a trust secret.
pub const ERROR_NO_TRUST_LSA_SECRET: DWORD = 0x000006FA;
///The security database on the server does not have a computer account for this workstation trust relationship.
pub const ERROR_NO_TRUST_SAM_ACCOUNT: DWORD = 0x000006FB;
///The trust relationship between the primary domain and the trusted domain failed.
pub const ERROR_TRUSTED_DOMAIN_FAILURE: DWORD = 0x000006FC;
///The trust relationship between this workstation and the primary domain failed.
pub const ERROR_TRUSTED_RELATIONSHIP_FAILURE: DWORD = 0x000006FD;
///The network logon failed.
pub const ERROR_TRUST_FAILURE: DWORD = 0x000006FE;
///An RPC is already in progress for this thread.
pub const RPC_S_CALL_IN_PROGRESS: DWORD = 0x000006FF;
///An attempt was made to log on, but the network logon service was not started.
pub const ERROR_NETLOGON_NOT_STARTED: DWORD = 0x00000700;
///The user's account has expired.
pub const ERROR_ACCOUNT_EXPIRED: DWORD = 0x00000701;
///The redirector is in use and cannot be unloaded.
pub const ERROR_REDIRECTOR_HAS_OPEN_HANDLES: DWORD = 0x00000702;
///The specified printer driver is already installed.
pub const ERROR_PRINTER_DRIVER_ALREADY_INSTALLED: DWORD = 0x00000703;
///The specified port is unknown.
pub const ERROR_UNKNOWN_PORT: DWORD = 0x00000704;
///The printer driver is unknown.
pub const ERROR_UNKNOWN_PRINTER_DRIVER: DWORD = 0x00000705;
///The print processor is unknown.
pub const ERROR_UNKNOWN_PRINTPROCESSOR: DWORD = 0x00000706;
///The specified separator file is invalid.
pub const ERROR_INVALID_SEPARATOR_FILE: DWORD = 0x00000707;
///The specified priority is invalid.
pub const ERROR_INVALID_PRIORITY: DWORD = 0x00000708;
///The printer name is invalid.
pub const ERROR_INVALID_PRINTER_NAME: DWORD = 0x00000709;
///The printer already exists.
pub const ERROR_PRINTER_ALREADY_EXISTS: DWORD = 0x0000070A;
///The printer command is invalid.
pub const ERROR_INVALID_PRINTER_COMMAND: DWORD = 0x0000070B;
///The specified data type is invalid.
pub const ERROR_INVALID_DATATYPE: DWORD = 0x0000070C;
///The environment specified is invalid.
pub const ERROR_INVALID_ENVIRONMENT: DWORD = 0x0000070D;
///There are no more bindings.
pub const RPC_S_NO_MORE_BINDINGS: DWORD = 0x0000070E;
///The account used is an interdomain trust account. Use your global user account or local user account to access this server.
pub const ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT: DWORD = 0x0000070F;
///The account used is a computer account. Use your global user account or local user account to access this server.
pub const ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT: DWORD = 0x00000710;
///The account used is a server trust account. Use your global user account or local user account to access this server.
pub const ERROR_NOLOGON_SERVER_TRUST_ACCOUNT: DWORD = 0x00000711;
///The name or SID of the domain specified is inconsistent with the trust information for that domain.
pub const ERROR_DOMAIN_TRUST_INCONSISTENT: DWORD = 0x00000712;
///The server is in use and cannot be unloaded.
pub const ERROR_SERVER_HAS_OPEN_HANDLES: DWORD = 0x00000713;
///The specified image file did not contain a resource section.
pub const ERROR_RESOURCE_DATA_NOT_FOUND: DWORD = 0x00000714;
///The specified resource type cannot be found in the image file.
pub const ERROR_RESOURCE_TYPE_NOT_FOUND: DWORD = 0x00000715;
///The specified resource name cannot be found in the image file.
pub const ERROR_RESOURCE_NAME_NOT_FOUND: DWORD = 0x00000716;
///The specified resource language ID cannot be found in the image file.
pub const ERROR_RESOURCE_LANG_NOT_FOUND: DWORD = 0x00000717;
///Not enough quota is available to process this command.
pub const ERROR_NOT_ENOUGH_QUOTA: DWORD = 0x00000718;
///No interfaces have been registered.
pub const RPC_S_NO_INTERFACES: DWORD = 0x00000719;
///The RPC was canceled.
pub const RPC_S_CALL_CANCELLED: DWORD = 0x0000071A;
///The binding handle does not contain all the required information.
pub const RPC_S_BINDING_INCOMPLETE: DWORD = 0x0000071B;
///A communications failure occurred during an RPC.
pub const RPC_S_COMM_FAILURE: DWORD = 0x0000071C;
///The requested authentication level is not supported.
pub const RPC_S_UNSUPPORTED_AUTHN_LEVEL: DWORD = 0x0000071D;
///No principal name is registered.
pub const RPC_S_NO_PRINC_NAME: DWORD = 0x0000071E;
///The error specified is not a valid Windows RPC error code.
pub const RPC_S_NOT_RPC_ERROR: DWORD = 0x0000071F;
///A UUID that is valid only on this computer has been allocated.
pub const RPC_S_UUID_LOCAL_ONLY: DWORD = 0x00000720;
///A security package-specific error occurred.
pub const RPC_S_SEC_PKG_ERROR: DWORD = 0x00000721;
///The thread is not canceled.
pub const RPC_S_NOT_CANCELLED: DWORD = 0x00000722;
///Invalid operation on the encoding/decoding handle.
pub const RPC_X_INVALID_ES_ACTION: DWORD = 0x00000723;
///Incompatible version of the serializing package.
pub const RPC_X_WRONG_ES_VERSION: DWORD = 0x00000724;
///Incompatible version of the RPC stub.
pub const RPC_X_WRONG_STUB_VERSION: DWORD = 0x00000725;
///The RPC pipe object is invalid or corrupted.
pub const RPC_X_INVALID_PIPE_OBJECT: DWORD = 0x00000726;
///An invalid operation was attempted on an RPC pipe object.
pub const RPC_X_WRONG_PIPE_ORDER: DWORD = 0x00000727;
///Unsupported RPC pipe version.
pub const RPC_X_WRONG_PIPE_VERSION: DWORD = 0x00000728;
///The group member was not found.
pub const RPC_S_GROUP_MEMBER_NOT_FOUND: DWORD = 0x0000076A;
///The endpoint mapper database entry could not be created.
pub const EPT_S_CANT_CREATE: DWORD = 0x0000076B;
///The object UUID is the nil UUID.
pub const RPC_S_INVALID_OBJECT: DWORD = 0x0000076C;
///The specified time is invalid.
pub const ERROR_INVALID_TIME: DWORD = 0x0000076D;
///The specified form name is invalid.
pub const ERROR_INVALID_FORM_NAME: DWORD = 0x0000076E;
///The specified form size is invalid.
pub const ERROR_INVALID_FORM_SIZE: DWORD = 0x0000076F;
///The specified printer handle is already being waited on.
pub const ERROR_ALREADY_WAITING: DWORD = 0x00000770;
///The specified printer has been deleted.
pub const ERROR_PRINTER_DELETED: DWORD = 0x00000771;
///The state of the printer is invalid.
pub const ERROR_INVALID_PRINTER_STATE: DWORD = 0x00000772;
///The user's password must be changed before logging on the first time.
pub const ERROR_PASSWORD_MUST_CHANGE: DWORD = 0x00000773;
///Could not find the domain controller for this domain.
pub const ERROR_DOMAIN_CONTROLLER_NOT_FOUND: DWORD = 0x00000774;
///The referenced account is currently locked out and cannot be logged on to.
pub const ERROR_ACCOUNT_LOCKED_OUT: DWORD = 0x00000775;
///The object exporter specified was not found.
pub const OR_INVALID_OXID: DWORD = 0x00000776;
///The object specified was not found.
pub const OR_INVALID_OID: DWORD = 0x00000777;
///The object set specified was not found.
pub const OR_INVALID_SET: DWORD = 0x00000778;
///Some data remains to be sent in the request buffer.
pub const RPC_S_SEND_INCOMPLETE: DWORD = 0x00000779;
///Invalid asynchronous RPC handle.
pub const RPC_S_INVALID_ASYNC_HANDLE: DWORD = 0x0000077A;
///Invalid asynchronous RPC call handle for this operation.
pub const RPC_S_INVALID_ASYNC_CALL: DWORD = 0x0000077B;
///The RPC pipe object has already been closed.
pub const RPC_X_PIPE_CLOSED: DWORD = 0x0000077C;
///The RPC call completed before all pipes were processed.
pub const RPC_X_PIPE_DISCIPLINE_ERROR: DWORD = 0x0000077D;
///No more data is available from the RPC pipe.
pub const RPC_X_PIPE_EMPTY: DWORD = 0x0000077E;
///No site name is available for this machine.
pub const ERROR_NO_SITENAME: DWORD = 0x0000077F;
///The file cannot be accessed by the system.
pub const ERROR_CANT_ACCESS_FILE: DWORD = 0x00000780;
///The name of the file cannot be resolved by the system.
pub const ERROR_CANT_RESOLVE_FILENAME: DWORD = 0x00000781;
///The entry is not of the expected type.
pub const RPC_S_ENTRY_TYPE_MISMATCH: DWORD = 0x00000782;
///Not all object UUIDs could be exported to the specified entry.
pub const RPC_S_NOT_ALL_OBJS_EXPORTED: DWORD = 0x00000783;
///The interface could not be exported to the specified entry.
pub const RPC_S_INTERFACE_NOT_EXPORTED: DWORD = 0x00000784;
///The specified profile entry could not be added.
pub const RPC_S_PROFILE_NOT_ADDED: DWORD = 0x00000785;
///The specified profile element could not be added.
pub const RPC_S_PRF_ELT_NOT_ADDED: DWORD = 0x00000786;
///The specified profile element could not be removed.
pub const RPC_S_PRF_ELT_NOT_REMOVED: DWORD = 0x00000787;
///The group element could not be added.
pub const RPC_S_GRP_ELT_NOT_ADDED: DWORD = 0x00000788;
///The group element could not be removed.
pub const RPC_S_GRP_ELT_NOT_REMOVED: DWORD = 0x00000789;
///The printer driver is not compatible with a policy enabled on your computer that blocks Windows NT 4.0 operating system drivers.
pub const ERROR_KM_DRIVER_BLOCKED: DWORD = 0x0000078A;
///The context has expired and can no longer be used.
pub const ERROR_CONTEXT_EXPIRED: DWORD = 0x0000078B;
///The current user's delegated trust creation quota has been exceeded.
pub const ERROR_PER_USER_TRUST_QUOTA_EXCEEDED: DWORD = 0x0000078C;
///The total delegated trust creation quota has been exceeded.
pub const ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED: DWORD = 0x0000078D;
///The current user's delegated trust deletion quota has been exceeded.
pub const ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED: DWORD = 0x0000078E;
///Logon failure: The machine you are logging on to is protected by an authentication firewall. The specified account is not allowed to authenticate to the machine.
pub const ERROR_AUTHENTICATION_FIREWALL_FAILED: DWORD = 0x0000078F;
///Remote connections to the Print Spooler are blocked by a policy set on your machine.
pub const ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED: DWORD = 0x00000790;
///The pixel format is invalid.
pub const ERROR_INVALID_PIXEL_FORMAT: DWORD = 0x000007D0;
///The specified driver is invalid.
pub const ERROR_BAD_DRIVER: DWORD = 0x000007D1;
///The window style or class attribute is invalid for this operation.
pub const ERROR_INVALID_WINDOW_STYLE: DWORD = 0x000007D2;
///The requested metafile operation is not supported.
pub const ERROR_METAFILE_NOT_SUPPORTED: DWORD = 0x000007D3;
///The requested transformation operation is not supported.
pub const ERROR_TRANSFORM_NOT_SUPPORTED: DWORD = 0x000007D4;
///The requested clipping operation is not supported.
pub const ERROR_CLIPPING_NOT_SUPPORTED: DWORD = 0x000007D5;
///The specified color management module is invalid.
pub const ERROR_INVALID_CMM: DWORD = 0x000007DA;
///The specified color profile is invalid.
pub const ERROR_INVALID_PROFILE: DWORD = 0x000007DB;
///The specified tag was not found.
pub const ERROR_TAG_NOT_FOUND: DWORD = 0x000007DC;
///A required tag is not present.
pub const ERROR_TAG_NOT_PRESENT: DWORD = 0x000007DD;
///The specified tag is already present.
pub const ERROR_DUPLICATE_TAG: DWORD = 0x000007DE;
///The specified color profile is not associated with any device.
pub const ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE: DWORD = 0x000007DF;
///The specified color profile was not found.
pub const ERROR_PROFILE_NOT_FOUND: DWORD = 0x000007E0;
///The specified color space is invalid.
pub const ERROR_INVALID_COLORSPACE: DWORD = 0x000007E1;
///Image Color Management is not enabled.
pub const ERROR_ICM_NOT_ENABLED: DWORD = 0x000007E2;
///There was an error while deleting the color transform.
pub const ERROR_DELETING_ICM_XFORM: DWORD = 0x000007E3;
///The specified color transform is invalid.
pub const ERROR_INVALID_TRANSFORM: DWORD = 0x000007E4;
///The specified transform does not match the bitmap's color space.
pub const ERROR_COLORSPACE_MISMATCH: DWORD = 0x000007E5;
///The specified named color index is not present in the profile.
pub const ERROR_INVALID_COLORINDEX: DWORD = 0x000007E6;
///The specified profile is intended for a device of a different type than the specified device.
pub const ERROR_PROFILE_DOES_NOT_MATCH_DEVICE: DWORD = 0x000007E7;
///The workstation driver is not installed.
pub const NERR_NetNotStarted: DWORD = 0x00000836;
///The server could not be located.
pub const NERR_UnknownServer: DWORD = 0x00000837;
///An internal error occurred. The network cannot access a shared memory segment.
pub const NERR_ShareMem: DWORD = 0x00000838;
///A network resource shortage occurred.
pub const NERR_NoNetworkResource: DWORD = 0x00000839;
///This operation is not supported on workstations.
pub const NERR_RemoteOnly: DWORD = 0x0000083A;
///The device is not connected.
pub const NERR_DevNotRedirected: DWORD = 0x0000083B;
///The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.
pub const ERROR_CONNECTED_OTHER_PASSWORD: DWORD = 0x0000083C;
///The network connection was made successfully using default credentials.
pub const ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT: DWORD = 0x0000083D;
///The Server service is not started.
pub const NERR_ServerNotStarted: DWORD = 0x00000842;
///The queue is empty.
pub const NERR_ItemNotFound: DWORD = 0x00000843;
///The device or directory does not exist.
pub const NERR_UnknownDevDir: DWORD = 0x00000844;
///The operation is invalid on a redirected resource.
pub const NERR_RedirectedPath: DWORD = 0x00000845;
///The name has already been shared.
pub const NERR_DuplicateShare: DWORD = 0x00000846;
///The server is currently out of the requested resource.
pub const NERR_NoRoom: DWORD = 0x00000847;
///Requested addition of items exceeds the maximum allowed.
pub const NERR_TooManyItems: DWORD = 0x00000849;
///The Peer service supports only two simultaneous users.
pub const NERR_InvalidMaxUsers: DWORD = 0x0000084A;
///The API return buffer is too small.
pub const NERR_BufTooSmall: DWORD = 0x0000084B;
///A remote API error occurred.
pub const NERR_RemoteErr: DWORD = 0x0000084F;
///An error occurred when opening or reading the configuration file.
pub const NERR_LanmanIniError: DWORD = 0x00000853;
///A general network error occurred.
pub const NERR_NetworkError: DWORD = 0x00000858;
///The Workstation service is in an inconsistent state. Restart the computer before restarting the Workstation service.
pub const NERR_WkstaInconsistentState: DWORD = 0x00000859;
///The Workstation service has not been started.
pub const NERR_WkstaNotStarted: DWORD = 0x0000085A;
///The requested information is not available.
pub const NERR_BrowserNotStarted: DWORD = 0x0000085B;
///An internal error occurred.
pub const NERR_InternalError: DWORD = 0x0000085C;
///The server is not configured for transactions.
pub const NERR_BadTransactConfig: DWORD = 0x0000085D;
///The requested API is not supported on the remote server.
pub const NERR_InvalidAPI: DWORD = 0x0000085E;
///The event name is invalid.
pub const NERR_BadEventName: DWORD = 0x0000085F;
///The computer name already exists on the network. Change it and reboot the computer.
pub const NERR_DupNameReboot: DWORD = 0x00000860;
///The specified component could not be found in the configuration information.
pub const NERR_CfgCompNotFound: DWORD = 0x00000862;
///The specified parameter could not be found in the configuration information.
pub const NERR_CfgParamNotFound: DWORD = 0x00000863;
///A line in the configuration file is too long.
pub const NERR_LineTooLong: DWORD = 0x00000865;
///The printer does not exist.
pub const NERR_QNotFound: DWORD = 0x00000866;
///The print job does not exist.
pub const NERR_JobNotFound: DWORD = 0x00000867;
///The printer destination cannot be found.
pub const NERR_DestNotFound: DWORD = 0x00000868;
///The printer destination already exists.
pub const NERR_DestExists: DWORD = 0x00000869;
///The print queue already exists.
pub const NERR_QExists: DWORD = 0x0000086A;
///No more printers can be added.
pub const NERR_QNoRoom: DWORD = 0x0000086B;
///No more print jobs can be added.
pub const NERR_JobNoRoom: DWORD = 0x0000086C;
///No more printer destinations can be added.
pub const NERR_DestNoRoom: DWORD = 0x0000086D;
///This printer destination is idle and cannot accept control operations.
pub const NERR_DestIdle: DWORD = 0x0000086E;
///This printer destination request contains an invalid control function.
pub const NERR_DestInvalidOp: DWORD = 0x0000086F;
///The print processor is not responding.
pub const NERR_ProcNoRespond: DWORD = 0x00000870;
///The spooler is not running.
pub const NERR_SpoolerNotLoaded: DWORD = 0x00000871;
///This operation cannot be performed on the print destination in its current state.
pub const NERR_DestInvalidState: DWORD = 0x00000872;
///This operation cannot be performed on the print queue in its current state.
pub const NERR_QinvalidState: DWORD = 0x00000873;
///This operation cannot be performed on the print job in its current state.
pub const NERR_JobInvalidState: DWORD = 0x00000874;
///A spooler memory allocation failure occurred.
pub const NERR_SpoolNoMemory: DWORD = 0x00000875;
///The device driver does not exist.
pub const NERR_DriverNotFound: DWORD = 0x00000876;
///The data type is not supported by the print processor.
pub const NERR_DataTypeInvalid: DWORD = 0x00000877;
///The print processor is not installed.
pub const NERR_ProcNotFound: DWORD = 0x00000878;
///The service database is locked.
pub const NERR_ServiceTableLocked: DWORD = 0x00000884;
///The service table is full.
pub const NERR_ServiceTableFull: DWORD = 0x00000885;
///The requested service has already been started.
pub const NERR_ServiceInstalled: DWORD = 0x00000886;
///The service does not respond to control actions.
pub const NERR_ServiceEntryLocked: DWORD = 0x00000887;
///The service has not been started.
pub const NERR_ServiceNotInstalled: DWORD = 0x00000888;
///The service name is invalid.
pub const NERR_BadServiceName: DWORD = 0x00000889;
///The service is not responding to the control function.
pub const NERR_ServiceCtlTimeout: DWORD = 0x0000088A;
///The service control is busy.
pub const NERR_ServiceCtlBusy: DWORD = 0x0000088B;
///The configuration file contains an invalid service program name.
pub const NERR_BadServiceProgName: DWORD = 0x0000088C;
///The service could not be controlled in its present state.
pub const NERR_ServiceNotCtrl: DWORD = 0x0000088D;
///The service ended abnormally.
pub const NERR_ServiceKillProc: DWORD = 0x0000088E;
///The requested pause or stop is not valid for this service.
pub const NERR_ServiceCtlNotValid: DWORD = 0x0000088F;
///The service control dispatcher could not find the service name in the dispatch table.
pub const NERR_NotInDispatchTbl: DWORD = 0x00000890;
///The service control dispatcher pipe read failed.
pub const NERR_BadControlRecv: DWORD = 0x00000891;
///A thread for the new service could not be created.
pub const NERR_ServiceNotStarting: DWORD = 0x00000892;
///This workstation is already logged on to the LAN.
pub const NERR_AlreadyLoggedOn: DWORD = 0x00000898;
///The workstation is not logged on to the LAN.
pub const NERR_NotLoggedOn: DWORD = 0x00000899;
///The user name or group name parameter is invalid.
pub const NERR_BadUsername: DWORD = 0x0000089A;
///The password parameter is invalid.
pub const NERR_BadPassword: DWORD = 0x0000089B;
///The logon processor did not add the message alias.
pub const NERR_UnableToAddName_W: DWORD = 0x0000089C;
///The logon processor did not add the message alias.
pub const NERR_UnableToAddName_F: DWORD = 0x0000089D;
///The logoff processor did not delete the message alias.
pub const NERR_UnableToDelName_W: DWORD = 0x0000089E;
///The logoff processor did not delete the message alias.
pub const NERR_UnableToDelName_F: DWORD = 0x0000089F;
///Network logons are paused.
pub const NERR_LogonsPaused: DWORD = 0x000008A1;
///A centralized logon server conflict occurred.
pub const NERR_LogonServerConflict: DWORD = 0x000008A2;
///The server is configured without a valid user path.
pub const NERR_LogonNoUserPath: DWORD = 0x000008A3;
///An error occurred while loading or running the logon script.
pub const NERR_LogonScriptError: DWORD = 0x000008A4;
///The logon server was not specified. The computer will be logged on as STANDALONE.
pub const NERR_StandaloneLogon: DWORD = 0x000008A6;
///The logon server could not be found.
pub const NERR_LogonServerNotFound: DWORD = 0x000008A7;
///There is already a logon domain for this computer.
pub const NERR_LogonDomainExists: DWORD = 0x000008A8;
///The logon server could not validate the logon.
pub const NERR_NonValidatedLogon: DWORD = 0x000008A9;
///The security database could not be found.
pub const NERR_ACFNotFound: DWORD = 0x000008AB;
///The group name could not be found.
pub const NERR_GroupNotFound: DWORD = 0x000008AC;
///The user name could not be found.
pub const NERR_UserNotFound: DWORD = 0x000008AD;
///The resource name could not be found.
pub const NERR_ResourceNotFound: DWORD = 0x000008AE;
///The group already exists.
pub const NERR_GroupExists: DWORD = 0x000008AF;
///The user account already exists.
pub const NERR_UserExists: DWORD = 0x000008B0;
///The resource permission list already exists.
pub const NERR_ResourceExists: DWORD = 0x000008B1;
///This operation is allowed only on the PDC of the domain.
pub const NERR_NotPrimary: DWORD = 0x000008B2;
///The security database has not been started.
pub const NERR_ACFNotLoaded: DWORD = 0x000008B3;
///There are too many names in the user accounts database.
pub const NERR_ACFNoRoom: DWORD = 0x000008B4;
///A disk I/O failure occurred.
pub const NERR_ACFFileIOFail: DWORD = 0x000008B5;
///The limit of 64 entries per resource was exceeded.
pub const NERR_ACFTooManyLists: DWORD = 0x000008B6;
///Deleting a user with a session is not allowed.
pub const NERR_UserLogon: DWORD = 0x000008B7;
///The parent directory could not be located.
pub const NERR_ACFNoParent: DWORD = 0x000008B8;
///Unable to add to the security database session cache segment.
pub const NERR_CanNotGrowSegment: DWORD = 0x000008B9;
///This operation is not allowed on this special group.
pub const NERR_SpeGroupOp: DWORD = 0x000008BA;
///This user is not cached in the user accounts database session cache.
pub const NERR_NotInCache: DWORD = 0x000008BB;
///The user already belongs to this group.
pub const NERR_UserInGroup: DWORD = 0x000008BC;
///The user does not belong to this group.
pub const NERR_UserNotInGroup: DWORD = 0x000008BD;
///This user account is undefined.
pub const NERR_AccountUndefined: DWORD = 0x000008BE;
///This user account has expired.
pub const NERR_AccountExpired: DWORD = 0x000008BF;
///The user is not allowed to log on from this workstation.
pub const NERR_InvalidWorkstation: DWORD = 0x000008C0;
///The user is not allowed to log on at this time.
pub const NERR_InvalidLogonHours: DWORD = 0x000008C1;
///The password of this user has expired.
pub const NERR_PasswordExpired: DWORD = 0x000008C2;
///The password of this user cannot change.
pub const NERR_PasswordCantChange: DWORD = 0x000008C3;
///This password cannot be used now.
pub const NERR_PasswordHistConflict: DWORD = 0x000008C4;
///The password does not meet the password policy requirements. Check the minimum password length, password complexity, and password history requirements.
pub const NERR_PasswordTooShort: DWORD = 0x000008C5;
///The password of this user is too recent to change.
pub const NERR_PasswordTooRecent: DWORD = 0x000008C6;
///The security database is corrupted.
pub const NERR_InvalidDatabase: DWORD = 0x000008C7;
///No updates are necessary to this replicant network or local security database.
pub const NERR_DatabaseUpToDate: DWORD = 0x000008C8;
///This replicant database is outdated; synchronization is required.
pub const NERR_SyncRequired: DWORD = 0x000008C9;
///The network connection could not be found.
pub const NERR_UseNotFound: DWORD = 0x000008CA;
///This asg_type is invalid.
pub const NERR_BadAsgType: DWORD = 0x000008CB;
///This device is currently being shared.
pub const NERR_DeviceIsShared: DWORD = 0x000008CC;
///The computer name could not be added as a message alias. The name might already exist on the network.
pub const NERR_NoComputerName: DWORD = 0x000008DE;
///The Messenger service is already started.
pub const NERR_MsgAlreadyStarted: DWORD = 0x000008DF;
///The Messenger service failed to start.
pub const NERR_MsgInitFailed: DWORD = 0x000008E0;
///The message alias could not be found on the network.
pub const NERR_NameNotFound: DWORD = 0x000008E1;
///This message alias has already been forwarded.
pub const NERR_AlreadyForwarded: DWORD = 0x000008E2;
///This message alias has been added but is still forwarded.
pub const NERR_AddForwarded: DWORD = 0x000008E3;
///This message alias already exists locally.
pub const NERR_AlreadyExists: DWORD = 0x000008E4;
///The maximum number of added message aliases has been exceeded.
pub const NERR_TooManyNames: DWORD = 0x000008E5;
///The computer name could not be deleted.
pub const NERR_DelComputerName: DWORD = 0x000008E6;
///Messages cannot be forwarded back to the same workstation.
pub const NERR_LocalForward: DWORD = 0x000008E7;
///An error occurred in the domain message processor.
pub const NERR_GrpMsgProcessor: DWORD = 0x000008E8;
///The message was sent, but the recipient has paused the Messenger service.
pub const NERR_PausedRemote: DWORD = 0x000008E9;
///The message was sent but not received.
pub const NERR_BadReceive: DWORD = 0x000008EA;
///The message alias is currently in use. Try again later.
pub const NERR_NameInUse: DWORD = 0x000008EB;
///The Messenger service has not been started.
pub const NERR_MsgNotStarted: DWORD = 0x000008EC;
///The name is not on the local computer.
pub const NERR_NotLocalName: DWORD = 0x000008ED;
///The forwarded message alias could not be found on the network.
pub const NERR_NoForwardName: DWORD = 0x000008EE;
///The message alias table on the remote station is full.
pub const NERR_RemoteFull: DWORD = 0x000008EF;
///Messages for this alias are not currently being forwarded.
pub const NERR_NameNotForwarded: DWORD = 0x000008F0;
///The broadcast message was truncated.
pub const NERR_TruncatedBroadcast: DWORD = 0x000008F1;
///This is an invalid device name.
pub const NERR_InvalidDevice: DWORD = 0x000008F6;
///A write fault occurred.
pub const NERR_WriteFault: DWORD = 0x000008F7;
///A duplicate message alias exists on the network.
pub const NERR_DuplicateName: DWORD = 0x000008F9;
///This message alias will be deleted later.
pub const NERR_DeleteLater: DWORD = 0x000008FA;
///The message alias was not successfully deleted from all networks.
pub const NERR_IncompleteDel: DWORD = 0x000008FB;
///This operation is not supported on computers with multiple networks.
pub const NERR_MultipleNets: DWORD = 0x000008FC;
///This shared resource does not exist.
pub const NERR_NetNameNotFound: DWORD = 0x00000906;
///This device is not shared.
pub const NERR_DeviceNotShared: DWORD = 0x00000907;
///A session does not exist with that computer name.
pub const NERR_ClientNameNotFound: DWORD = 0x00000908;
///There is not an open file with that identification number.
pub const NERR_FileIdNotFound: DWORD = 0x0000090A;
///A failure occurred when executing a remote administration command.
pub const NERR_ExecFailure: DWORD = 0x0000090B;
///A failure occurred when opening a remote temporary file.
pub const NERR_TmpFile: DWORD = 0x0000090C;
///The data returned from a remote administration command has been truncated to 64 KB.
pub const NERR_TooMuchData: DWORD = 0x0000090D;
///This device cannot be shared as both a spooled and a nonspooled resource.
pub const NERR_DeviceShareConflict: DWORD = 0x0000090E;
///The information in the list of servers might be incorrect.
pub const NERR_BrowserTableIncomplete: DWORD = 0x0000090F;
///The computer is not active in this domain.
pub const NERR_NotLocalDomain: DWORD = 0x00000910;
///The share must be removed from the Distributed File System (DFS) before it can be deleted.
pub const NERR_IsDfsShare: DWORD = 0x00000911;
///The operation is invalid for this device.
pub const NERR_DevInvalidOpCode: DWORD = 0x0000091B;
///This device cannot be shared.
pub const NERR_DevNotFound: DWORD = 0x0000091C;
///This device was not open.
pub const NERR_DevNotOpen: DWORD = 0x0000091D;
///This device name list is invalid.
pub const NERR_BadQueueDevString: DWORD = 0x0000091E;
///The queue priority is invalid.
pub const NERR_BadQueuePriority: DWORD = 0x0000091F;
///There are no shared communication devices.
pub const NERR_NoCommDevs: DWORD = 0x00000921;
///The queue you specified does not exist.
pub const NERR_QueueNotFound: DWORD = 0x00000922;
///This list of devices is invalid.
pub const NERR_BadDevString: DWORD = 0x00000924;
///The requested device is invalid.
pub const NERR_BadDev: DWORD = 0x00000925;
///This device is already in use by the spooler.
pub const NERR_InUseBySpooler: DWORD = 0x00000926;
///This device is already in use as a communication device.
pub const NERR_CommDevInUse: DWORD = 0x00000927;
///This computer name is invalid.
pub const NERR_InvalidComputer: DWORD = 0x0000092F;
///The string and prefix specified are too long.
pub const NERR_MaxLenExceeded: DWORD = 0x00000932;
///This path component is invalid.
pub const NERR_BadComponent: DWORD = 0x00000934;
///Could not determine the type of input.
pub const NERR_CantType: DWORD = 0x00000935;
///The buffer for types is not big enough.
pub const NERR_TooManyEntries: DWORD = 0x0000093A;
///Profile files cannot exceed 64 KB.
pub const NERR_ProfileFileTooBig: DWORD = 0x00000942;
///The start offset is out of range.
pub const NERR_ProfileOffset: DWORD = 0x00000943;
///The system cannot delete current connections to network resources.
pub const NERR_ProfileCleanup: DWORD = 0x00000944;
///The system was unable to parse the command line in this file.
pub const NERR_ProfileUnknownCmd: DWORD = 0x00000945;
///An error occurred while loading the profile file.
pub const NERR_ProfileLoadErr: DWORD = 0x00000946;
///Errors occurred while saving the profile file. The profile was partially saved.
pub const NERR_ProfileSaveErr: DWORD = 0x00000947;
///Log file %1 is full.
pub const NERR_LogOverflow: DWORD = 0x00000949;
///This log file has changed between reads.
pub const NERR_LogFileChanged: DWORD = 0x0000094A;
///Log file %1 is corrupt.
pub const NERR_LogFileCorrupt: DWORD = 0x0000094B;
///The source path cannot be a directory.
pub const NERR_SourceIsDir: DWORD = 0x0000094C;
///The source path is illegal.
pub const NERR_BadSource: DWORD = 0x0000094D;
///The destination path is illegal.
pub const NERR_BadDest: DWORD = 0x0000094E;
///The source and destination paths are on different servers.
pub const NERR_DifferentServers: DWORD = 0x0000094F;
///The Run server you requested is paused.
pub const NERR_RunSrvPaused: DWORD = 0x00000951;
///An error occurred when communicating with a Run server.
pub const NERR_ErrCommRunSrv: DWORD = 0x00000955;
///An error occurred when starting a background process.
pub const NERR_ErrorExecingGhost: DWORD = 0x00000957;
///The shared resource you are connected to could not be found.
pub const NERR_ShareNotFound: DWORD = 0x00000958;
///The LAN adapter number is invalid.
pub const NERR_InvalidLana: DWORD = 0x00000960;
///There are open files on the connection.
pub const NERR_OpenFiles: DWORD = 0x00000961;
///Active connections still exist.
pub const NERR_ActiveConns: DWORD = 0x00000962;
///This share name or password is invalid.
pub const NERR_BadPasswordCore: DWORD = 0x00000963;
///The device is being accessed by an active process.
pub const NERR_DevInUse: DWORD = 0x00000964;
///The drive letter is in use locally.
pub const NERR_LocalDrive: DWORD = 0x00000965;
///The specified client is already registered for the specified event.
pub const NERR_AlertExists: DWORD = 0x0000097E;
///The alert table is full.
pub const NERR_TooManyAlerts: DWORD = 0x0000097F;
///An invalid or nonexistent alert name was raised.
pub const NERR_NoSuchAlert: DWORD = 0x00000980;
///The alert recipient is invalid.
pub const NERR_BadRecipient: DWORD = 0x00000981;
///A user's session with this server has been deleted.
pub const NERR_AcctLimitExceeded: DWORD = 0x00000982;
///The log file does not contain the requested record number.
pub const NERR_InvalidLogSeek: DWORD = 0x00000988;
///The user accounts database is not configured correctly.
pub const NERR_BadUasConfig: DWORD = 0x00000992;
///This operation is not permitted when the Net Logon service is running.
pub const NERR_InvalidUASOp: DWORD = 0x00000993;
///This operation is not allowed on the last administrative account.
pub const NERR_LastAdmin: DWORD = 0x00000994;
///Could not find the domain controller for this domain.
pub const NERR_DCNotFound: DWORD = 0x00000995;
///Could not set logon information for this user.
pub const NERR_LogonTrackingError: DWORD = 0x00000996;
///The Net Logon service has not been started.
pub const NERR_NetlogonNotStarted: DWORD = 0x00000997;
///Unable to add to the user accounts database.
pub const NERR_CanNotGrowUASFile: DWORD = 0x00000998;
///This server's clock is not synchronized with the PDC's clock.
pub const NERR_TimeDiffAtDC: DWORD = 0x00000999;
///A password mismatch has been detected.
pub const NERR_PasswordMismatch: DWORD = 0x0000099A;
///The server identification does not specify a valid server.
pub const NERR_NoSuchServer: DWORD = 0x0000099C;
///The session identification does not specify a valid session.
pub const NERR_NoSuchSession: DWORD = 0x0000099D;
///The connection identification does not specify a valid connection.
pub const NERR_NoSuchConnection: DWORD = 0x0000099E;
///There is no space for another entry in the table of available servers.
pub const NERR_TooManyServers: DWORD = 0x0000099F;
///The server has reached the maximum number of sessions it supports.
pub const NERR_TooManySessions: DWORD = 0x000009A0;
///The server has reached the maximum number of connections it supports.
pub const NERR_TooManyConnections: DWORD = 0x000009A1;
///The server cannot open more files because it has reached its maximum number.
pub const NERR_TooManyFiles: DWORD = 0x000009A2;
///There are no alternate servers registered on this server.
pub const NERR_NoAlternateServers: DWORD = 0x000009A3;
///Try the down-level (remote admin protocol) version of API instead.
pub const NERR_TryDownLevel: DWORD = 0x000009A6;
///The uninterruptible power supply (UPS) driver could not be accessed by the UPS service.
pub const NERR_UPSDriverNotStarted: DWORD = 0x000009B0;
///The UPS service is not configured correctly.
pub const NERR_UPSInvalidConfig: DWORD = 0x000009B1;
///The UPS service could not access the specified Comm Port.
pub const NERR_UPSInvalidCommPort: DWORD = 0x000009B2;
///The UPS indicated a line fail or low battery situation. Service not started.
pub const NERR_UPSSignalAsserted: DWORD = 0x000009B3;
///The UPS service failed to perform a system shut down.
pub const NERR_UPSShutdownFailed: DWORD = 0x000009B4;
///The program below returned an MS-DOS error code.
pub const NERR_BadDosRetCode: DWORD = 0x000009C4;
///The program below needs more memory.
pub const NERR_ProgNeedsExtraMem: DWORD = 0x000009C5;
///The program below called an unsupported MS-DOS function.
pub const NERR_BadDosFunction: DWORD = 0x000009C6;
///The workstation failed to boot.
pub const NERR_RemoteBootFailed: DWORD = 0x000009C7;
///The file below is corrupt.
pub const NERR_BadFileCheckSum: DWORD = 0x000009C8;
///No loader is specified in the boot-block definition file.
pub const NERR_NoRplBootSystem: DWORD = 0x000009C9;
///NetBIOS returned an error: The network control blocks (NCBs) and Server Message Block (SMB) are dumped above.
pub const NERR_RplLoadrNetBiosErr: DWORD = 0x000009CA;
///A disk I/O error occurred.
pub const NERR_RplLoadrDiskErr: DWORD = 0x000009CB;
///Image parameter substitution failed.
pub const NERR_ImageParamErr: DWORD = 0x000009CC;
///Too many image parameters cross disk sector boundaries.
pub const NERR_TooManyImageParams: DWORD = 0x000009CD;
///The image was not generated from an MS-DOS disk formatted with /S.
pub const NERR_NonDosFloppyUsed: DWORD = 0x000009CE;
///Remote boot will be restarted later.
pub const NERR_RplBootRestart: DWORD = 0x000009CF;
///The call to the Remoteboot server failed.
pub const NERR_RplSrvrCallFailed: DWORD = 0x000009D0;
///Cannot connect to the Remoteboot server.
pub const NERR_CantConnectRplSrvr: DWORD = 0x000009D1;
///Cannot open image file on the Remoteboot server.
pub const NERR_CantOpenImageFile: DWORD = 0x000009D2;
///Connecting to the Remoteboot server.
pub const NERR_CallingRplSrvr: DWORD = 0x000009D3;
///Connecting to the Remoteboot server.
pub const NERR_StartingRplBoot: DWORD = 0x000009D4;
///Remote boot service was stopped, check the error log for the cause of the problem.
pub const NERR_RplBootServiceTerm: DWORD = 0x000009D5;
///Remote boot startup failed; check the error log for the cause of the problem.
pub const NERR_RplBootStartFailed: DWORD = 0x000009D6;
///A second connection to a Remoteboot resource is not allowed.
pub const NERR_RPL_CONNECTED: DWORD = 0x000009D7;
///The browser service was configured with MaintainServerList=No.
pub const NERR_BrowserConfiguredToNotRun: DWORD = 0x000009F6;
///Service failed to start because none of the network adapters started with this service.
pub const NERR_RplNoAdaptersStarted: DWORD = 0x00000A32;
///Service failed to start due to bad startup information in the registry.
pub const NERR_RplBadRegistry: DWORD = 0x00000A33;
///Service failed to start because its database is absent or corrupt.
pub const NERR_RplBadDatabase: DWORD = 0x00000A34;
///Service failed to start because the RPLFILES share is absent.
pub const NERR_RplRplfilesShare: DWORD = 0x00000A35;
///Service failed to start because the RPLUSER group is absent.
pub const NERR_RplNotRplServer: DWORD = 0x00000A36;
///Cannot enumerate service records.
pub const NERR_RplCannotEnum: DWORD = 0x00000A37;
///Workstation record information has been corrupted.
pub const NERR_RplWkstaInfoCorrupted: DWORD = 0x00000A38;
///Workstation record was not found.
pub const NERR_RplWkstaNotFound: DWORD = 0x00000A39;
///Workstation name is in use by some other workstation.
pub const NERR_RplWkstaNameUnavailable: DWORD = 0x00000A3A;
///Profile record information has been corrupted.
pub const NERR_RplProfileInfoCorrupted: DWORD = 0x00000A3B;
///Profile record was not found.
pub const NERR_RplProfileNotFound: DWORD = 0x00000A3C;
///Profile name is in use by some other profile.
pub const NERR_RplProfileNameUnavailable: DWORD = 0x00000A3D;
///There are workstations using this profile.
pub const NERR_RplProfileNotEmpty: DWORD = 0x00000A3E;
///Configuration record information has been corrupted.
pub const NERR_RplConfigInfoCorrupted: DWORD = 0x00000A3F;
///Configuration record was not found.
pub const NERR_RplConfigNotFound: DWORD = 0x00000A40;
///Adapter ID record information has been corrupted.
pub const NERR_RplAdapterInfoCorrupted: DWORD = 0x00000A41;
///An internal service error has occurred.
pub const NERR_RplInternal: DWORD = 0x00000A42;
///Vendor ID record information has been corrupted.
pub const NERR_RplVendorInfoCorrupted: DWORD = 0x00000A43;
///Boot block record information has been corrupted.
pub const NERR_RplBootInfoCorrupted: DWORD = 0x00000A44;
///The user account for this workstation record is missing.
pub const NERR_RplWkstaNeedsUserAcct: DWORD = 0x00000A45;
///The RPLUSER local group could not be found.
pub const NERR_RplNeedsRPLUSERAcct: DWORD = 0x00000A46;
///Boot block record was not found.
pub const NERR_RplBootNotFound: DWORD = 0x00000A47;
///Chosen profile is incompatible with this workstation.
pub const NERR_RplIncompatibleProfile: DWORD = 0x00000A48;
///Chosen network adapter ID is in use by some other workstation.
pub const NERR_RplAdapterNameUnavailable: DWORD = 0x00000A49;
///There are profiles using this configuration.
pub const NERR_RplConfigNotEmpty: DWORD = 0x00000A4A;
///There are workstations, profiles, or configurations using this boot block.
pub const NERR_RplBootInUse: DWORD = 0x00000A4B;
///Service failed to back up the Remoteboot database.
pub const NERR_RplBackupDatabase: DWORD = 0x00000A4C;
///Adapter record was not found.
pub const NERR_RplAdapterNotFound: DWORD = 0x00000A4D;
///Vendor record was not found.
pub const NERR_RplVendorNotFound: DWORD = 0x00000A4E;
///Vendor name is in use by some other vendor record.
pub const NERR_RplVendorNameUnavailable: DWORD = 0x00000A4F;
///The boot name or vendor ID is in use by some other boot block record.
pub const NERR_RplBootNameUnavailable: DWORD = 0x00000A50;
///The configuration name is in use by some other configuration.
pub const NERR_RplConfigNameUnavailable: DWORD = 0x00000A51;
///The internal database maintained by the DFS service is corrupt.
pub const NERR_DfsInternalCorruption: DWORD = 0x00000A64;
///One of the records in the internal DFS database is corrupt.
pub const NERR_DfsVolumeDataCorrupt: DWORD = 0x00000A65;
///There is no DFS name whose entry path matches the input entry path.
pub const NERR_DfsNoSuchVolume: DWORD = 0x00000A66;
///A root or link with the given name already exists.
pub const NERR_DfsVolumeAlreadyExists: DWORD = 0x00000A67;
///The server share specified is already shared in the DFS.
pub const NERR_DfsAlreadyShared: DWORD = 0x00000A68;
///The indicated server share does not support the indicated DFS namespace.
pub const NERR_DfsNoSuchShare: DWORD = 0x00000A69;
///The operation is not valid in this portion of the namespace.
pub const NERR_DfsNotALeafVolume: DWORD = 0x00000A6A;
///The operation is not valid in this portion of the namespace.
pub const NERR_DfsLeafVolume: DWORD = 0x00000A6B;
///The operation is ambiguous because the link has multiple servers.
pub const NERR_DfsVolumeHasMultipleServers: DWORD = 0x00000A6C;
///Unable to create a link.
pub const NERR_DfsCantCreateJunctionPoint: DWORD = 0x00000A6D;
///The server is not DFS-aware.
pub const NERR_DfsServerNotDfsAware: DWORD = 0x00000A6E;
///The specified rename target path is invalid.
pub const NERR_DfsBadRenamePath: DWORD = 0x00000A6F;
///The specified DFS link is offline.
pub const NERR_DfsVolumeIsOffline: DWORD = 0x00000A70;
///The specified server is not a server for this link.
pub const NERR_DfsNoSuchServer: DWORD = 0x00000A71;
///A cycle in the DFS name was detected.
pub const NERR_DfsCyclicalName: DWORD = 0x00000A72;
///The operation is not supported on a server-based DFS.
pub const NERR_DfsNotSupportedInServerDfs: DWORD = 0x00000A73;
///This link is already supported by the specified server share.
pub const NERR_DfsDuplicateService: DWORD = 0x00000A74;
///Cannot remove the last server share supporting this root or link.
pub const NERR_DfsCantRemoveLastServerShare: DWORD = 0x00000A75;
///The operation is not supported for an inter-DFS link.
pub const NERR_DfsVolumeIsInterDfs: DWORD = 0x00000A76;
///The internal state of the DFS Service has become inconsistent.
pub const NERR_DfsInconsistent: DWORD = 0x00000A77;
///The DFS Service has been installed on the specified server.
pub const NERR_DfsServerUpgraded: DWORD = 0x00000A78;
///The DFS data being reconciled is identical.
pub const NERR_DfsDataIsIdentical: DWORD = 0x00000A79;
///The DFS root cannot be deleted. Uninstall DFS if required.
pub const NERR_DfsCantRemoveDfsRoot: DWORD = 0x00000A7A;
///A child or parent directory of the share is already in a DFS.
pub const NERR_DfsChildOrParentInDfs: DWORD = 0x00000A7B;
///DFS internal error.
pub const NERR_DfsInternalError: DWORD = 0x00000A82;
///This machine is already joined to a domain.
pub const NERR_SetupAlreadyJoined: DWORD = 0x00000A83;
///This machine is not currently joined to a domain.
pub const NERR_SetupNotJoined: DWORD = 0x00000A84;
///This machine is a domain controller and cannot be unjoined from a domain.
pub const NERR_SetupDomainController: DWORD = 0x00000A85;
///The destination domain controller does not support creating machine accounts in organizational units (OUs).
pub const NERR_DefaultJoinRequired: DWORD = 0x00000A86;
///The specified workgroup name is invalid.
pub const NERR_InvalidWorkgroupName: DWORD = 0x00000A87;
///The specified computer name is incompatible with the default language used on the domain controller.
pub const NERR_NameUsesIncompatibleCodePage: DWORD = 0x00000A88;
///The specified computer account could not be found.
pub const NERR_ComputerAccountNotFound: DWORD = 0x00000A89;
///This version of Windows cannot be joined to a domain.
pub const NERR_PersonalSku: DWORD = 0x00000A8A;
///The password must change at the next logon.
pub const NERR_PasswordMustChange: DWORD = 0x00000A8D;
///The account is locked out.
pub const NERR_AccountLockedOut: DWORD = 0x00000A8E;
///The password is too long.
pub const NERR_PasswordTooLong: DWORD = 0x00000A8F;
///The password does not meet the complexity policy.
pub const NERR_PasswordNotComplexEnough: DWORD = 0x00000A90;
///The password does not meet the requirements of the password filter DLLs.
pub const NERR_PasswordFilterError: DWORD = 0x00000A91;
///The specified print monitor is unknown.
pub const ERROR_UNKNOWN_PRINT_MONITOR: DWORD = 0x00000BB8;
///The specified printer driver is currently in use.
pub const ERROR_PRINTER_DRIVER_IN_USE: DWORD = 0x00000BB9;
///The spool file was not found.
pub const ERROR_SPOOL_FILE_NOT_FOUND: DWORD = 0x00000BBA;
///A StartDocPrinter call was not issued.
pub const ERROR_SPL_NO_STARTDOC: DWORD = 0x00000BBB;
///An AddJob call was not issued.
pub const ERROR_SPL_NO_ADDJOB: DWORD = 0x00000BBC;
///The specified print processor has already been installed.
pub const ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED: DWORD = 0x00000BBD;
///The specified print monitor has already been installed.
pub const ERROR_PRINT_MONITOR_ALREADY_INSTALLED: DWORD = 0x00000BBE;
///The specified print monitor does not have the required functions.
pub const ERROR_INVALID_PRINT_MONITOR: DWORD = 0x00000BBF;
///The specified print monitor is currently in use.
pub const ERROR_PRINT_MONITOR_IN_USE: DWORD = 0x00000BC0;
///The requested operation is not allowed when there are jobs queued to the printer.
pub const ERROR_PRINTER_HAS_JOBS_QUEUED: DWORD = 0x00000BC1;
///The requested operation is successful. Changes will not be effective until the system is rebooted.
pub const ERROR_SUCCESS_REBOOT_REQUIRED: DWORD = 0x00000BC2;
///The requested operation is successful. Changes will not be effective until the service is restarted.
pub const ERROR_SUCCESS_RESTART_REQUIRED: DWORD = 0x00000BC3;
///No printers were found.
pub const ERROR_PRINTER_NOT_FOUND: DWORD = 0x00000BC4;
///The printer driver is known to be unreliable.
pub const ERROR_PRINTER_DRIVER_WARNED: DWORD = 0x00000BC5;
///The printer driver is known to harm the system.
pub const ERROR_PRINTER_DRIVER_BLOCKED: DWORD = 0x00000BC6;
///The specified printer driver package is currently in use.
pub const ERROR_PRINTER_DRIVER_PACKAGE_IN_USE: DWORD = 0x00000BC7;
///Unable to find a core driver package that is required by the printer driver package.
pub const ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND: DWORD = 0x00000BC8;
///The requested operation failed. A system reboot is required to roll back changes made.
pub const ERROR_FAIL_REBOOT_REQUIRED: DWORD = 0x00000BC9;
///The requested operation failed. A system reboot has been initiated to roll back changes made.
pub const ERROR_FAIL_REBOOT_INITIATED: DWORD = 0x00000BCA;
///The specified printer driver was not found on the system and needs to be downloaded.
pub const ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED: DWORD = 0x00000BCB;
///The specified printer cannot be shared.
pub const ERROR_PRINTER_NOT_SHAREABLE: DWORD = 0x00000BCE;
///Reissue the given operation as a cached I/O operation.
pub const ERROR_IO_REISSUE_AS_CACHED: DWORD = 0x00000F6E;
///Windows Internet Name Service (WINS) encountered an error while processing the command.
pub const ERROR_WINS_INTERNAL: DWORD = 0x00000FA0;
///The local WINS cannot be deleted.
pub const ERROR_CAN_NOT_DEL_LOCAL_WINS: DWORD = 0x00000FA1;
///The importation from the file failed.
pub const ERROR_STATIC_INIT: DWORD = 0x00000FA2;
///The backup failed. Was a full backup done before?
pub const ERROR_INC_BACKUP: DWORD = 0x00000FA3;
///The backup failed. Check the directory to which you are backing the database.
pub const ERROR_FULL_BACKUP: DWORD = 0x00000FA4;
///The name does not exist in the WINS database.
pub const ERROR_REC_NON_EXISTENT: DWORD = 0x00000FA5;
///Replication with a nonconfigured partner is not allowed.
pub const ERROR_RPL_NOT_ALLOWED: DWORD = 0x00000FA6;
///The version of the supplied content information is not supported.
pub const PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED: DWORD = 0x00000FD2;
///The supplied content information is malformed.
pub const PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO: DWORD = 0x00000FD3;
///The requested data cannot be found in local or peer caches.
pub const PEERDIST_ERROR_MISSING_DATA: DWORD = 0x00000FD4;
///No more data is available or required.
pub const PEERDIST_ERROR_NO_MORE: DWORD = 0x00000FD5;
///The supplied object has not been initialized.
pub const PEERDIST_ERROR_NOT_INITIALIZED: DWORD = 0x00000FD6;
///The supplied object has already been initialized.
pub const PEERDIST_ERROR_ALREADY_INITIALIZED: DWORD = 0x00000FD7;
///A shutdown operation is already in progress.
pub const PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS: DWORD = 0x00000FD8;
///The supplied object has already been invalidated.
pub const PEERDIST_ERROR_INVALIDATED: DWORD = 0x00000FD9;
///An element already exists and was not replaced.
pub const PEERDIST_ERROR_ALREADY_EXISTS: DWORD = 0x00000FDA;
///Cannot cancel the requested operation as it has already been completed.
pub const PEERDIST_ERROR_OPERATION_NOTFOUND: DWORD = 0x00000FDB;
///Cannot perform the requested operation because it has already been carried out.
pub const PEERDIST_ERROR_ALREADY_COMPLETED: DWORD = 0x00000FDC;
///An operation accessed data beyond the bounds of valid data.
pub const PEERDIST_ERROR_OUT_OF_BOUNDS: DWORD = 0x00000FDD;
///The requested version is not supported.
pub const PEERDIST_ERROR_VERSION_UNSUPPORTED: DWORD = 0x00000FDE;
///A configuration value is invalid.
pub const PEERDIST_ERROR_INVALID_CONFIGURATION: DWORD = 0x00000FDF;
///The SKU is not licensed.
pub const PEERDIST_ERROR_NOT_LICENSED: DWORD = 0x00000FE0;
///PeerDist Service is still initializing and will be available shortly.
pub const PEERDIST_ERROR_SERVICE_UNAVAILABLE: DWORD = 0x00000FE1;
///The Dynamic Host Configuration Protocol (DHCP) client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.
pub const ERROR_DHCP_ADDRESS_CONFLICT: DWORD = 0x00001004;
///The GUID passed was not recognized as valid by a WMI data provider.
pub const ERROR_WMI_GUID_NOT_FOUND: DWORD = 0x00001068;
///The instance name passed was not recognized as valid by a WMI data provider.
pub const ERROR_WMI_INSTANCE_NOT_FOUND: DWORD = 0x00001069;
///The data item ID passed was not recognized as valid by a WMI data provider.
pub const ERROR_WMI_ITEMID_NOT_FOUND: DWORD = 0x0000106A;
///The WMI request could not be completed and should be retried.
pub const ERROR_WMI_TRY_AGAIN: DWORD = 0x0000106B;
///The WMI data provider could not be located.
pub const ERROR_WMI_DP_NOT_FOUND: DWORD = 0x0000106C;
///The WMI data provider references an instance set that has not been registered.
pub const ERROR_WMI_UNRESOLVED_INSTANCE_REF: DWORD = 0x0000106D;
///The WMI data block or event notification has already been enabled.
pub const ERROR_WMI_ALREADY_ENABLED: DWORD = 0x0000106E;
///The WMI data block is no longer available.
pub const ERROR_WMI_GUID_DISCONNECTED: DWORD = 0x0000106F;
///The WMI data service is not available.
pub const ERROR_WMI_SERVER_UNAVAILABLE: DWORD = 0x00001070;
///The WMI data provider failed to carry out the request.
pub const ERROR_WMI_DP_FAILED: DWORD = 0x00001071;
///The WMI Managed Object Format (MOF) information is not valid.
pub const ERROR_WMI_INVALID_MOF: DWORD = 0x00001072;
///The WMI registration information is not valid.
pub const ERROR_WMI_INVALID_REGINFO: DWORD = 0x00001073;
///The WMI data block or event notification has already been disabled.
pub const ERROR_WMI_ALREADY_DISABLED: DWORD = 0x00001074;
///The WMI data item or data block is read-only.
pub const ERROR_WMI_READ_ONLY: DWORD = 0x00001075;
///The WMI data item or data block could not be changed.
pub const ERROR_WMI_SET_FAILURE: DWORD = 0x00001076;
///The media identifier does not represent a valid medium.
pub const ERROR_INVALID_MEDIA: DWORD = 0x000010CC;
///The library identifier does not represent a valid library.
pub const ERROR_INVALID_LIBRARY: DWORD = 0x000010CD;
///The media pool identifier does not represent a valid media pool.
pub const ERROR_INVALID_MEDIA_POOL: DWORD = 0x000010CE;
///The drive and medium are not compatible, or they exist in different libraries.
pub const ERROR_DRIVE_MEDIA_MISMATCH: DWORD = 0x000010CF;
///The medium currently exists in an offline library and must be online to perform this operation.
pub const ERROR_MEDIA_OFFLINE: DWORD = 0x000010D0;
///The operation cannot be performed on an offline library.
pub const ERROR_LIBRARY_OFFLINE: DWORD = 0x000010D1;
///The library, drive, or media pool is empty.
pub const ERROR_EMPTY: DWORD = 0x000010D2;
///The library, drive, or media pool must be empty to perform this operation.
pub const ERROR_NOT_EMPTY: DWORD = 0x000010D3;
///No media is currently available in this media pool or library.
pub const ERROR_MEDIA_UNAVAILABLE: DWORD = 0x000010D4;
///A resource required for this operation is disabled.
pub const ERROR_RESOURCE_DISABLED: DWORD = 0x000010D5;
///The media identifier does not represent a valid cleaner.
pub const ERROR_INVALID_CLEANER: DWORD = 0x000010D6;
///The drive cannot be cleaned or does not support cleaning.
pub const ERROR_UNABLE_TO_CLEAN: DWORD = 0x000010D7;
///The object identifier does not represent a valid object.
pub const ERROR_OBJECT_NOT_FOUND: DWORD = 0x000010D8;
///Unable to read from or write to the database.
pub const ERROR_DATABASE_FAILURE: DWORD = 0x000010D9;
///The database is full.
pub const ERROR_DATABASE_FULL: DWORD = 0x000010DA;
///The medium is not compatible with the device or media pool.
pub const ERROR_MEDIA_INCOMPATIBLE: DWORD = 0x000010DB;
///The resource required for this operation does not exist.
pub const ERROR_RESOURCE_NOT_PRESENT: DWORD = 0x000010DC;
///The operation identifier is not valid.
pub const ERROR_INVALID_OPERATION: DWORD = 0x000010DD;
///The media is not mounted or ready for use.
pub const ERROR_MEDIA_NOT_AVAILABLE: DWORD = 0x000010DE;
///The device is not ready for use.
pub const ERROR_DEVICE_NOT_AVAILABLE: DWORD = 0x000010DF;
///The operator or administrator has refused the request.
pub const ERROR_REQUEST_REFUSED: DWORD = 0x000010E0;
///The drive identifier does not represent a valid drive.
pub const ERROR_INVALID_DRIVE_OBJECT: DWORD = 0x000010E1;
///Library is full. No slot is available for use.
pub const ERROR_LIBRARY_FULL: DWORD = 0x000010E2;
///The transport cannot access the medium.
pub const ERROR_MEDIUM_NOT_ACCESSIBLE: DWORD = 0x000010E3;
///Unable to load the medium into the drive.
pub const ERROR_UNABLE_TO_LOAD_MEDIUM: DWORD = 0x000010E4;
///Unable to retrieve the drive status.
pub const ERROR_UNABLE_TO_INVENTORY_DRIVE: DWORD = 0x000010E5;
///Unable to retrieve the slot status.
pub const ERROR_UNABLE_TO_INVENTORY_SLOT: DWORD = 0x000010E6;
///Unable to retrieve status about the transport.
pub const ERROR_UNABLE_TO_INVENTORY_TRANSPORT: DWORD = 0x000010E7;
///Cannot use the transport because it is already in use.
pub const ERROR_TRANSPORT_FULL: DWORD = 0x000010E8;
///Unable to open or close the inject/eject port.
pub const ERROR_CONTROLLING_IEPORT: DWORD = 0x000010E9;
///Unable to eject the medium because it is in a drive.
pub const ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA: DWORD = 0x000010EA;
///A cleaner slot is already reserved.
pub const ERROR_CLEANER_SLOT_SET: DWORD = 0x000010EB;
///A cleaner slot is not reserved.
pub const ERROR_CLEANER_SLOT_NOT_SET: DWORD = 0x000010EC;
///The cleaner cartridge has performed the maximum number of drive cleanings.
pub const ERROR_CLEANER_CARTRIDGE_SPENT: DWORD = 0x000010ED;
///Unexpected on-medium identifier.
pub const ERROR_UNEXPECTED_OMID: DWORD = 0x000010EE;
///The last remaining item in this group or resource cannot be deleted.
pub const ERROR_CANT_DELETE_LAST_ITEM: DWORD = 0x000010EF;
///The message provided exceeds the maximum size allowed for this parameter.
pub const ERROR_MESSAGE_EXCEEDS_MAX_SIZE: DWORD = 0x000010F0;
///The volume contains system or paging files.
pub const ERROR_VOLUME_CONTAINS_SYS_FILES: DWORD = 0x000010F1;
///The media type cannot be removed from this library because at least one drive in the library reports it can support this media type.
pub const ERROR_INDIGENOUS_TYPE: DWORD = 0x000010F2;
///This offline media cannot be mounted on this system because no enabled drives are present that can be used.
pub const ERROR_NO_SUPPORTING_DRIVES: DWORD = 0x000010F3;
///A cleaner cartridge is present in the tape library.
pub const ERROR_CLEANER_CARTRIDGE_INSTALLED: DWORD = 0x000010F4;
///Cannot use the IEport because it is not empty.
pub const ERROR_IEPORT_FULL: DWORD = 0x000010F5;
///The remote storage service was not able to recall the file.
pub const ERROR_FILE_OFFLINE: DWORD = 0x000010FE;
///The remote storage service is not operational at this time.
pub const ERROR_REMOTE_STORAGE_NOT_ACTIVE: DWORD = 0x000010FF;
///The remote storage service encountered a media error.
pub const ERROR_REMOTE_STORAGE_MEDIA_ERROR: DWORD = 0x00001100;
///The file or directory is not a reparse point.
pub const ERROR_NOT_A_REPARSE_POINT: DWORD = 0x00001126;
///The reparse point attribute cannot be set because it conflicts with an existing attribute.
pub const ERROR_REPARSE_ATTRIBUTE_CONFLICT: DWORD = 0x00001127;
///The data present in the reparse point buffer is invalid.
pub const ERROR_INVALID_REPARSE_DATA: DWORD = 0x00001128;
///The tag present in the reparse point buffer is invalid.
pub const ERROR_REPARSE_TAG_INVALID: DWORD = 0x00001129;
///There is a mismatch between the tag specified in the request and the tag present in the reparse point.
pub const ERROR_REPARSE_TAG_MISMATCH: DWORD = 0x0000112A;
///Single Instance Storage (SIS) is not available on this volume.
pub const ERROR_VOLUME_NOT_SIS_ENABLED: DWORD = 0x00001194;
///The operation cannot be completed because other resources depend on this resource.
pub const ERROR_DEPENDENT_RESOURCE_EXISTS: DWORD = 0x00001389;
///The cluster resource dependency cannot be found.
pub const ERROR_DEPENDENCY_NOT_FOUND: DWORD = 0x0000138A;
///The cluster resource cannot be made dependent on the specified resource because it is already dependent.
pub const ERROR_DEPENDENCY_ALREADY_EXISTS: DWORD = 0x0000138B;
///The cluster resource is not online.
pub const ERROR_RESOURCE_NOT_ONLINE: DWORD = 0x0000138C;
///A cluster node is not available for this operation.
pub const ERROR_HOST_NODE_NOT_AVAILABLE: DWORD = 0x0000138D;
///The cluster resource is not available.
pub const ERROR_RESOURCE_NOT_AVAILABLE: DWORD = 0x0000138E;
///The cluster resource could not be found.
pub const ERROR_RESOURCE_NOT_FOUND: DWORD = 0x0000138F;
///The cluster is being shut down.
pub const ERROR_SHUTDOWN_CLUSTER: DWORD = 0x00001390;
///A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.
pub const ERROR_CANT_EVICT_ACTIVE_NODE: DWORD = 0x00001391;
///The object already exists.
pub const ERROR_OBJECT_ALREADY_EXISTS: DWORD = 0x00001392;
///The object is already in the list.
pub const ERROR_OBJECT_IN_LIST: DWORD = 0x00001393;
///The cluster group is not available for any new requests.
pub const ERROR_GROUP_NOT_AVAILABLE: DWORD = 0x00001394;
///The cluster group could not be found.
pub const ERROR_GROUP_NOT_FOUND: DWORD = 0x00001395;
///The operation could not be completed because the cluster group is not online.
pub const ERROR_GROUP_NOT_ONLINE: DWORD = 0x00001396;
///The operation failed because either the specified cluster node is not the owner of the resource, or the node is not a possible owner of the resource.
pub const ERROR_HOST_NODE_NOT_RESOURCE_OWNER: DWORD = 0x00001397;
///The operation failed because either the specified cluster node is not the owner of the group, or the node is not a possible owner of the group.
pub const ERROR_HOST_NODE_NOT_GROUP_OWNER: DWORD = 0x00001398;
///The cluster resource could not be created in the specified resource monitor.
pub const ERROR_RESMON_CREATE_FAILED: DWORD = 0x00001399;
///The cluster resource could not be brought online by the resource monitor.
pub const ERROR_RESMON_ONLINE_FAILED: DWORD = 0x0000139A;
///The operation could not be completed because the cluster resource is online.
pub const ERROR_RESOURCE_ONLINE: DWORD = 0x0000139B;
///The cluster resource could not be deleted or brought offline because it is the quorum resource.
pub const ERROR_QUORUM_RESOURCE: DWORD = 0x0000139C;
///The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.
pub const ERROR_NOT_QUORUM_CAPABLE: DWORD = 0x0000139D;
///The cluster software is shutting down.
pub const ERROR_CLUSTER_SHUTTING_DOWN: DWORD = 0x0000139E;
///The group or resource is not in the correct state to perform the requested operation.
pub const ERROR_INVALID_STATE: DWORD = 0x0000139F;
///The properties were stored but not all changes will take effect until the next time the resource is brought online.
pub const ERROR_RESOURCE_PROPERTIES_STORED: DWORD = 0x000013A0;
///The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.
pub const ERROR_NOT_QUORUM_CLASS: DWORD = 0x000013A1;
///The cluster resource could not be deleted because it is a core resource.
pub const ERROR_CORE_RESOURCE: DWORD = 0x000013A2;
///The quorum resource failed to come online.
pub const ERROR_QUORUM_RESOURCE_ONLINE_FAILED: DWORD = 0x000013A3;
///The quorum log could not be created or mounted successfully.
pub const ERROR_QUORUMLOG_OPEN_FAILED: DWORD = 0x000013A4;
///The cluster log is corrupt.
pub const ERROR_CLUSTERLOG_CORRUPT: DWORD = 0x000013A5;
///The record could not be written to the cluster log because it exceeds the maximum size.
pub const ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE: DWORD = 0x000013A6;
///The cluster log exceeds its maximum size.
pub const ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE: DWORD = 0x000013A7;
///No checkpoint record was found in the cluster log.
pub const ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND: DWORD = 0x000013A8;
///The minimum required disk space needed for logging is not available.
pub const ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE: DWORD = 0x000013A9;
///The cluster node failed to take control of the quorum resource because the resource is owned by another active node.
pub const ERROR_QUORUM_OWNER_ALIVE: DWORD = 0x000013AA;
///A cluster network is not available for this operation.
pub const ERROR_NETWORK_NOT_AVAILABLE: DWORD = 0x000013AB;
///A cluster node is not available for this operation.
pub const ERROR_NODE_NOT_AVAILABLE: DWORD = 0x000013AC;
///All cluster nodes must be running to perform this operation.
pub const ERROR_ALL_NODES_NOT_AVAILABLE: DWORD = 0x000013AD;
///A cluster resource failed.
pub const ERROR_RESOURCE_FAILED: DWORD = 0x000013AE;
///The cluster node is not valid.
pub const ERROR_CLUSTER_INVALID_NODE: DWORD = 0x000013AF;
///The cluster node already exists.
pub const ERROR_CLUSTER_NODE_EXISTS: DWORD = 0x000013B0;
///A node is in the process of joining the cluster.
pub const ERROR_CLUSTER_JOIN_IN_PROGRESS: DWORD = 0x000013B1;
///The cluster node was not found.
pub const ERROR_CLUSTER_NODE_NOT_FOUND: DWORD = 0x000013B2;
///The cluster local node information was not found.
pub const ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND: DWORD = 0x000013B3;
///The cluster network already exists.
pub const ERROR_CLUSTER_NETWORK_EXISTS: DWORD = 0x000013B4;
///The cluster network was not found.
pub const ERROR_CLUSTER_NETWORK_NOT_FOUND: DWORD = 0x000013B5;
///The cluster network interface already exists.
pub const ERROR_CLUSTER_NETINTERFACE_EXISTS: DWORD = 0x000013B6;
///The cluster network interface was not found.
pub const ERROR_CLUSTER_NETINTERFACE_NOT_FOUND: DWORD = 0x000013B7;
///The cluster request is not valid for this object.
pub const ERROR_CLUSTER_INVALID_REQUEST: DWORD = 0x000013B8;
///The cluster network provider is not valid.
pub const ERROR_CLUSTER_INVALID_NETWORK_PROVIDER: DWORD = 0x000013B9;
///The cluster node is down.
pub const ERROR_CLUSTER_NODE_DOWN: DWORD = 0x000013BA;
///The cluster node is not reachable.
pub const ERROR_CLUSTER_NODE_UNREACHABLE: DWORD = 0x000013BB;
///The cluster node is not a member of the cluster.
pub const ERROR_CLUSTER_NODE_NOT_MEMBER: DWORD = 0x000013BC;
///A cluster join operation is not in progress.
pub const ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS: DWORD = 0x000013BD;
///The cluster network is not valid.
pub const ERROR_CLUSTER_INVALID_NETWORK: DWORD = 0x000013BE;
///The cluster node is up.
pub const ERROR_CLUSTER_NODE_UP: DWORD = 0x000013C0;
///The cluster IP address is already in use.
pub const ERROR_CLUSTER_IPADDR_IN_USE: DWORD = 0x000013C1;
///The cluster node is not paused.
pub const ERROR_CLUSTER_NODE_NOT_PAUSED: DWORD = 0x000013C2;
///No cluster security context is available.
pub const ERROR_CLUSTER_NO_SECURITY_CONTEXT: DWORD = 0x000013C3;
///The cluster network is not configured for internal cluster communication.
pub const ERROR_CLUSTER_NETWORK_NOT_INTERNAL: DWORD = 0x000013C4;
///The cluster node is already up.
pub const ERROR_CLUSTER_NODE_ALREADY_UP: DWORD = 0x000013C5;
///The cluster node is already down.
pub const ERROR_CLUSTER_NODE_ALREADY_DOWN: DWORD = 0x000013C6;
///The cluster network is already online.
pub const ERROR_CLUSTER_NETWORK_ALREADY_ONLINE: DWORD = 0x000013C7;
///The cluster network is already offline.
pub const ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE: DWORD = 0x000013C8;
///The cluster node is already a member of the cluster.
pub const ERROR_CLUSTER_NODE_ALREADY_MEMBER: DWORD = 0x000013C9;
///The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.
pub const ERROR_CLUSTER_LAST_INTERNAL_NETWORK: DWORD = 0x000013CA;
///One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.
pub const ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS: DWORD = 0x000013CB;
///This operation cannot be performed on the cluster resource because it is the quorum resource. This quorum resource cannot be brought offline and its possible owners list cannot be modified.
pub const ERROR_INVALID_OPERATION_ON_QUORUM: DWORD = 0x000013CC;
///The cluster quorum resource is not allowed to have any dependencies.
pub const ERROR_DEPENDENCY_NOT_ALLOWED: DWORD = 0x000013CD;
///The cluster node is paused.
pub const ERROR_CLUSTER_NODE_PAUSED: DWORD = 0x000013CE;
///The cluster resource cannot be brought online. The owner node cannot run this resource.
pub const ERROR_NODE_CANT_HOST_RESOURCE: DWORD = 0x000013CF;
///The cluster node is not ready to perform the requested operation.
pub const ERROR_CLUSTER_NODE_NOT_READY: DWORD = 0x000013D0;
///The cluster node is shutting down.
pub const ERROR_CLUSTER_NODE_SHUTTING_DOWN: DWORD = 0x000013D1;
///The cluster join operation was aborted.
pub const ERROR_CLUSTER_JOIN_ABORTED: DWORD = 0x000013D2;
///The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.
pub const ERROR_CLUSTER_INCOMPATIBLE_VERSIONS: DWORD = 0x000013D3;
///This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.
pub const ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED: DWORD = 0x000013D4;
///The system configuration changed during the cluster join or form operation. The join or form operation was aborted.
pub const ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED: DWORD = 0x000013D5;
///The specified resource type was not found.
pub const ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND: DWORD = 0x000013D6;
///The specified node does not support a resource of this type. This might be due to version inconsistencies or due to the absence of the resource DLL on this node.
pub const ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED: DWORD = 0x000013D7;
///The specified resource name is not supported by this resource DLL. This might be due to a bad (or changed) name supplied to the resource DLL.
pub const ERROR_CLUSTER_RESNAME_NOT_FOUND: DWORD = 0x000013D8;
///No authentication package could be registered with the RPC server.
pub const ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED: DWORD = 0x000013D9;
///You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.
pub const ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST: DWORD = 0x000013DA;
///The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This can happen during a join operation if the cluster database was changing during the join.
pub const ERROR_CLUSTER_DATABASE_SEQMISMATCH: DWORD = 0x000013DB;
///The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This can happen if the resource is in a pending state.
pub const ERROR_RESMON_INVALID_STATE: DWORD = 0x000013DC;
///A non-locker code received a request to reserve the lock for making global updates.
pub const ERROR_CLUSTER_GUM_NOT_LOCKER: DWORD = 0x000013DD;
///The quorum disk could not be located by the cluster service.
pub const ERROR_QUORUM_DISK_NOT_FOUND: DWORD = 0x000013DE;
///The backed-up cluster database is possibly corrupt.
pub const ERROR_DATABASE_BACKUP_CORRUPT: DWORD = 0x000013DF;
///A DFS root already exists in this cluster node.
pub const ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT: DWORD = 0x000013E0;
///An attempt to modify a resource property failed because it conflicts with another existing property.
pub const ERROR_RESOURCE_PROPERTY_UNCHANGEABLE: DWORD = 0x000013E1;
///An operation was attempted that is incompatible with the current membership state of the node.
pub const ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE: DWORD = 0x00001702;
///The quorum resource does not contain the quorum log.
pub const ERROR_CLUSTER_QUORUMLOG_NOT_FOUND: DWORD = 0x00001703;
///The membership engine requested shutdown of the cluster service on this node.
pub const ERROR_CLUSTER_MEMBERSHIP_HALT: DWORD = 0x00001704;
///The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.
pub const ERROR_CLUSTER_INSTANCE_ID_MISMATCH: DWORD = 0x00001705;
///A matching cluster network for the specified IP address could not be found.
pub const ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP: DWORD = 0x00001706;
///The actual data type of the property did not match the expected data type of the property.
pub const ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH: DWORD = 0x00001707;
///The cluster node was evicted from the cluster successfully, but the node was not cleaned up. To determine what clean-up steps failed and how to recover, see the Failover Clustering application event log using Event Viewer.
pub const ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP: DWORD = 0x00001708;
///Two or more parameter values specified for a resource's properties are in conflict.
pub const ERROR_CLUSTER_PARAMETER_MISMATCH: DWORD = 0x00001709;
///This computer cannot be made a member of a cluster.
pub const ERROR_NODE_CANNOT_BE_CLUSTERED: DWORD = 0x0000170A;
///This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.
pub const ERROR_CLUSTER_WRONG_OS_VERSION: DWORD = 0x0000170B;
///A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.
pub const ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME: DWORD = 0x0000170C;
///The cluster configuration action has already been committed.
pub const ERROR_CLUSCFG_ALREADY_COMMITTED: DWORD = 0x0000170D;
///The cluster configuration action could not be rolled back.
pub const ERROR_CLUSCFG_ROLLBACK_FAILED: DWORD = 0x0000170E;
///The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.
pub const ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT: DWORD = 0x0000170F;
///One or more nodes in the cluster are running a version of Windows that does not support this operation.
pub const ERROR_CLUSTER_OLD_VERSION: DWORD = 0x00001710;
///The name of the corresponding computer account does not match the network name for this resource.
pub const ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME: DWORD = 0x00001711;
///No network adapters are available.
pub const ERROR_CLUSTER_NO_NET_ADAPTERS: DWORD = 0x00001712;
///The cluster node has been poisoned.
pub const ERROR_CLUSTER_POISONED: DWORD = 0x00001713;
///The group is unable to accept the request because it is moving to another node.
pub const ERROR_CLUSTER_GROUP_MOVING: DWORD = 0x00001714;
///The resource type cannot accept the request because it is too busy performing another operation.
pub const ERROR_CLUSTER_RESOURCE_TYPE_BUSY: DWORD = 0x00001715;
///The call to the cluster resource DLL timed out.
pub const ERROR_RESOURCE_CALL_TIMED_OUT: DWORD = 0x00001716;
///The address is not valid for an IPv6 Address resource. A global IPv6 address is required, and it must match a cluster network. Compatibility addresses are not permitted.
pub const ERROR_INVALID_CLUSTER_IPV6_ADDRESS: DWORD = 0x00001717;
///An internal cluster error occurred. A call to an invalid function was attempted.
pub const ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION: DWORD = 0x00001718;
///A parameter value is out of acceptable range.
pub const ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS: DWORD = 0x00001719;
///A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required.
pub const ERROR_CLUSTER_PARTIAL_SEND: DWORD = 0x0000171A;
///An invalid cluster registry operation was attempted.
pub const ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION: DWORD = 0x0000171B;
///An input string of characters is not properly terminated.
pub const ERROR_CLUSTER_INVALID_STRING_TERMINATION: DWORD = 0x0000171C;
///An input string of characters is not in a valid format for the data it represents.
pub const ERROR_CLUSTER_INVALID_STRING_FORMAT: DWORD = 0x0000171D;
///An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress.
pub const ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS: DWORD = 0x0000171E;
///An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress.
pub const ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS: DWORD = 0x0000171F;
///An internal cluster error occurred. Data was not properly initialized.
pub const ERROR_CLUSTER_NULL_DATA: DWORD = 0x00001720;
///An error occurred while reading from a stream of data. An unexpected number of bytes was returned.
pub const ERROR_CLUSTER_PARTIAL_READ: DWORD = 0x00001721;
///An error occurred while writing to a stream of data. The required number of bytes could not be written.
pub const ERROR_CLUSTER_PARTIAL_WRITE: DWORD = 0x00001722;
///An error occurred while deserializing a stream of cluster data.
pub const ERROR_CLUSTER_CANT_DESERIALIZE_DATA: DWORD = 0x00001723;
///One or more property values for this resource are in conflict with one or more property values associated with its dependent resources.
pub const ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT: DWORD = 0x00001724;
///A quorum of cluster nodes was not present to form a cluster.
pub const ERROR_CLUSTER_NO_QUORUM: DWORD = 0x00001725;
///The cluster network is not valid for an IPv6 address resource, or it does not match the configured address.
pub const ERROR_CLUSTER_INVALID_IPV6_NETWORK: DWORD = 0x00001726;
///The cluster network is not valid for an IPv6 tunnel resource. Check the configuration of the IP Address resource on which the IPv6 tunnel resource depends.
pub const ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK: DWORD = 0x00001727;
///Quorum resource cannot reside in the available storage group.
pub const ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP: DWORD = 0x00001728;
///The specified file could not be encrypted.
pub const ERROR_ENCRYPTION_FAILED: DWORD = 0x00001770;
///The specified file could not be decrypted.
pub const ERROR_DECRYPTION_FAILED: DWORD = 0x00001771;
///The specified file is encrypted and the user does not have the ability to decrypt it.
pub const ERROR_FILE_ENCRYPTED: DWORD = 0x00001772;
///There is no valid encryption recovery policy configured for this system.
pub const ERROR_NO_RECOVERY_POLICY: DWORD = 0x00001773;
///The required encryption driver is not loaded for this system.
pub const ERROR_NO_EFS: DWORD = 0x00001774;
///The file was encrypted with a different encryption driver than is currently loaded.
pub const ERROR_WRONG_EFS: DWORD = 0x00001775;
///There are no Encrypting File System (EFS) keys defined for the user.
pub const ERROR_NO_USER_KEYS: DWORD = 0x00001776;
///The specified file is not encrypted.
pub const ERROR_FILE_NOT_ENCRYPTED: DWORD = 0x00001777;
///The specified file is not in the defined EFS export format.
pub const ERROR_NOT_EXPORT_FORMAT: DWORD = 0x00001778;
///The specified file is read-only.
pub const ERROR_FILE_READ_ONLY: DWORD = 0x00001779;
///The directory has been disabled for encryption.
pub const ERROR_DIR_EFS_DISALLOWED: DWORD = 0x0000177A;
///The server is not trusted for remote encryption operation.
pub const ERROR_EFS_SERVER_NOT_TRUSTED: DWORD = 0x0000177B;
///Recovery policy configured for this system contains invalid recovery certificate.
pub const ERROR_BAD_RECOVERY_POLICY: DWORD = 0x0000177C;
///The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.
pub const ERROR_EFS_ALG_BLOB_TOO_BIG: DWORD = 0x0000177D;
///The disk partition does not support file encryption.
pub const ERROR_VOLUME_NOT_SUPPORT_EFS: DWORD = 0x0000177E;
///This machine is disabled for file encryption.
pub const ERROR_EFS_DISABLED: DWORD = 0x0000177F;
///A newer system is required to decrypt this encrypted file.
pub const ERROR_EFS_VERSION_NOT_SUPPORT: DWORD = 0x00001780;
///The remote server sent an invalid response for a file being opened with client-side encryption.
pub const ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE: DWORD = 0x00001781;
///Client-side encryption is not supported by the remote server even though it claims to support it.
pub const ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER: DWORD = 0x00001782;
///File is encrypted and should be opened in client-side encryption mode.
pub const ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE: DWORD = 0x00001783;
///A new encrypted file is being created and a $EFS needs to be provided.
pub const ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE: DWORD = 0x00001784;
///The SMB client requested a client-side extension (CSE) file system control (FSCTL) on a non-CSE file.
pub const ERROR_CS_ENCRYPTION_FILE_NOT_CSE: DWORD = 0x00001785;
///The list of servers for this workgroup is not currently available
pub const ERROR_NO_BROWSER_SERVERS_FOUND: DWORD = 0x000017E6;
///The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks can be configured to run in other accounts.
pub const SCHED_E_SERVICE_NOT_LOCALSYSTEM: DWORD = 0x00001838;
///The log service encountered an invalid log sector.
pub const ERROR_LOG_SECTOR_INVALID: DWORD = 0x000019C8;
///The log service encountered a log sector with invalid block parity.
pub const ERROR_LOG_SECTOR_PARITY_INVALID: DWORD = 0x000019C9;
///The log service encountered a remapped log sector.
pub const ERROR_LOG_SECTOR_REMAPPED: DWORD = 0x000019CA;
///The log service encountered a partial or incomplete log block.
pub const ERROR_LOG_BLOCK_INCOMPLETE: DWORD = 0x000019CB;
///The log service encountered an attempt to access data outside the active log range.
pub const ERROR_LOG_INVALID_RANGE: DWORD = 0x000019CC;
///The log service user marshaling buffers are exhausted.
pub const ERROR_LOG_BLOCKS_EXHAUSTED: DWORD = 0x000019CD;
///The log service encountered an attempt to read from a marshaling area with an invalid read context.
pub const ERROR_LOG_READ_CONTEXT_INVALID: DWORD = 0x000019CE;
///The log service encountered an invalid log restart area.
pub const ERROR_LOG_RESTART_INVALID: DWORD = 0x000019CF;
///The log service encountered an invalid log block version.
pub const ERROR_LOG_BLOCK_VERSION: DWORD = 0x000019D0;
///The log service encountered an invalid log block.
pub const ERROR_LOG_BLOCK_INVALID: DWORD = 0x000019D1;
///The log service encountered an attempt to read the log with an invalid read mode.
pub const ERROR_LOG_READ_MODE_INVALID: DWORD = 0x000019D2;
///The log service encountered a log stream with no restart area.
pub const ERROR_LOG_NO_RESTART: DWORD = 0x000019D3;
///The log service encountered a corrupted metadata file.
pub const ERROR_LOG_METADATA_CORRUPT: DWORD = 0x000019D4;
///The log service encountered a metadata file that could not be created by the log file system.
pub const ERROR_LOG_METADATA_INVALID: DWORD = 0x000019D5;
///The log service encountered a metadata file with inconsistent data.
pub const ERROR_LOG_METADATA_INCONSISTENT: DWORD = 0x000019D6;
///The log service encountered an attempt to erroneous allocate or dispose reservation space.
pub const ERROR_LOG_RESERVATION_INVALID: DWORD = 0x000019D7;
///The log service cannot delete a log file or file system container.
pub const ERROR_LOG_CANT_DELETE: DWORD = 0x000019D8;
///The log service has reached the maximum allowable containers allocated to a log file.
pub const ERROR_LOG_CONTAINER_LIMIT_EXCEEDED: DWORD = 0x000019D9;
///The log service has attempted to read or write backward past the start of the log.
pub const ERROR_LOG_START_OF_LOG: DWORD = 0x000019DA;
///The log policy could not be installed because a policy of the same type is already present.
pub const ERROR_LOG_POLICY_ALREADY_INSTALLED: DWORD = 0x000019DB;
///The log policy in question was not installed at the time of the request.
pub const ERROR_LOG_POLICY_NOT_INSTALLED: DWORD = 0x000019DC;
///The installed set of policies on the log is invalid.
pub const ERROR_LOG_POLICY_INVALID: DWORD = 0x000019DD;
///A policy on the log in question prevented the operation from completing.
pub const ERROR_LOG_POLICY_CONFLICT: DWORD = 0x000019DE;
///Log space cannot be reclaimed because the log is pinned by the archive tail.
pub const ERROR_LOG_PINNED_ARCHIVE_TAIL: DWORD = 0x000019DF;
///The log record is not a record in the log file.
pub const ERROR_LOG_RECORD_NONEXISTENT: DWORD = 0x000019E0;
///The number of reserved log records or the adjustment of the number of reserved log records is invalid.
pub const ERROR_LOG_RECORDS_RESERVED_INVALID: DWORD = 0x000019E1;
///The reserved log space or the adjustment of the log space is invalid.
pub const ERROR_LOG_SPACE_RESERVED_INVALID: DWORD = 0x000019E2;
///A new or existing archive tail or base of the active log is invalid.
pub const ERROR_LOG_TAIL_INVALID: DWORD = 0x000019E3;
///The log space is exhausted.
pub const ERROR_LOG_FULL: DWORD = 0x000019E4;
///The log could not be set to the requested size.
pub const ERROR_COULD_NOT_RESIZE_LOG: DWORD = 0x000019E5;
///The log is multiplexed; no direct writes to the physical log are allowed.
pub const ERROR_LOG_MULTIPLEXED: DWORD = 0x000019E6;
///The operation failed because the log is a dedicated log.
pub const ERROR_LOG_DEDICATED: DWORD = 0x000019E7;
///The operation requires an archive context.
pub const ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS: DWORD = 0x000019E8;
///Log archival is in progress.
pub const ERROR_LOG_ARCHIVE_IN_PROGRESS: DWORD = 0x000019E9;
///The operation requires a non-ephemeral log, but the log is ephemeral.
pub const ERROR_LOG_EPHEMERAL: DWORD = 0x000019EA;
///The log must have at least two containers before it can be read from or written to.
pub const ERROR_LOG_NOT_ENOUGH_CONTAINERS: DWORD = 0x000019EB;
///A log client has already registered on the stream.
pub const ERROR_LOG_CLIENT_ALREADY_REGISTERED: DWORD = 0x000019EC;
///A log client has not been registered on the stream.
pub const ERROR_LOG_CLIENT_NOT_REGISTERED: DWORD = 0x000019ED;
///A request has already been made to handle the log full condition.
pub const ERROR_LOG_FULL_HANDLER_IN_PROGRESS: DWORD = 0x000019EE;
///The log service encountered an error when attempting to read from a log container.
pub const ERROR_LOG_CONTAINER_READ_FAILED: DWORD = 0x000019EF;
///The log service encountered an error when attempting to write to a log container.
pub const ERROR_LOG_CONTAINER_WRITE_FAILED: DWORD = 0x000019F0;
///The log service encountered an error when attempting to open a log container.
pub const ERROR_LOG_CONTAINER_OPEN_FAILED: DWORD = 0x000019F1;
///The log service encountered an invalid container state when attempting a requested action.
pub const ERROR_LOG_CONTAINER_STATE_INVALID: DWORD = 0x000019F2;
///The log service is not in the correct state to perform a requested action.
pub const ERROR_LOG_STATE_INVALID: DWORD = 0x000019F3;
///The log space cannot be reclaimed because the log is pinned.
pub const ERROR_LOG_PINNED: DWORD = 0x000019F4;
///The log metadata flush failed.
pub const ERROR_LOG_METADATA_FLUSH_FAILED: DWORD = 0x000019F5;
///Security on the log and its containers is inconsistent.
pub const ERROR_LOG_INCONSISTENT_SECURITY: DWORD = 0x000019F6;
///Records were appended to the log or reservation changes were made, but the log could not be flushed.
pub const ERROR_LOG_APPENDED_FLUSH_FAILED: DWORD = 0x000019F7;
///The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available.
pub const ERROR_LOG_PINNED_RESERVATION: DWORD = 0x000019F8;
///The transaction handle associated with this operation is not valid.
pub const ERROR_INVALID_TRANSACTION: DWORD = 0x00001A2C;
///The requested operation was made in the context of a transaction that is no longer active.
pub const ERROR_TRANSACTION_NOT_ACTIVE: DWORD = 0x00001A2D;
///The requested operation is not valid on the transaction object in its current state.
pub const ERROR_TRANSACTION_REQUEST_NOT_VALID: DWORD = 0x00001A2E;
///The caller has called a response API, but the response is not expected because the transaction manager did not issue the corresponding request to the caller.
pub const ERROR_TRANSACTION_NOT_REQUESTED: DWORD = 0x00001A2F;
///It is too late to perform the requested operation because the transaction has already been aborted.
pub const ERROR_TRANSACTION_ALREADY_ABORTED: DWORD = 0x00001A30;
///It is too late to perform the requested operation because the transaction has already been committed.
pub const ERROR_TRANSACTION_ALREADY_COMMITTED: DWORD = 0x00001A31;
///The transaction manager was unable to be successfully initialized. Transacted operations are not supported.
pub const ERROR_TM_INITIALIZATION_FAILED: DWORD = 0x00001A32;
///The specified resource manager made no changes or updates to the resource under this transaction.
pub const ERROR_RESOURCEMANAGER_READ_ONLY: DWORD = 0x00001A33;
///The resource manager has attempted to prepare a transaction that it has not successfully joined.
pub const ERROR_TRANSACTION_NOT_JOINED: DWORD = 0x00001A34;
///The transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allowed.
pub const ERROR_TRANSACTION_SUPERIOR_EXISTS: DWORD = 0x00001A35;
///The resource manager tried to register a protocol that already exists.
pub const ERROR_CRM_PROTOCOL_ALREADY_EXISTS: DWORD = 0x00001A36;
///The attempt to propagate the transaction failed.
pub const ERROR_TRANSACTION_PROPAGATION_FAILED: DWORD = 0x00001A37;
///The requested propagation protocol was not registered as a CRM.
pub const ERROR_CRM_PROTOCOL_NOT_FOUND: DWORD = 0x00001A38;
///The buffer passed in to PushTransaction or PullTransaction is not in a valid format.
pub const ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER: DWORD = 0x00001A39;
///The current transaction context associated with the thread is not a valid handle to a transaction object.
pub const ERROR_CURRENT_TRANSACTION_NOT_VALID: DWORD = 0x00001A3A;
///The specified transaction object could not be opened because it was not found.
pub const ERROR_TRANSACTION_NOT_FOUND: DWORD = 0x00001A3B;
///The specified resource manager object could not be opened because it was not found.
pub const ERROR_RESOURCEMANAGER_NOT_FOUND: DWORD = 0x00001A3C;
///The specified enlistment object could not be opened because it was not found.
pub const ERROR_ENLISTMENT_NOT_FOUND: DWORD = 0x00001A3D;
///The specified transaction manager object could not be opened because it was not found.
pub const ERROR_TRANSACTIONMANAGER_NOT_FOUND: DWORD = 0x00001A3E;
///The specified resource manager was unable to create an enlistment because its associated transaction manager is not online.
pub const ERROR_TRANSACTIONMANAGER_NOT_ONLINE: DWORD = 0x00001A3F;
///The specified transaction manager was unable to create the objects contained in its log file in the ObjectB namespace. Therefore, the transaction manager was unable to recover.
pub const ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION: DWORD = 0x00001A40;
///The function attempted to use a name that is reserved for use by another transaction.
pub const ERROR_TRANSACTIONAL_CONFLICT: DWORD = 0x00001A90;
///Transaction support within the specified file system resource manager is not started or was shut down due to an error.
pub const ERROR_RM_NOT_ACTIVE: DWORD = 0x00001A91;
///The metadata of the resource manager has been corrupted. The resource manager will not function.
pub const ERROR_RM_METADATA_CORRUPT: DWORD = 0x00001A92;
///The specified directory does not contain a resource manager.
pub const ERROR_DIRECTORY_NOT_RM: DWORD = 0x00001A93;
///The remote server or share does not support transacted file operations.
pub const ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE: DWORD = 0x00001A95;
///The requested log size is invalid.
pub const ERROR_LOG_RESIZE_INVALID_SIZE: DWORD = 0x00001A96;
///The object (file, stream, link) corresponding to the handle has been deleted by a transaction savepoint rollback.
pub const ERROR_OBJECT_NO_LONGER_EXISTS: DWORD = 0x00001A97;
///The specified file miniversion was not found for this transacted file open.
pub const ERROR_STREAM_MINIVERSION_NOT_FOUND: DWORD = 0x00001A98;
///The specified file miniversion was found but has been invalidated. The most likely cause is a transaction savepoint rollback.
pub const ERROR_STREAM_MINIVERSION_NOT_VALID: DWORD = 0x00001A99;
///A miniversion can only be opened in the context of the transaction that created it.
pub const ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION: DWORD = 0x00001A9A;
///It is not possible to open a miniversion with modify access.
pub const ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT: DWORD = 0x00001A9B;
///It is not possible to create any more miniversions for this stream.
pub const ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS: DWORD = 0x00001A9C;
///The remote server sent mismatching version numbers or FID for a file opened with transactions.
pub const ERROR_REMOTE_FILE_VERSION_MISMATCH: DWORD = 0x00001A9E;
///The handle has been invalidated by a transaction. The most likely cause is the presence of memory mapping on a file, or an open handle when the transaction ended or rolled back to savepoint.
pub const ERROR_HANDLE_NO_LONGER_VALID: DWORD = 0x00001A9F;
///There is no transaction metadata on the file.
pub const ERROR_NO_TXF_METADATA: DWORD = 0x00001AA0;
///The log data is corrupt.
pub const ERROR_LOG_CORRUPTION_DETECTED: DWORD = 0x00001AA1;
///The file cannot be recovered because a handle is still open on it.
pub const ERROR_CANT_RECOVER_WITH_HANDLE_OPEN: DWORD = 0x00001AA2;
///The transaction outcome is unavailable because the resource manager responsible for it is disconnected.
pub const ERROR_RM_DISCONNECTED: DWORD = 0x00001AA3;
///The request was rejected because the enlistment in question is not a superior enlistment.
pub const ERROR_ENLISTMENT_NOT_SUPERIOR: DWORD = 0x00001AA4;
///The transactional resource manager is already consistent. Recovery is not needed.
pub const ERROR_RECOVERY_NOT_NEEDED: DWORD = 0x00001AA5;
///The transactional resource manager has already been started.
pub const ERROR_RM_ALREADY_STARTED: DWORD = 0x00001AA6;
///The file cannot be opened in a transaction because its identity depends on the outcome of an unresolved transaction.
pub const ERROR_FILE_IDENTITY_NOT_PERSISTENT: DWORD = 0x00001AA7;
///The operation cannot be performed because another transaction is depending on the fact that this property will not change.
pub const ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY: DWORD = 0x00001AA8;
///The operation would involve a single file with two transactional resource managers and is therefore not allowed.
pub const ERROR_CANT_CROSS_RM_BOUNDARY: DWORD = 0x00001AA9;
///The $Txf directory must be empty for this operation to succeed.
pub const ERROR_TXF_DIR_NOT_EMPTY: DWORD = 0x00001AAA;
///The operation would leave a transactional resource manager in an inconsistent state and is, therefore, not allowed.
pub const ERROR_INDOUBT_TRANSACTIONS_EXIST: DWORD = 0x00001AAB;
///The operation could not be completed because the transaction manager does not have a log.
pub const ERROR_TM_VOLATILE: DWORD = 0x00001AAC;
///A rollback could not be scheduled because a previously scheduled rollback has already been executed or is queued for execution.
pub const ERROR_ROLLBACK_TIMER_EXPIRED: DWORD = 0x00001AAD;
///The transactional metadata attribute on the file or directory is corrupt and unreadable.
pub const ERROR_TXF_ATTRIBUTE_CORRUPT: DWORD = 0x00001AAE;
///The encryption operation could not be completed because a transaction is active.
pub const ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION: DWORD = 0x00001AAF;
///This object is not allowed to be opened in a transaction.
pub const ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED: DWORD = 0x00001AB0;
///An attempt to create space in the transactional resource manager's log failed. The failure status has been recorded in the event log.
pub const ERROR_LOG_GROWTH_FAILED: DWORD = 0x00001AB1;
///Memory mapping (creating a mapped section) to a remote file under a transaction is not supported.
pub const ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE: DWORD = 0x00001AB2;
///Transaction metadata is already present on this file and cannot be superseded.
pub const ERROR_TXF_METADATA_ALREADY_PRESENT: DWORD = 0x00001AB3;
///A transaction scope could not be entered because the scope handler has not been initialized.
pub const ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET: DWORD = 0x00001AB4;
///Promotion was required to allow the resource manager to enlist, but the transaction was set to disallow it.
pub const ERROR_TRANSACTION_REQUIRED_PROMOTION: DWORD = 0x00001AB5;
///This file is open for modification in an unresolved transaction and can be opened for execution only by a transacted reader.
pub const ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION: DWORD = 0x00001AB6;
///The request to thaw frozen transactions was ignored because transactions were not previously frozen.
pub const ERROR_TRANSACTIONS_NOT_FROZEN: DWORD = 0x00001AB7;
///Transactions cannot be frozen because a freeze is already in progress.
pub const ERROR_TRANSACTION_FREEZE_IN_PROGRESS: DWORD = 0x00001AB8;
///The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot.
pub const ERROR_NOT_SNAPSHOT_VOLUME: DWORD = 0x00001AB9;
///The savepoint operation failed because files are open on the transaction. This is not permitted.
pub const ERROR_NO_SAVEPOINT_WITH_OPEN_FILES: DWORD = 0x00001ABA;
///Windows has discovered corruption in a file, and that file has since been repaired. Data loss might have occurred.
pub const ERROR_DATA_LOST_REPAIR: DWORD = 0x00001ABB;
///The sparse operation could not be completed because a transaction is active on the file.
pub const ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION: DWORD = 0x00001ABC;
///The call to create a transaction manager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument.
pub const ERROR_TM_IDENTITY_MISMATCH: DWORD = 0x00001ABD;
///I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.
pub const ERROR_FLOATED_SECTION: DWORD = 0x00001ABE;
///The transactional resource manager cannot currently accept transacted work due to a transient condition, such as low resources.
pub const ERROR_CANNOT_ACCEPT_TRANSACTED_WORK: DWORD = 0x00001ABF;
///The transactional resource manager had too many transactions outstanding that could not be aborted. The transactional resource manager has been shut down.
pub const ERROR_CANNOT_ABORT_TRANSACTIONS: DWORD = 0x00001AC0;
///The specified session name is invalid.
pub const ERROR_CTX_WINSTATION_NAME_INVALID: DWORD = 0x00001B59;
///The specified protocol driver is invalid.
pub const ERROR_CTX_INVALID_PD: DWORD = 0x00001B5A;
///The specified protocol driver was not found in the system path.
pub const ERROR_CTX_PD_NOT_FOUND: DWORD = 0x00001B5B;
///The specified terminal connection driver was not found in the system path.
pub const ERROR_CTX_WD_NOT_FOUND: DWORD = 0x00001B5C;
///A registry key for event logging could not be created for this session.
pub const ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY: DWORD = 0x00001B5D;
///A service with the same name already exists on the system.
pub const ERROR_CTX_SERVICE_NAME_COLLISION: DWORD = 0x00001B5E;
///A close operation is pending on the session.
pub const ERROR_CTX_CLOSE_PENDING: DWORD = 0x00001B5F;
///There are no free output buffers available.
pub const ERROR_CTX_NO_OUTBUF: DWORD = 0x00001B60;
///The MODEM.INF file was not found.
pub const ERROR_CTX_MODEM_INF_NOT_FOUND: DWORD = 0x00001B61;
///The modem name was not found in the MODEM.INF file.
pub const ERROR_CTX_INVALID_MODEMNAME: DWORD = 0x00001B62;
///The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.
pub const ERROR_CTX_MODEM_RESPONSE_ERROR: DWORD = 0x00001B63;
///The modem did not respond to the command sent to it. Verify that the modem is properly cabled and turned on.
pub const ERROR_CTX_MODEM_RESPONSE_TIMEOUT: DWORD = 0x00001B64;
///Carrier detect has failed or carrier has been dropped due to disconnect.
pub const ERROR_CTX_MODEM_RESPONSE_NO_CARRIER: DWORD = 0x00001B65;
///Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.
pub const ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE: DWORD = 0x00001B66;
///Busy signal detected at remote site on callback.
pub const ERROR_CTX_MODEM_RESPONSE_BUSY: DWORD = 0x00001B67;
///Voice detected at remote site on callback.
pub const ERROR_CTX_MODEM_RESPONSE_VOICE: DWORD = 0x00001B68;
///Transport driver error.
pub const ERROR_CTX_TD_ERROR: DWORD = 0x00001B69;
///The specified session cannot be found.
pub const ERROR_CTX_WINSTATION_NOT_FOUND: DWORD = 0x00001B6E;
///The specified session name is already in use.
pub const ERROR_CTX_WINSTATION_ALREADY_EXISTS: DWORD = 0x00001B6F;
///The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation.
pub const ERROR_CTX_WINSTATION_BUSY: DWORD = 0x00001B70;
///An attempt has been made to connect to a session whose video mode is not supported by the current client.
pub const ERROR_CTX_BAD_VIDEO_MODE: DWORD = 0x00001B71;
///The application attempted to enable DOS graphics mode. DOS graphics mode is not supported.
pub const ERROR_CTX_GRAPHICS_INVALID: DWORD = 0x00001B7B;
///Your interactive logon privilege has been disabled. Contact your administrator.
pub const ERROR_CTX_LOGON_DISABLED: DWORD = 0x00001B7D;
///The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access.
pub const ERROR_CTX_NOT_CONSOLE: DWORD = 0x00001B7E;
///The client failed to respond to the server connect message.
pub const ERROR_CTX_CLIENT_QUERY_TIMEOUT: DWORD = 0x00001B80;
///Disconnecting the console session is not supported.
pub const ERROR_CTX_CONSOLE_DISCONNECT: DWORD = 0x00001B81;
///Reconnecting a disconnected session to the console is not supported.
pub const ERROR_CTX_CONSOLE_CONNECT: DWORD = 0x00001B82;
///The request to control another session remotely was denied.
pub const ERROR_CTX_SHADOW_DENIED: DWORD = 0x00001B84;
///The requested session access is denied.
pub const ERROR_CTX_WINSTATION_ACCESS_DENIED: DWORD = 0x00001B85;
///The specified terminal connection driver is invalid.
pub const ERROR_CTX_INVALID_WD: DWORD = 0x00001B89;
///The requested session cannot be controlled remotely. This might be because the session is disconnected or does not currently have a user logged on.
pub const ERROR_CTX_SHADOW_INVALID: DWORD = 0x00001B8A;
///The requested session is not configured to allow remote control.
pub const ERROR_CTX_SHADOW_DISABLED: DWORD = 0x00001B8B;
///Your request to connect to this terminal server has been rejected. Your terminal server client license number is currently being used by another user. Call your system administrator to obtain a unique license number.
pub const ERROR_CTX_CLIENT_LICENSE_IN_USE: DWORD = 0x00001B8C;
///Your request to connect to this terminal server has been rejected. Your terminal server client license number has not been entered for this copy of the terminal server client. Contact your system administrator.
pub const ERROR_CTX_CLIENT_LICENSE_NOT_SET: DWORD = 0x00001B8D;
///The number of connections to this computer is limited and all connections are in use right now. Try connecting later or contact your system administrator.
pub const ERROR_CTX_LICENSE_NOT_AVAILABLE: DWORD = 0x00001B8E;
///The client you are using is not licensed to use this system. Your logon request is denied.
pub const ERROR_CTX_LICENSE_CLIENT_INVALID: DWORD = 0x00001B8F;
///The system license has expired. Your logon request is denied.
pub const ERROR_CTX_LICENSE_EXPIRED: DWORD = 0x00001B90;
///Remote control could not be terminated because the specified session is not currently being remotely controlled.
pub const ERROR_CTX_SHADOW_NOT_RUNNING: DWORD = 0x00001B91;
///The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.
pub const ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE: DWORD = 0x00001B92;
///Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.
pub const ERROR_ACTIVATION_COUNT_EXCEEDED: DWORD = 0x00001B93;
///Remote logons are currently disabled.
pub const ERROR_CTX_WINSTATIONS_DISABLED: DWORD = 0x00001B94;
///You do not have the proper encryption level to access this session.
pub const ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED: DWORD = 0x00001B95;
///The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer.
pub const ERROR_CTX_SESSION_IN_USE: DWORD = 0x00001B96;
///The user %s\\%s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue, contact %s\\%s and have them log off.
pub const ERROR_CTX_NO_FORCE_LOGOFF: DWORD = 0x00001B97;
///Unable to log you on because of an account restriction.
pub const ERROR_CTX_ACCOUNT_RESTRICTION: DWORD = 0x00001B98;
///The RDP component %2 detected an error in the protocol stream and has disconnected the client.
pub const ERROR_RDP_PROTOCOL_ERROR: DWORD = 0x00001B99;
///The Client Drive Mapping Service has connected on terminal connection.
pub const ERROR_CTX_CDM_CONNECT: DWORD = 0x00001B9A;
///The Client Drive Mapping Service has disconnected on terminal connection.
pub const ERROR_CTX_CDM_DISCONNECT: DWORD = 0x00001B9B;
///The terminal server security layer detected an error in the protocol stream and has disconnected the client.
pub const ERROR_CTX_SECURITY_LAYER_ERROR: DWORD = 0x00001B9C;
///The target session is incompatible with the current session.
pub const ERROR_TS_INCOMPATIBLE_SESSIONS: DWORD = 0x00001B9D;
///The file replication service API was called incorrectly.
pub const FRS_ERR_INVALID_API_SEQUENCE: DWORD = 0x00001F41;
///The file replication service cannot be started.
pub const FRS_ERR_STARTING_SERVICE: DWORD = 0x00001F42;
///The file replication service cannot be stopped.
pub const FRS_ERR_STOPPING_SERVICE: DWORD = 0x00001F43;
///The file replication service API terminated the request. The event log might contain more information.
pub const FRS_ERR_INTERNAL_API: DWORD = 0x00001F44;
///The file replication service terminated the request. The event log might contain more information.
pub const FRS_ERR_INTERNAL: DWORD = 0x00001F45;
///The file replication service cannot be contacted. The event log might contain more information.
pub const FRS_ERR_SERVICE_COMM: DWORD = 0x00001F46;
///The file replication service cannot satisfy the request because the user has insufficient privileges. The event log might contain more information.
pub const FRS_ERR_INSUFFICIENT_PRIV: DWORD = 0x00001F47;
///The file replication service cannot satisfy the request because authenticated RPC is not available. The event log might contain more information.
pub const FRS_ERR_AUTHENTICATION: DWORD = 0x00001F48;
///The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log might contain more information.
pub const FRS_ERR_PARENT_INSUFFICIENT_PRIV: DWORD = 0x00001F49;
///The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log might contain more information.
pub const FRS_ERR_PARENT_AUTHENTICATION: DWORD = 0x00001F4A;
///The file replication service cannot communicate with the file replication service on the domain controller. The event log might contain more information.
pub const FRS_ERR_CHILD_TO_PARENT_COMM: DWORD = 0x00001F4B;
///The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log might contain more information.
pub const FRS_ERR_PARENT_TO_CHILD_COMM: DWORD = 0x00001F4C;
///The file replication service cannot populate the system volume because of an internal error. The event log might contain more information.
pub const FRS_ERR_SYSVOL_POPULATE: DWORD = 0x00001F4D;
///The file replication service cannot populate the system volume because of an internal time-out. The event log might contain more information.
pub const FRS_ERR_SYSVOL_POPULATE_TIMEOUT: DWORD = 0x00001F4E;
///The file replication service cannot process the request. The system volume is busy with a previous request.
pub const FRS_ERR_SYSVOL_IS_BUSY: DWORD = 0x00001F4F;
///The file replication service cannot stop replicating the system volume because of an internal error. The event log might contain more information.
pub const FRS_ERR_SYSVOL_DEMOTE: DWORD = 0x00001F50;
///The file replication service detected an invalid parameter.
pub const FRS_ERR_INVALID_SERVICE_PARAMETER: DWORD = 0x00001F51;
///An error occurred while installing the directory service. For more information, see the event log.
pub const ERROR_DS_NOT_INSTALLED: DWORD = 0x00002008;
///The directory service evaluated group memberships locally.
pub const ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY: DWORD = 0x00002009;
///The specified directory service attribute or value does not exist.
pub const ERROR_DS_NO_ATTRIBUTE_OR_VALUE: DWORD = 0x0000200A;
///The attribute syntax specified to the directory service is invalid.
pub const ERROR_DS_INVALID_ATTRIBUTE_SYNTAX: DWORD = 0x0000200B;
///The attribute type specified to the directory service is not defined.
pub const ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED: DWORD = 0x0000200C;
///The specified directory service attribute or value already exists.
pub const ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS: DWORD = 0x0000200D;
///The directory service is busy.
pub const ERROR_DS_BUSY: DWORD = 0x0000200E;
///The directory service is unavailable.
pub const ERROR_DS_UNAVAILABLE: DWORD = 0x0000200F;
///The directory service was unable to allocate a relative identifier.
pub const ERROR_DS_NO_RIDS_ALLOCATED: DWORD = 0x00002010;
///The directory service has exhausted the pool of relative identifiers.
pub const ERROR_DS_NO_MORE_RIDS: DWORD = 0x00002011;
///The requested operation could not be performed because the directory service is not the master for that type of operation.
pub const ERROR_DS_INCORRECT_ROLE_OWNER: DWORD = 0x00002012;
///The directory service was unable to initialize the subsystem that allocates relative identifiers.
pub const ERROR_DS_RIDMGR_INIT_ERROR: DWORD = 0x00002013;
///The requested operation did not satisfy one or more constraints associated with the class of the object.
pub const ERROR_DS_OBJ_CLASS_VIOLATION: DWORD = 0x00002014;
///The directory service can perform the requested operation only on a leaf object.
pub const ERROR_DS_CANT_ON_NON_LEAF: DWORD = 0x00002015;
///The directory service cannot perform the requested operation on the relative distinguished name (RDN) attribute of an object.
pub const ERROR_DS_CANT_ON_RDN: DWORD = 0x00002016;
///The directory service detected an attempt to modify the object class of an object.
pub const ERROR_DS_CANT_MOD_OBJ_CLASS: DWORD = 0x00002017;
///The requested cross-domain move operation could not be performed.
pub const ERROR_DS_CROSS_DOM_MOVE_ERROR: DWORD = 0x00002018;
///Unable to contact the global catalog (GC) server.
pub const ERROR_DS_GC_NOT_AVAILABLE: DWORD = 0x00002019;
///The policy object is shared and can only be modified at the root.
pub const ERROR_SHARED_POLICY: DWORD = 0x0000201A;
///The policy object does not exist.
pub const ERROR_POLICY_OBJECT_NOT_FOUND: DWORD = 0x0000201B;
///The requested policy information is only in the directory service.
pub const ERROR_POLICY_ONLY_IN_DS: DWORD = 0x0000201C;
///A domain controller promotion is currently active.
pub const ERROR_PROMOTION_ACTIVE: DWORD = 0x0000201D;
///A domain controller promotion is not currently active.
pub const ERROR_NO_PROMOTION_ACTIVE: DWORD = 0x0000201E;
///An operations error occurred.
pub const ERROR_DS_OPERATIONS_ERROR: DWORD = 0x00002020;
///A protocol error occurred.
pub const ERROR_DS_PROTOCOL_ERROR: DWORD = 0x00002021;
///The time limit for this request was exceeded.
pub const ERROR_DS_TIMELIMIT_EXCEEDED: DWORD = 0x00002022;
///The size limit for this request was exceeded.
pub const ERROR_DS_SIZELIMIT_EXCEEDED: DWORD = 0x00002023;
///The administrative limit for this request was exceeded.
pub const ERROR_DS_ADMIN_LIMIT_EXCEEDED: DWORD = 0x00002024;
///The compare response was false.
pub const ERROR_DS_COMPARE_FALSE: DWORD = 0x00002025;
///The compare response was true.
pub const ERROR_DS_COMPARE_TRUE: DWORD = 0x00002026;
///The requested authentication method is not supported by the server.
pub const ERROR_DS_AUTH_METHOD_NOT_SUPPORTED: DWORD = 0x00002027;
///A more secure authentication method is required for this server.
pub const ERROR_DS_STRONG_AUTH_REQUIRED: DWORD = 0x00002028;
///Inappropriate authentication.
pub const ERROR_DS_INAPPROPRIATE_AUTH: DWORD = 0x00002029;
///The authentication mechanism is unknown.
pub const ERROR_DS_AUTH_UNKNOWN: DWORD = 0x0000202A;
///A referral was returned from the server.
pub const ERROR_DS_REFERRAL: DWORD = 0x0000202B;
///The server does not support the requested critical extension.
pub const ERROR_DS_UNAVAILABLE_CRIT_EXTENSION: DWORD = 0x0000202C;
///This request requires a secure connection.
pub const ERROR_DS_CONFIDENTIALITY_REQUIRED: DWORD = 0x0000202D;
///Inappropriate matching.
pub const ERROR_DS_INAPPROPRIATE_MATCHING: DWORD = 0x0000202E;
///A constraint violation occurred.
pub const ERROR_DS_CONSTRAINT_VIOLATION: DWORD = 0x0000202F;
///There is no such object on the server.
pub const ERROR_DS_NO_SUCH_OBJECT: DWORD = 0x00002030;
///There is an alias problem.
pub const ERROR_DS_ALIAS_PROBLEM: DWORD = 0x00002031;
///An invalid dn syntax has been specified.
pub const ERROR_DS_INVALID_DN_SYNTAX: DWORD = 0x00002032;
///The object is a leaf object.
pub const ERROR_DS_IS_LEAF: DWORD = 0x00002033;
///There is an alias dereferencing problem.
pub const ERROR_DS_ALIAS_DEREF_PROBLEM: DWORD = 0x00002034;
///The server is unwilling to process the request.
pub const ERROR_DS_UNWILLING_TO_PERFORM: DWORD = 0x00002035;
///A loop has been detected.
pub const ERROR_DS_LOOP_DETECT: DWORD = 0x00002036;
///There is a naming violation.
pub const ERROR_DS_NAMING_VIOLATION: DWORD = 0x00002037;
///The result set is too large.
pub const ERROR_DS_OBJECT_RESULTS_TOO_LARGE: DWORD = 0x00002038;
///The operation affects multiple DSAs.
pub const ERROR_DS_AFFECTS_MULTIPLE_DSAS: DWORD = 0x00002039;
///The server is not operational.
pub const ERROR_DS_SERVER_DOWN: DWORD = 0x0000203A;
///A local error has occurred.
pub const ERROR_DS_LOCAL_ERROR: DWORD = 0x0000203B;
///An encoding error has occurred.
pub const ERROR_DS_ENCODING_ERROR: DWORD = 0x0000203C;
///A decoding error has occurred.
pub const ERROR_DS_DECODING_ERROR: DWORD = 0x0000203D;
///The search filter cannot be recognized.
pub const ERROR_DS_FILTER_UNKNOWN: DWORD = 0x0000203E;
///One or more parameters are illegal.
pub const ERROR_DS_PARAM_ERROR: DWORD = 0x0000203F;
///The specified method is not supported.
pub const ERROR_DS_NOT_SUPPORTED: DWORD = 0x00002040;
///No results were returned.
pub const ERROR_DS_NO_RESULTS_RETURNED: DWORD = 0x00002041;
///The specified control is not supported by the server.
pub const ERROR_DS_CONTROL_NOT_FOUND: DWORD = 0x00002042;
///A referral loop was detected by the client.
pub const ERROR_DS_CLIENT_LOOP: DWORD = 0x00002043;
///The preset referral limit was exceeded.
pub const ERROR_DS_REFERRAL_LIMIT_EXCEEDED: DWORD = 0x00002044;
///The search requires a SORT control.
pub const ERROR_DS_SORT_CONTROL_MISSING: DWORD = 0x00002045;
///The search results exceed the offset range specified.
pub const ERROR_DS_OFFSET_RANGE_ERROR: DWORD = 0x00002046;
///The root object must be the head of a naming context. The root object cannot have an instantiated parent.
pub const ERROR_DS_ROOT_MUST_BE_NC: DWORD = 0x0000206D;
///The add replica operation cannot be performed. The naming context must be writable to create the replica.
pub const ERROR_DS_ADD_REPLICA_INHIBITED: DWORD = 0x0000206E;
///A reference to an attribute that is not defined in the schema occurred.
pub const ERROR_DS_ATT_NOT_DEF_IN_SCHEMA: DWORD = 0x0000206F;
///The maximum size of an object has been exceeded.
pub const ERROR_DS_MAX_OBJ_SIZE_EXCEEDED: DWORD = 0x00002070;
///An attempt was made to add an object to the directory with a name that is already in use.
pub const ERROR_DS_OBJ_STRING_NAME_EXISTS: DWORD = 0x00002071;
///An attempt was made to add an object of a class that does not have an RDN defined in the schema.
pub const ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA: DWORD = 0x00002072;
///An attempt was made to add an object using an RDN that is not the RDN defined in the schema.
pub const ERROR_DS_RDN_DOESNT_MATCH_SCHEMA: DWORD = 0x00002073;
///None of the requested attributes were found on the objects.
pub const ERROR_DS_NO_REQUESTED_ATTS_FOUND: DWORD = 0x00002074;
///The user buffer is too small.
pub const ERROR_DS_USER_BUFFER_TO_SMALL: DWORD = 0x00002075;
///The attribute specified in the operation is not present on the object.
pub const ERROR_DS_ATT_IS_NOT_ON_OBJ: DWORD = 0x00002076;
///Illegal modify operation. Some aspect of the modification is not permitted.
pub const ERROR_DS_ILLEGAL_MOD_OPERATION: DWORD = 0x00002077;
///The specified object is too large.
pub const ERROR_DS_OBJ_TOO_LARGE: DWORD = 0x00002078;
///The specified instance type is not valid.
pub const ERROR_DS_BAD_INSTANCE_TYPE: DWORD = 0x00002079;
///The operation must be performed at a master DSA.
pub const ERROR_DS_MASTERDSA_REQUIRED: DWORD = 0x0000207A;
///The object class attribute must be specified.
pub const ERROR_DS_OBJECT_CLASS_REQUIRED: DWORD = 0x0000207B;
///A required attribute is missing.
pub const ERROR_DS_MISSING_REQUIRED_ATT: DWORD = 0x0000207C;
///An attempt was made to modify an object to include an attribute that is not legal for its class.
pub const ERROR_DS_ATT_NOT_DEF_FOR_CLASS: DWORD = 0x0000207D;
///The specified attribute is already present on the object.
pub const ERROR_DS_ATT_ALREADY_EXISTS: DWORD = 0x0000207E;
///The specified attribute is not present, or has no values.
pub const ERROR_DS_CANT_ADD_ATT_VALUES: DWORD = 0x00002080;
///Multiple values were specified for an attribute that can have only one value.
pub const ERROR_DS_SINGLE_VALUE_CONSTRAINT: DWORD = 0x00002081;
///A value for the attribute was not in the acceptable range of values.
pub const ERROR_DS_RANGE_CONSTRAINT: DWORD = 0x00002082;
///The specified value already exists.
pub const ERROR_DS_ATT_VAL_ALREADY_EXISTS: DWORD = 0x00002083;
///The attribute cannot be removed because it is not present on the object.
pub const ERROR_DS_CANT_REM_MISSING_ATT: DWORD = 0x00002084;
///The attribute value cannot be removed because it is not present on the object.
pub const ERROR_DS_CANT_REM_MISSING_ATT_VAL: DWORD = 0x00002085;
///The specified root object cannot be a subreference.
pub const ERROR_DS_ROOT_CANT_BE_SUBREF: DWORD = 0x00002086;
///Chaining is not permitted.
pub const ERROR_DS_NO_CHAINING: DWORD = 0x00002087;
///Chained evaluation is not permitted.
pub const ERROR_DS_NO_CHAINED_EVAL: DWORD = 0x00002088;
///The operation could not be performed because the object's parent is either uninstantiated or deleted.
pub const ERROR_DS_NO_PARENT_OBJECT: DWORD = 0x00002089;
///Having a parent that is an alias is not permitted. Aliases are leaf objects.
pub const ERROR_DS_PARENT_IS_AN_ALIAS: DWORD = 0x0000208A;
///The object and parent must be of the same type, either both masters or both replicas.
pub const ERROR_DS_CANT_MIX_MASTER_AND_REPS: DWORD = 0x0000208B;
///The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.
pub const ERROR_DS_CHILDREN_EXIST: DWORD = 0x0000208C;
///Directory object not found.
pub const ERROR_DS_OBJ_NOT_FOUND: DWORD = 0x0000208D;
///The aliased object is missing.
pub const ERROR_DS_ALIASED_OBJ_MISSING: DWORD = 0x0000208E;
///The object name has bad syntax.
pub const ERROR_DS_BAD_NAME_SYNTAX: DWORD = 0x0000208F;
///An alias is not permitted to refer to another alias.
pub const ERROR_DS_ALIAS_POINTS_TO_ALIAS: DWORD = 0x00002090;
///The alias cannot be dereferenced.
pub const ERROR_DS_CANT_DEREF_ALIAS: DWORD = 0x00002091;
///The operation is out of scope.
pub const ERROR_DS_OUT_OF_SCOPE: DWORD = 0x00002092;
///The operation cannot continue because the object is in the process of being removed.
pub const ERROR_DS_OBJECT_BEING_REMOVED: DWORD = 0x00002093;
///The DSA object cannot be deleted.
pub const ERROR_DS_CANT_DELETE_DSA_OBJ: DWORD = 0x00002094;
///A directory service error has occurred.
pub const ERROR_DS_GENERIC_ERROR: DWORD = 0x00002095;
///The operation can only be performed on an internal master DSA object.
pub const ERROR_DS_DSA_MUST_BE_INT_MASTER: DWORD = 0x00002096;
///The object must be of class DSA.
pub const ERROR_DS_CLASS_NOT_DSA: DWORD = 0x00002097;
///Insufficient access rights to perform the operation.
pub const ERROR_DS_INSUFF_ACCESS_RIGHTS: DWORD = 0x00002098;
///The object cannot be added because the parent is not on the list of possible superiors.
pub const ERROR_DS_ILLEGAL_SUPERIOR: DWORD = 0x00002099;
///Access to the attribute is not permitted because the attribute is owned by the SAM.
pub const ERROR_DS_ATTRIBUTE_OWNED_BY_SAM: DWORD = 0x0000209A;
///The name has too many parts.
pub const ERROR_DS_NAME_TOO_MANY_PARTS: DWORD = 0x0000209B;
///The name is too long.
pub const ERROR_DS_NAME_TOO_LONG: DWORD = 0x0000209C;
///The name value is too long.
pub const ERROR_DS_NAME_VALUE_TOO_LONG: DWORD = 0x0000209D;
///The directory service encountered an error parsing a name.
pub const ERROR_DS_NAME_UNPARSEABLE: DWORD = 0x0000209E;
///The directory service cannot get the attribute type for a name.
pub const ERROR_DS_NAME_TYPE_UNKNOWN: DWORD = 0x0000209F;
///The name does not identify an object; the name identifies a phantom.
pub const ERROR_DS_NOT_AN_OBJECT: DWORD = 0x000020A0;
///The security descriptor is too short.
pub const ERROR_DS_SEC_DESC_TOO_SHORT: DWORD = 0x000020A1;
///The security descriptor is invalid.
pub const ERROR_DS_SEC_DESC_INVALID: DWORD = 0x000020A2;
///Failed to create name for deleted object.
pub const ERROR_DS_NO_DELETED_NAME: DWORD = 0x000020A3;
///The parent of a new subreference must exist.
pub const ERROR_DS_SUBREF_MUST_HAVE_PARENT: DWORD = 0x000020A4;
///The object must be a naming context.
pub const ERROR_DS_NCNAME_MUST_BE_NC: DWORD = 0x000020A5;
///It is not permitted to add an attribute that is owned by the system.
pub const ERROR_DS_CANT_ADD_SYSTEM_ONLY: DWORD = 0x000020A6;
///The class of the object must be structural; you cannot instantiate an abstract class.
pub const ERROR_DS_CLASS_MUST_BE_CONCRETE: DWORD = 0x000020A7;
///The schema object could not be found.
pub const ERROR_DS_INVALID_DMD: DWORD = 0x000020A8;
///A local object with this GUID (dead or alive) already exists.
pub const ERROR_DS_OBJ_GUID_EXISTS: DWORD = 0x000020A9;
///The operation cannot be performed on a back link.
pub const ERROR_DS_NOT_ON_BACKLINK: DWORD = 0x000020AA;
///The cross-reference for the specified naming context could not be found.
pub const ERROR_DS_NO_CROSSREF_FOR_NC: DWORD = 0x000020AB;
///The operation could not be performed because the directory service is shutting down.
pub const ERROR_DS_SHUTTING_DOWN: DWORD = 0x000020AC;
///The directory service request is invalid.
pub const ERROR_DS_UNKNOWN_OPERATION: DWORD = 0x000020AD;
///The role owner attribute could not be read.
pub const ERROR_DS_INVALID_ROLE_OWNER: DWORD = 0x000020AE;
///The requested Flexible Single Master Operations (FSMO) operation failed. The current FSMO holder could not be contacted.
pub const ERROR_DS_COULDNT_CONTACT_FSMO: DWORD = 0x000020AF;
///Modification of a distinguished name across a naming context is not permitted.
pub const ERROR_DS_CROSS_NC_DN_RENAME: DWORD = 0x000020B0;
///The attribute cannot be modified because it is owned by the system.
pub const ERROR_DS_CANT_MOD_SYSTEM_ONLY: DWORD = 0x000020B1;
///Only the replicator can perform this function.
pub const ERROR_DS_REPLICATOR_ONLY: DWORD = 0x000020B2;
///The specified class is not defined.
pub const ERROR_DS_OBJ_CLASS_NOT_DEFINED: DWORD = 0x000020B3;
///The specified class is not a subclass.
pub const ERROR_DS_OBJ_CLASS_NOT_SUBCLASS: DWORD = 0x000020B4;
///The name reference is invalid.
pub const ERROR_DS_NAME_REFERENCE_INVALID: DWORD = 0x000020B5;
///A cross-reference already exists.
pub const ERROR_DS_CROSS_REF_EXISTS: DWORD = 0x000020B6;
///It is not permitted to delete a master cross-reference.
pub const ERROR_DS_CANT_DEL_MASTER_CROSSREF: DWORD = 0x000020B7;
///Subtree notifications are only supported on naming context (NC) heads.
pub const ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD: DWORD = 0x000020B8;
///Notification filter is too complex.
pub const ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX: DWORD = 0x000020B9;
///Schema update failed: Duplicate RDN.
pub const ERROR_DS_DUP_RDN: DWORD = 0x000020BA;
///Schema update failed: Duplicate OID.
pub const ERROR_DS_DUP_OID: DWORD = 0x000020BB;
///Schema update failed: Duplicate Message Application Programming Interface (MAPI) identifier.
pub const ERROR_DS_DUP_MAPI_ID: DWORD = 0x000020BC;
///Schema update failed: Duplicate schema ID GUID.
pub const ERROR_DS_DUP_SCHEMA_ID_GUID: DWORD = 0x000020BD;
///Schema update failed: Duplicate LDAP display name.
pub const ERROR_DS_DUP_LDAP_DISPLAY_NAME: DWORD = 0x000020BE;
///Schema update failed: Range-Lower less than Range-Upper.
pub const ERROR_DS_SEMANTIC_ATT_TEST: DWORD = 0x000020BF;
///Schema update failed: Syntax mismatch.
pub const ERROR_DS_SYNTAX_MISMATCH: DWORD = 0x000020C0;
///Schema deletion failed: Attribute is used in the Must-Contain list.
pub const ERROR_DS_EXISTS_IN_MUST_HAVE: DWORD = 0x000020C1;
///Schema deletion failed: Attribute is used in the May-Contain list.
pub const ERROR_DS_EXISTS_IN_MAY_HAVE: DWORD = 0x000020C2;
///Schema update failed: Attribute in May-Contain list does not exist.
pub const ERROR_DS_NONEXISTENT_MAY_HAVE: DWORD = 0x000020C3;
///Schema update failed: Attribute in the Must-Contain list does not exist.
pub const ERROR_DS_NONEXISTENT_MUST_HAVE: DWORD = 0x000020C4;
///Schema update failed: Class in the Aux Class list does not exist or is not an auxiliary class.
pub const ERROR_DS_AUX_CLS_TEST_FAIL: DWORD = 0x000020C5;
///Schema update failed: Class in the Poss-Superiors list does not exist.
pub const ERROR_DS_NONEXISTENT_POSS_SUP: DWORD = 0x000020C6;
///Schema update failed: Class in the subclass of the list does not exist or does not satisfy hierarchy rules.
pub const ERROR_DS_SUB_CLS_TEST_FAIL: DWORD = 0x000020C7;
///Schema update failed: Rdn-Att-Id has wrong syntax.
pub const ERROR_DS_BAD_RDN_ATT_ID_SYNTAX: DWORD = 0x000020C8;
///Schema deletion failed: Class is used as an auxiliary class.
pub const ERROR_DS_EXISTS_IN_AUX_CLS: DWORD = 0x000020C9;
///Schema deletion failed: Class is used as a subclass.
pub const ERROR_DS_EXISTS_IN_SUB_CLS: DWORD = 0x000020CA;
///Schema deletion failed: Class is used as a Poss-Superior.
pub const ERROR_DS_EXISTS_IN_POSS_SUP: DWORD = 0x000020CB;
///Schema update failed in recalculating validation cache.
pub const ERROR_DS_RECALCSCHEMA_FAILED: DWORD = 0x000020CC;
///The tree deletion is not finished. The request must be made again to continue deleting the tree.
pub const ERROR_DS_TREE_DELETE_NOT_FINISHED: DWORD = 0x000020CD;
///The requested delete operation could not be performed.
pub const ERROR_DS_CANT_DELETE: DWORD = 0x000020CE;
///Cannot read the governs class identifier for the schema record.
pub const ERROR_DS_ATT_SCHEMA_REQ_ID: DWORD = 0x000020CF;
///The attribute schema has bad syntax.
pub const ERROR_DS_BAD_ATT_SCHEMA_SYNTAX: DWORD = 0x000020D0;
///The attribute could not be cached.
pub const ERROR_DS_CANT_CACHE_ATT: DWORD = 0x000020D1;
///The class could not be cached.
pub const ERROR_DS_CANT_CACHE_CLASS: DWORD = 0x000020D2;
///The attribute could not be removed from the cache.
pub const ERROR_DS_CANT_REMOVE_ATT_CACHE: DWORD = 0x000020D3;
///The class could not be removed from the cache.
pub const ERROR_DS_CANT_REMOVE_CLASS_CACHE: DWORD = 0x000020D4;
///The distinguished name attribute could not be read.
pub const ERROR_DS_CANT_RETRIEVE_DN: DWORD = 0x000020D5;
///No superior reference has been configured for the directory service. The directory service is, therefore, unable to issue referrals to objects outside this forest.
pub const ERROR_DS_MISSING_SUPREF: DWORD = 0x000020D6;
///The instance type attribute could not be retrieved.
pub const ERROR_DS_CANT_RETRIEVE_INSTANCE: DWORD = 0x000020D7;
///An internal error has occurred.
pub const ERROR_DS_CODE_INCONSISTENCY: DWORD = 0x000020D8;
///A database error has occurred.
pub const ERROR_DS_DATABASE_ERROR: DWORD = 0x000020D9;
///The governsID attribute is missing.
pub const ERROR_DS_GOVERNSID_MISSING: DWORD = 0x000020DA;
///An expected attribute is missing.
pub const ERROR_DS_MISSING_EXPECTED_ATT: DWORD = 0x000020DB;
///The specified naming context is missing a cross-reference.
pub const ERROR_DS_NCNAME_MISSING_CR_REF: DWORD = 0x000020DC;
///A security checking error has occurred.
pub const ERROR_DS_SECURITY_CHECKING_ERROR: DWORD = 0x000020DD;
///The schema is not loaded.
pub const ERROR_DS_SCHEMA_NOT_LOADED: DWORD = 0x000020DE;
///Schema allocation failed. Check if the machine is running low on memory.
pub const ERROR_DS_SCHEMA_ALLOC_FAILED: DWORD = 0x000020DF;
///Failed to obtain the required syntax for the attribute schema.
pub const ERROR_DS_ATT_SCHEMA_REQ_SYNTAX: DWORD = 0x000020E0;
///The GC verification failed. The GC is not available or does not support the operation. Some part of the directory is currently not available.
pub const ERROR_DS_GCVERIFY_ERROR: DWORD = 0x000020E1;
///The replication operation failed because of a schema mismatch between the servers involved.
pub const ERROR_DS_DRA_SCHEMA_MISMATCH: DWORD = 0x000020E2;
///The DSA object could not be found.
pub const ERROR_DS_CANT_FIND_DSA_OBJ: DWORD = 0x000020E3;
///The naming context could not be found.
pub const ERROR_DS_CANT_FIND_EXPECTED_NC: DWORD = 0x000020E4;
///The naming context could not be found in the cache.
pub const ERROR_DS_CANT_FIND_NC_IN_CACHE: DWORD = 0x000020E5;
///The child object could not be retrieved.
pub const ERROR_DS_CANT_RETRIEVE_CHILD: DWORD = 0x000020E6;
///The modification was not permitted for security reasons.
pub const ERROR_DS_SECURITY_ILLEGAL_MODIFY: DWORD = 0x000020E7;
///The operation cannot replace the hidden record.
pub const ERROR_DS_CANT_REPLACE_HIDDEN_REC: DWORD = 0x000020E8;
///The hierarchy file is invalid.
pub const ERROR_DS_BAD_HIERARCHY_FILE: DWORD = 0x000020E9;
///The attempt to build the hierarchy table failed.
pub const ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED: DWORD = 0x000020EA;
///The directory configuration parameter is missing from the registry.
pub const ERROR_DS_CONFIG_PARAM_MISSING: DWORD = 0x000020EB;
///The attempt to count the address book indices failed.
pub const ERROR_DS_COUNTING_AB_INDICES_FAILED: DWORD = 0x000020EC;
///The allocation of the hierarchy table failed.
pub const ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED: DWORD = 0x000020ED;
///The directory service encountered an internal failure.
pub const ERROR_DS_INTERNAL_FAILURE: DWORD = 0x000020EE;
///The directory service encountered an unknown failure.
pub const ERROR_DS_UNKNOWN_ERROR: DWORD = 0x000020EF;
///A root object requires a class of "top".
pub const ERROR_DS_ROOT_REQUIRES_CLASS_TOP: DWORD = 0x000020F0;
///This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.
pub const ERROR_DS_REFUSING_FSMO_ROLES: DWORD = 0x000020F1;
///The directory service is missing mandatory configuration information and is unable to determine the ownership of floating single-master operation roles.
pub const ERROR_DS_MISSING_FSMO_SETTINGS: DWORD = 0x000020F2;
///The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.
pub const ERROR_DS_UNABLE_TO_SURRENDER_ROLES: DWORD = 0x000020F3;
///The replication operation failed.
pub const ERROR_DS_DRA_GENERIC: DWORD = 0x000020F4;
///An invalid parameter was specified for this replication operation.
pub const ERROR_DS_DRA_INVALID_PARAMETER: DWORD = 0x000020F5;
///The directory service is too busy to complete the replication operation at this time.
pub const ERROR_DS_DRA_BUSY: DWORD = 0x000020F6;
///The DN specified for this replication operation is invalid.
pub const ERROR_DS_DRA_BAD_DN: DWORD = 0x000020F7;
///The naming context specified for this replication operation is invalid.
pub const ERROR_DS_DRA_BAD_NC: DWORD = 0x000020F8;
///The DN specified for this replication operation already exists.
pub const ERROR_DS_DRA_DN_EXISTS: DWORD = 0x000020F9;
///The replication system encountered an internal error.
pub const ERROR_DS_DRA_INTERNAL_ERROR: DWORD = 0x000020FA;
///The replication operation encountered a database inconsistency.
pub const ERROR_DS_DRA_INCONSISTENT_DIT: DWORD = 0x000020FB;
///The server specified for this replication operation could not be contacted.
pub const ERROR_DS_DRA_CONNECTION_FAILED: DWORD = 0x000020FC;
///The replication operation encountered an object with an invalid instance type.
pub const ERROR_DS_DRA_BAD_INSTANCE_TYPE: DWORD = 0x000020FD;
///The replication operation failed to allocate memory.
pub const ERROR_DS_DRA_OUT_OF_MEM: DWORD = 0x000020FE;
///The replication operation encountered an error with the mail system.
pub const ERROR_DS_DRA_MAIL_PROBLEM: DWORD = 0x000020FF;
///The replication reference information for the target server already exists.
pub const ERROR_DS_DRA_REF_ALREADY_EXISTS: DWORD = 0x00002100;
///The replication reference information for the target server does not exist.
pub const ERROR_DS_DRA_REF_NOT_FOUND: DWORD = 0x00002101;
///The naming context cannot be removed because it is replicated to another server.
pub const ERROR_DS_DRA_OBJ_IS_REP_SOURCE: DWORD = 0x00002102;
///The replication operation encountered a database error.
pub const ERROR_DS_DRA_DB_ERROR: DWORD = 0x00002103;
///The naming context is in the process of being removed or is not replicated from the specified server.
pub const ERROR_DS_DRA_NO_REPLICA: DWORD = 0x00002104;
///Replication access was denied.
pub const ERROR_DS_DRA_ACCESS_DENIED: DWORD = 0x00002105;
///The requested operation is not supported by this version of the directory service.
pub const ERROR_DS_DRA_NOT_SUPPORTED: DWORD = 0x00002106;
///The replication RPC was canceled.
pub const ERROR_DS_DRA_RPC_CANCELLED: DWORD = 0x00002107;
///The source server is currently rejecting replication requests.
pub const ERROR_DS_DRA_SOURCE_DISABLED: DWORD = 0x00002108;
///The destination server is currently rejecting replication requests.
pub const ERROR_DS_DRA_SINK_DISABLED: DWORD = 0x00002109;
///The replication operation failed due to a collision of object names.
pub const ERROR_DS_DRA_NAME_COLLISION: DWORD = 0x0000210A;
///The replication source has been reinstalled.
pub const ERROR_DS_DRA_SOURCE_REINSTALLED: DWORD = 0x0000210B;
///The replication operation failed because a required parent object is missing.
pub const ERROR_DS_DRA_MISSING_PARENT: DWORD = 0x0000210C;
///The replication operation was preempted.
pub const ERROR_DS_DRA_PREEMPTED: DWORD = 0x0000210D;
///The replication synchronization attempt was abandoned because of a lack of updates.
pub const ERROR_DS_DRA_ABANDON_SYNC: DWORD = 0x0000210E;
///The replication operation was terminated because the system is shutting down.
pub const ERROR_DS_DRA_SHUTDOWN: DWORD = 0x0000210F;
///A synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from the source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of the source partial attribute set.
pub const ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET: DWORD = 0x00002110;
///The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.
pub const ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA: DWORD = 0x00002111;
///The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.
pub const ERROR_DS_DRA_EXTN_CONNECTION_FAILED: DWORD = 0x00002112;
///The version of the directory service schema of the source forest is not compatible with the version of the directory service on this computer.
pub const ERROR_DS_INSTALL_SCHEMA_MISMATCH: DWORD = 0x00002113;
///Schema update failed: An attribute with the same link identifier already exists.
pub const ERROR_DS_DUP_LINK_ID: DWORD = 0x00002114;
///Name translation: Generic processing error.
pub const ERROR_DS_NAME_ERROR_RESOLVING: DWORD = 0x00002115;
///Name translation: Could not find the name or insufficient right to see name.
pub const ERROR_DS_NAME_ERROR_NOT_FOUND: DWORD = 0x00002116;
///Name translation: Input name mapped to more than one output name.
pub const ERROR_DS_NAME_ERROR_NOT_UNIQUE: DWORD = 0x00002117;
///Name translation: The input name was found but not the associated output format.
pub const ERROR_DS_NAME_ERROR_NO_MAPPING: DWORD = 0x00002118;
///Name translation: Unable to resolve completely, only the domain was found.
pub const ERROR_DS_NAME_ERROR_DOMAIN_ONLY: DWORD = 0x00002119;
///Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.
pub const ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING: DWORD = 0x0000211A;
///Modification of a constructed attribute is not allowed.
pub const ERROR_DS_CONSTRUCTED_ATT_MOD: DWORD = 0x0000211B;
///The OM-Object-Class specified is incorrect for an attribute with the specified syntax.
pub const ERROR_DS_WRONG_OM_OBJ_CLASS: DWORD = 0x0000211C;
///The replication request has been posted; waiting for a reply.
pub const ERROR_DS_DRA_REPL_PENDING: DWORD = 0x0000211D;
///The requested operation requires a directory service, and none was available.
pub const ERROR_DS_DS_REQUIRED: DWORD = 0x0000211E;
///The LDAP display name of the class or attribute contains non-ASCII characters.
pub const ERROR_DS_INVALID_LDAP_DISPLAY_NAME: DWORD = 0x0000211F;
///The requested search operation is only supported for base searches.
pub const ERROR_DS_NON_BASE_SEARCH: DWORD = 0x00002120;
///The search failed to retrieve attributes from the database.
pub const ERROR_DS_CANT_RETRIEVE_ATTS: DWORD = 0x00002121;
///The schema update operation tried to add a backward link attribute that has no corresponding forward link.
pub const ERROR_DS_BACKLINK_WITHOUT_LINK: DWORD = 0x00002122;
///The source and destination of a cross-domain move do not agree on the object's epoch number. Either the source or the destination does not have the latest version of the object.
pub const ERROR_DS_EPOCH_MISMATCH: DWORD = 0x00002123;
///The source and destination of a cross-domain move do not agree on the object's current name. Either the source or the destination does not have the latest version of the object.
pub const ERROR_DS_SRC_NAME_MISMATCH: DWORD = 0x00002124;
///The source and destination for the cross-domain move operation are identical. The caller should use a local move operation instead of a cross-domain move operation.
pub const ERROR_DS_SRC_AND_DST_NC_IDENTICAL: DWORD = 0x00002125;
///The source and destination for a cross-domain move do not agree on the naming contexts in the forest. Either the source or the destination does not have the latest version of the Partitions container.
pub const ERROR_DS_DST_NC_MISMATCH: DWORD = 0x00002126;
///The destination of a cross-domain move is not authoritative for the destination naming context.
pub const ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC: DWORD = 0x00002127;
///The source and destination of a cross-domain move do not agree on the identity of the source object. Either the source or the destination does not have the latest version of the source object.
pub const ERROR_DS_SRC_GUID_MISMATCH: DWORD = 0x00002128;
///The object being moved across domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object.
pub const ERROR_DS_CANT_MOVE_DELETED_OBJECT: DWORD = 0x00002129;
///Another operation that requires exclusive access to the PDC FSMO is already in progress.
pub const ERROR_DS_PDC_OPERATION_IN_PROGRESS: DWORD = 0x0000212A;
///A cross-domain move operation failed because two versions of the moved object exist—one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state.
pub const ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD: DWORD = 0x0000212B;
///This object cannot be moved across domain boundaries either because cross-domain moves for this class are not allowed, or the object has some special characteristics, for example, a trust account or a restricted relative identifier (RID), that prevent its move.
pub const ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION: DWORD = 0x0000212C;
///Cannot move objects with memberships across domain boundaries because, once moved, this violates the membership conditions of the account group. Remove the object from any account group memberships and retry.
pub const ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS: DWORD = 0x0000212D;
///A naming context head must be the immediate child of another naming context head, not of an interior node.
pub const ERROR_DS_NC_MUST_HAVE_NC_PARENT: DWORD = 0x0000212E;
///The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Ensure that the domain naming master role is held by a server that is configured as a GC server, and that the server is up-to-date with its replication partners. (Applies only to Windows 2000 operating system domain naming masters.)
pub const ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE: DWORD = 0x0000212F;
///Destination domain must be in native mode.
pub const ERROR_DS_DST_DOMAIN_NOT_NATIVE: DWORD = 0x00002130;
///The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.
pub const ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER: DWORD = 0x00002131;
///Cross-domain moves of nonempty account groups is not allowed.
pub const ERROR_DS_CANT_MOVE_ACCOUNT_GROUP: DWORD = 0x00002132;
///Cross-domain moves of nonempty resource groups is not allowed.
pub const ERROR_DS_CANT_MOVE_RESOURCE_GROUP: DWORD = 0x00002133;
///The search flags for the attribute are invalid. The ambiguous name resolution (ANR) bit is valid only on attributes of Unicode or Teletex strings.
pub const ERROR_DS_INVALID_SEARCH_FLAG: DWORD = 0x00002134;
///Tree deletions starting at an object that has an NC head as a descendant are not allowed.
pub const ERROR_DS_NO_TREE_DELETE_ABOVE_NC: DWORD = 0x00002135;
///The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.
pub const ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE: DWORD = 0x00002136;
///The directory service failed to identify the list of objects to delete while attempting a tree deletion.
pub const ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE: DWORD = 0x00002137;
///SAM initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system and reboot into Directory Services Restore Mode. Check the event log for detailed information.
pub const ERROR_DS_SAM_INIT_FAILURE: DWORD = 0x00002138;
///Only an administrator can modify the membership list of an administrative group.
pub const ERROR_DS_SENSITIVE_GROUP_VIOLATION: DWORD = 0x00002139;
///Cannot change the primary group ID of a domain controller account.
pub const ERROR_DS_CANT_MOD_PRIMARYGROUPID: DWORD = 0x0000213A;
///An attempt was made to modify the base schema.
pub const ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD: DWORD = 0x0000213B;
///Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.
pub const ERROR_DS_NONSAFE_SCHEMA_CHANGE: DWORD = 0x0000213C;
///Schema update is not allowed on this DC because the DC is not the schema FSMO role owner.
pub const ERROR_DS_SCHEMA_UPDATE_DISALLOWED: DWORD = 0x0000213D;
///An object of this class cannot be created under the schema container. You can only create Attribute-Schema and Class-Schema objects under the schema container.
pub const ERROR_DS_CANT_CREATE_UNDER_SCHEMA: DWORD = 0x0000213E;
///The replica or child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.
pub const ERROR_DS_INSTALL_NO_SRC_SCH_VERSION: DWORD = 0x0000213F;
///The replica or child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the System32 directory.
pub const ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE: DWORD = 0x00002140;
///The specified group type is invalid.
pub const ERROR_DS_INVALID_GROUP_TYPE: DWORD = 0x00002141;
///You cannot nest global groups in a mixed domain if the group is security-enabled.
pub const ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN: DWORD = 0x00002142;
///You cannot nest local groups in a mixed domain if the group is security-enabled.
pub const ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN: DWORD = 0x00002143;
///A global group cannot have a local group as a member.
pub const ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER: DWORD = 0x00002144;
///A global group cannot have a universal group as a member.
pub const ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER: DWORD = 0x00002145;
///A universal group cannot have a local group as a member.
pub const ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER: DWORD = 0x00002146;
///A global group cannot have a cross-domain member.
pub const ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER: DWORD = 0x00002147;
///A local group cannot have another cross domain local group as a member.
pub const ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER: DWORD = 0x00002148;
///A group with primary members cannot change to a security-disabled group.
pub const ERROR_DS_HAVE_PRIMARY_MEMBERS: DWORD = 0x00002149;
///The schema cache load failed to convert the string default security descriptor (SD) on a class-schema object.
pub const ERROR_DS_STRING_SD_CONVERSION_FAILED: DWORD = 0x0000214A;
///Only DSAs configured to be GC servers should be allowed to hold the domain naming master FSMO role. (Applies only to Windows 2000 servers.)
pub const ERROR_DS_NAMING_MASTER_GC: DWORD = 0x0000214B;
///The DSA operation is unable to proceed because of a DNS lookup failure.
pub const ERROR_DS_DNS_LOOKUP_FAILURE: DWORD = 0x0000214C;
///While processing a change to the DNS host name for an object, the SPN values could not be kept in sync.
pub const ERROR_DS_COULDNT_UPDATE_SPNS: DWORD = 0x0000214D;
///The Security Descriptor attribute could not be read.
pub const ERROR_DS_CANT_RETRIEVE_SD: DWORD = 0x0000214E;
///The object requested was not found, but an object with that key was found.
pub const ERROR_DS_KEY_NOT_UNIQUE: DWORD = 0x0000214F;
///The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1.
pub const ERROR_DS_WRONG_LINKED_ATT_SYNTAX: DWORD = 0x00002150;
///SAM needs to get the boot password.
pub const ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD: DWORD = 0x00002151;
///SAM needs to get the boot key from the floppy disk.
pub const ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY: DWORD = 0x00002152;
///Directory Service cannot start.
pub const ERROR_DS_CANT_START: DWORD = 0x00002153;
///Directory Services could not start.
pub const ERROR_DS_INIT_FAILURE: DWORD = 0x00002154;
///The connection between client and server requires packet privacy or better.
pub const ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION: DWORD = 0x00002155;
///The source domain cannot be in the same forest as the destination.
pub const ERROR_DS_SOURCE_DOMAIN_IN_FOREST: DWORD = 0x00002156;
///The destination domain MUST be in the forest.
pub const ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST: DWORD = 0x00002157;
///The operation requires that destination domain auditing be enabled.
pub const ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED: DWORD = 0x00002158;
///The operation could not locate a DC for the source domain.
pub const ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN: DWORD = 0x00002159;
///The source object must be a group or user.
pub const ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER: DWORD = 0x0000215A;
///The source object's SID already exists in the destination forest.
pub const ERROR_DS_SRC_SID_EXISTS_IN_FOREST: DWORD = 0x0000215B;
///The source and destination object must be of the same type.
pub const ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH: DWORD = 0x0000215C;
///SAM initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.
pub const ERROR_SAM_INIT_FAILURE: DWORD = 0x0000215D;
///Schema information could not be included in the replication request.
pub const ERROR_DS_DRA_SCHEMA_INFO_SHIP: DWORD = 0x0000215E;
///The replication operation could not be completed due to a schema incompatibility.
pub const ERROR_DS_DRA_SCHEMA_CONFLICT: DWORD = 0x0000215F;
///The replication operation could not be completed due to a previous schema incompatibility.
pub const ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT: DWORD = 0x00002160;
///The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.
pub const ERROR_DS_DRA_OBJ_NC_MISMATCH: DWORD = 0x00002161;
///The requested domain could not be deleted because there exist domain controllers that still host this domain.
pub const ERROR_DS_NC_STILL_HAS_DSAS: DWORD = 0x00002162;
///The requested operation can be performed only on a GC server.
pub const ERROR_DS_GC_REQUIRED: DWORD = 0x00002163;
///A local group can only be a member of other local groups in the same domain.
pub const ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY: DWORD = 0x00002164;
///Foreign security principals cannot be members of universal groups.
pub const ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS: DWORD = 0x00002165;
///The attribute is not allowed to be replicated to the GC because of security reasons.
pub const ERROR_DS_CANT_ADD_TO_GC: DWORD = 0x00002166;
///The checkpoint with the PDC could not be taken because too many modifications are currently being processed.
pub const ERROR_DS_NO_CHECKPOINT_WITH_PDC: DWORD = 0x00002167;
///The operation requires that source domain auditing be enabled.
pub const ERROR_DS_SOURCE_AUDITING_NOT_ENABLED: DWORD = 0x00002168;
///Security principal objects can only be created inside domain naming contexts.
pub const ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC: DWORD = 0x00002169;
///An SPN could not be constructed because the provided host name is not in the necessary format.
pub const ERROR_DS_INVALID_NAME_FOR_SPN: DWORD = 0x0000216A;
///A filter was passed that uses constructed attributes.
pub const ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS: DWORD = 0x0000216B;
///The unicodePwd attribute value must be enclosed in quotation marks.
pub const ERROR_DS_UNICODEPWD_NOT_IN_QUOTES: DWORD = 0x0000216C;
///Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.
pub const ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: DWORD = 0x0000216D;
///For security reasons, the operation must be run on the destination DC.
pub const ERROR_DS_MUST_BE_RUN_ON_DST_DC: DWORD = 0x0000216E;
///For security reasons, the source DC must be NT4SP4 or greater.
pub const ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER: DWORD = 0x0000216F;
///Critical directory service system objects cannot be deleted during tree deletion operations. The tree deletion might have been partially performed.
pub const ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ: DWORD = 0x00002170;
///Directory Services could not start because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system. You can use the Recovery Console to further diagnose the system.
pub const ERROR_DS_INIT_FAILURE_CONSOLE: DWORD = 0x00002171;
///SAM initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system. You can use the Recovery Console to further diagnose the system.
pub const ERROR_DS_SAM_INIT_FAILURE_CONSOLE: DWORD = 0x00002172;
///The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest.
pub const ERROR_DS_FOREST_VERSION_TOO_HIGH: DWORD = 0x00002173;
///The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.
pub const ERROR_DS_DOMAIN_VERSION_TOO_HIGH: DWORD = 0x00002174;
///The version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest.
pub const ERROR_DS_FOREST_VERSION_TOO_LOW: DWORD = 0x00002175;
///The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.
pub const ERROR_DS_DOMAIN_VERSION_TOO_LOW: DWORD = 0x00002176;
///The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.
pub const ERROR_DS_INCOMPATIBLE_VERSION: DWORD = 0x00002177;
///The functional level of the domain (or forest) cannot be raised to the requested value because one or more domain controllers in the domain (or forest) are at a lower, incompatible functional level.
pub const ERROR_DS_LOW_DSA_VERSION: DWORD = 0x00002178;
///The forest functional level cannot be raised to the requested value because one or more domains are still in mixed-domain mode. All domains in the forest must be in native mode for you to raise the forest functional level.
pub const ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN: DWORD = 0x00002179;
///The sort order requested is not supported.
pub const ERROR_DS_NOT_SUPPORTED_SORT_ORDER: DWORD = 0x0000217A;
///The requested name already exists as a unique identifier.
pub const ERROR_DS_NAME_NOT_UNIQUE: DWORD = 0x0000217B;
///The machine account was created before Windows NT 4.0. The account needs to be re-created.
pub const ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4: DWORD = 0x0000217C;
///The database is out of version store.
pub const ERROR_DS_OUT_OF_VERSION_STORE: DWORD = 0x0000217D;
///Unable to continue operation because multiple conflicting controls were used.
pub const ERROR_DS_INCOMPATIBLE_CONTROLS_USED: DWORD = 0x0000217E;
///Unable to find a valid security descriptor reference domain for this partition.
pub const ERROR_DS_NO_REF_DOMAIN: DWORD = 0x0000217F;
///Schema update failed: The link identifier is reserved.
pub const ERROR_DS_RESERVED_LINK_ID: DWORD = 0x00002180;
///Schema update failed: There are no link identifiers available.
pub const ERROR_DS_LINK_ID_NOT_AVAILABLE: DWORD = 0x00002181;
///An account group cannot have a universal group as a member.
pub const ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER: DWORD = 0x00002182;
///Rename or move operations on naming context heads or read-only objects are not allowed.
pub const ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE: DWORD = 0x00002183;
///Move operations on objects in the schema naming context are not allowed.
pub const ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC: DWORD = 0x00002184;
///A system flag has been set on the object that does not allow the object to be moved or renamed.
pub const ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG: DWORD = 0x00002185;
///This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.
pub const ERROR_DS_MODIFYDN_WRONG_GRANDPARENT: DWORD = 0x00002186;
///Unable to resolve completely; a referral to another forest was generated.
pub const ERROR_DS_NAME_ERROR_TRUST_REFERRAL: DWORD = 0x00002187;
///The requested action is not supported on a standard server.
pub const ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER: DWORD = 0x00002188;
///Could not access a partition of the directory service located on a remote server. Make sure at least one server is running for the partition in question.
pub const ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD: DWORD = 0x00002189;
///The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica, nor can it contact a replica of the naming context above the proposed naming context. Ensure that the parent naming context is properly registered in the DNS, and at least one replica of this naming context is reachable by the domain naming master.
pub const ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2: DWORD = 0x0000218A;
///The thread limit for this request was exceeded.
pub const ERROR_DS_THREAD_LIMIT_EXCEEDED: DWORD = 0x0000218B;
///The GC server is not in the closest site.
pub const ERROR_DS_NOT_CLOSEST: DWORD = 0x0000218C;
///The directory service cannot derive an SPN with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.
pub const ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF: DWORD = 0x0000218D;
///The directory service failed to enter single-user mode.
pub const ERROR_DS_SINGLE_USER_MODE_FAILED: DWORD = 0x0000218E;
///The directory service cannot parse the script because of a syntax error.
pub const ERROR_DS_NTDSCRIPT_SYNTAX_ERROR: DWORD = 0x0000218F;
///The directory service cannot process the script because of an error.
pub const ERROR_DS_NTDSCRIPT_PROCESS_ERROR: DWORD = 0x00002190;
///The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress).
pub const ERROR_DS_DIFFERENT_REPL_EPOCHS: DWORD = 0x00002191;
///The directory service binding must be renegotiated due to a change in the server extensions information.
pub const ERROR_DS_DRS_EXTENSIONS_CHANGED: DWORD = 0x00002192;
///The operation is not allowed on a disabled cross-reference.
pub const ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR: DWORD = 0x00002193;
///Schema update failed: No values for msDS-IntId are available.
pub const ERROR_DS_NO_MSDS_INTID: DWORD = 0x00002194;
///Schema update failed: Duplicate msDS-IntId. Retry the operation.
pub const ERROR_DS_DUP_MSDS_INTID: DWORD = 0x00002195;
///Schema deletion failed: Attribute is used in rDNAttID.
pub const ERROR_DS_EXISTS_IN_RDNATTID: DWORD = 0x00002196;
///The directory service failed to authorize the request.
pub const ERROR_DS_AUTHORIZATION_FAILED: DWORD = 0x00002197;
///The directory service cannot process the script because it is invalid.
pub const ERROR_DS_INVALID_SCRIPT: DWORD = 0x00002198;
///The remote create cross-reference operation failed on the domain naming master FSMO. The operation's error is in the extended data.
pub const ERROR_DS_REMOTE_CROSSREF_OP_FAILED: DWORD = 0x00002199;
///A cross-reference is in use locally with the same name.
pub const ERROR_DS_CROSS_REF_BUSY: DWORD = 0x0000219A;
///The directory service cannot derive an SPN with which to mutually authenticate the target server because the server's domain has been deleted from the forest.
pub const ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN: DWORD = 0x0000219B;
///Writable NCs prevent this DC from demoting.
pub const ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC: DWORD = 0x0000219C;
///The requested object has a nonunique identifier and cannot be retrieved.
pub const ERROR_DS_DUPLICATE_ID_FOUND: DWORD = 0x0000219D;
///Insufficient attributes were given to create an object. This object might not exist because it might have been deleted and the garbage already collected.
pub const ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT: DWORD = 0x0000219E;
///The group cannot be converted due to attribute restrictions on the requested group type.
pub const ERROR_DS_GROUP_CONVERSION_ERROR: DWORD = 0x0000219F;
///Cross-domain moves of nonempty basic application groups is not allowed.
pub const ERROR_DS_CANT_MOVE_APP_BASIC_GROUP: DWORD = 0x000021A0;
///Cross-domain moves of nonempty query-based application groups is not allowed.
pub const ERROR_DS_CANT_MOVE_APP_QUERY_GROUP: DWORD = 0x000021A1;
///The FSMO role ownership could not be verified because its directory partition did not replicate successfully with at least one replication partner.
pub const ERROR_DS_ROLE_NOT_VERIFIED: DWORD = 0x000021A2;
///The target container for a redirection of a well-known object container cannot already be a special container.
pub const ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL: DWORD = 0x000021A3;
///The directory service cannot perform the requested operation because a domain rename operation is in progress.
pub const ERROR_DS_DOMAIN_RENAME_IN_PROGRESS: DWORD = 0x000021A4;
///The directory service detected a child partition below the requested partition name. The partition hierarchy must be created in a top down method.
pub const ERROR_DS_EXISTING_AD_CHILD_NC: DWORD = 0x000021A5;
///The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.
pub const ERROR_DS_REPL_LIFETIME_EXCEEDED: DWORD = 0x000021A6;
///The requested operation is not allowed on an object under the system container.
pub const ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER: DWORD = 0x000021A7;
///The LDAP server's network send queue has filled up because the client is not processing the results of its requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected.
pub const ERROR_DS_LDAP_SEND_QUEUE_FULL: DWORD = 0x000021A8;
///The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency.
pub const ERROR_DS_DRA_OUT_SCHEDULE_WINDOW: DWORD = 0x000021A9;
///At this time, it cannot be determined if the branch replication policy is available on the hub domain controller. Retry at a later time to account for replication latencies.
pub const ERROR_DS_POLICY_NOT_KNOWN: DWORD = 0x000021AA;
///The site settings object for the specified site does not exist.
pub const ERROR_NO_SITE_SETTINGS_OBJECT: DWORD = 0x000021AB;
///The local account store does not contain secret material for the specified account.
pub const ERROR_NO_SECRETS: DWORD = 0x000021AC;
///Could not find a writable domain controller in the domain.
pub const ERROR_NO_WRITABLE_DC_FOUND: DWORD = 0x000021AD;
///The server object for the domain controller does not exist.
pub const ERROR_DS_NO_SERVER_OBJECT: DWORD = 0x000021AE;
///The NTDS Settings object for the domain controller does not exist.
pub const ERROR_DS_NO_NTDSA_OBJECT: DWORD = 0x000021AF;
///The requested search operation is not supported for attribute scoped query (ASQ) searches.
pub const ERROR_DS_NON_ASQ_SEARCH: DWORD = 0x000021B0;
///A required audit event could not be generated for the operation.
pub const ERROR_DS_AUDIT_FAILURE: DWORD = 0x000021B1;
///The search flags for the attribute are invalid. The subtree index bit is valid only on single-valued attributes.
pub const ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE: DWORD = 0x000021B2;
///The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings.
pub const ERROR_DS_INVALID_SEARCH_FLAG_TUPLE: DWORD = 0x000021B3;
///The replication operation failed because the target object referenced by a link value is recycled.
pub const ERROR_DS_DRA_RECYCLED_TARGET: DWORD = 0x000021BF;
///The functional level of the domain (or forest) cannot be lowered to the requested value.
pub const ERROR_DS_HIGH_DSA_VERSION: DWORD = 0x000021C2;
///The operation failed because the SPN value provided for addition/modification is not unique forest-wide.
pub const ERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST: DWORD = 0x000021C7;
///The operation failed because the UPN value provided for addition/modification is not unique forest-wide.
pub const ERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST: DWORD = 0x000021C8;
///DNS server unable to interpret format.
pub const DNS_ERROR_RCODE_FORMAT_ERROR: DWORD = 0x00002329;
///DNS server failure.
pub const DNS_ERROR_RCODE_SERVER_FAILURE: DWORD = 0x0000232A;
///DNS name does not exist.
pub const DNS_ERROR_RCODE_NAME_ERROR: DWORD = 0x0000232B;
///DNS request not supported by name server.
pub const DNS_ERROR_RCODE_NOT_IMPLEMENTED: DWORD = 0x0000232C;
///DNS operation refused.
pub const DNS_ERROR_RCODE_REFUSED: DWORD = 0x0000232D;
///DNS name that should not exist, does exist.
pub const DNS_ERROR_RCODE_YXDOMAIN: DWORD = 0x0000232E;
///DNS resource record (RR) set that should not exist, does exist.
pub const DNS_ERROR_RCODE_YXRRSET: DWORD = 0x0000232F;
///DNS RR set that should to exist, does not exist.
pub const DNS_ERROR_RCODE_NXRRSET: DWORD = 0x00002330;
///DNS server not authoritative for zone.
pub const DNS_ERROR_RCODE_NOTAUTH: DWORD = 0x00002331;
///DNS name in update or prereq is not in zone.
pub const DNS_ERROR_RCODE_NOTZONE: DWORD = 0x00002332;
///DNS signature failed to verify.
pub const DNS_ERROR_RCODE_BADSIG: DWORD = 0x00002338;
///DNS bad key.
pub const DNS_ERROR_RCODE_BADKEY: DWORD = 0x00002339;
///DNS signature validity expired.
pub const DNS_ERROR_RCODE_BADTIME: DWORD = 0x0000233A;
///No records found for given DNS query.
pub const DNS_INFO_NO_RECORDS: DWORD = 0x0000251D;
///Bad DNS packet.
pub const DNS_ERROR_BAD_PACKET: DWORD = 0x0000251E;
///No DNS packet.
pub const DNS_ERROR_NO_PACKET: DWORD = 0x0000251F;
///DNS error, check rcode.
pub const DNS_ERROR_RCODE: DWORD = 0x00002520;
///Unsecured DNS packet.
pub const DNS_ERROR_UNSECURE_PACKET: DWORD = 0x00002521;
///Invalid DNS type.
pub const DNS_ERROR_INVALID_TYPE: DWORD = 0x0000254F;
///Invalid IP address.
pub const DNS_ERROR_INVALID_IP_ADDRESS: DWORD = 0x00002550;
///Invalid property.
pub const DNS_ERROR_INVALID_PROPERTY: DWORD = 0x00002551;
///Try DNS operation again later.
pub const DNS_ERROR_TRY_AGAIN_LATER: DWORD = 0x00002552;
///Record for given name and type is not unique.
pub const DNS_ERROR_NOT_UNIQUE: DWORD = 0x00002553;
///DNS name does not comply with RFC specifications.
pub const DNS_ERROR_NON_RFC_NAME: DWORD = 0x00002554;
///DNS name is a fully qualified DNS name.
pub const DNS_STATUS_FQDN: DWORD = 0x00002555;
///DNS name is dotted (multilabel).
pub const DNS_STATUS_DOTTED_NAME: DWORD = 0x00002556;
///DNS name is a single-part name.
pub const DNS_STATUS_SINGLE_PART_NAME: DWORD = 0x00002557;
///DNS name contains an invalid character.
pub const DNS_ERROR_INVALID_NAME_CHAR: DWORD = 0x00002558;
///DNS name is entirely numeric.
pub const DNS_ERROR_NUMERIC_NAME: DWORD = 0x00002559;
///The operation requested is not permitted on a DNS root server.
pub const DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER: DWORD = 0x0000255A;
///The record could not be created because this part of the DNS namespace has been delegated to another server.
pub const DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION: DWORD = 0x0000255B;
///The DNS server could not find a set of root hints.
pub const DNS_ERROR_CANNOT_FIND_ROOT_HINTS: DWORD = 0x0000255C;
///The DNS server found root hints but they were not consistent across all adapters.
pub const DNS_ERROR_INCONSISTENT_ROOT_HINTS: DWORD = 0x0000255D;
///The specified value is too small for this parameter.
pub const DNS_ERROR_DWORD_VALUE_TOO_SMALL: DWORD = 0x0000255E;
///The specified value is too large for this parameter.
pub const DNS_ERROR_DWORD_VALUE_TOO_LARGE: DWORD = 0x0000255F;
///This operation is not allowed while the DNS server is loading zones in the background. Try again later.
pub const DNS_ERROR_BACKGROUND_LOADING: DWORD = 0x00002560;
///The operation requested is not permitted on against a DNS server running on a read-only DC.
pub const DNS_ERROR_NOT_ALLOWED_ON_RODC: DWORD = 0x00002561;
///DNS zone does not exist.
pub const DNS_ERROR_ZONE_DOES_NOT_EXIST: DWORD = 0x00002581;
///DNS zone information not available.
pub const DNS_ERROR_NO_ZONE_INFO: DWORD = 0x00002582;
///Invalid operation for DNS zone.
pub const DNS_ERROR_INVALID_ZONE_OPERATION: DWORD = 0x00002583;
///Invalid DNS zone configuration.
pub const DNS_ERROR_ZONE_CONFIGURATION_ERROR: DWORD = 0x00002584;
///DNS zone has no start of authority (SOA) record.
pub const DNS_ERROR_ZONE_HAS_NO_SOA_RECORD: DWORD = 0x00002585;
///DNS zone has no Name Server (NS) record.
pub const DNS_ERROR_ZONE_HAS_NO_NS_RECORDS: DWORD = 0x00002586;
///DNS zone is locked.
pub const DNS_ERROR_ZONE_LOCKED: DWORD = 0x00002587;
///DNS zone creation failed.
pub const DNS_ERROR_ZONE_CREATION_FAILED: DWORD = 0x00002588;
///DNS zone already exists.
pub const DNS_ERROR_ZONE_ALREADY_EXISTS: DWORD = 0x00002589;
///DNS automatic zone already exists.
pub const DNS_ERROR_AUTOZONE_ALREADY_EXISTS: DWORD = 0x0000258A;
///Invalid DNS zone type.
pub const DNS_ERROR_INVALID_ZONE_TYPE: DWORD = 0x0000258B;
///Secondary DNS zone requires master IP address.
pub const DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP: DWORD = 0x0000258C;
///DNS zone not secondary.
pub const DNS_ERROR_ZONE_NOT_SECONDARY: DWORD = 0x0000258D;
///Need secondary IP address.
pub const DNS_ERROR_NEED_SECONDARY_ADDRESSES: DWORD = 0x0000258E;
///WINS initialization failed.
pub const DNS_ERROR_WINS_INIT_FAILED: DWORD = 0x0000258F;
///Need WINS servers.
pub const DNS_ERROR_NEED_WINS_SERVERS: DWORD = 0x00002590;
///NBTSTAT initialization call failed.
pub const DNS_ERROR_NBSTAT_INIT_FAILED: DWORD = 0x00002591;
///Invalid delete of SOA.
pub const DNS_ERROR_SOA_DELETE_INVALID: DWORD = 0x00002592;
///A conditional forwarding zone already exists for that name.
pub const DNS_ERROR_FORWARDER_ALREADY_EXISTS: DWORD = 0x00002593;
///This zone must be configured with one or more master DNS server IP addresses.
pub const DNS_ERROR_ZONE_REQUIRES_MASTER_IP: DWORD = 0x00002594;
///The operation cannot be performed because this zone is shut down.
pub const DNS_ERROR_ZONE_IS_SHUTDOWN: DWORD = 0x00002595;
///The primary DNS zone requires a data file.
pub const DNS_ERROR_PRIMARY_REQUIRES_DATAFILE: DWORD = 0x000025B3;
///Invalid data file name for the DNS zone.
pub const DNS_ERROR_INVALID_DATAFILE_NAME: DWORD = 0x000025B4;
///Failed to open the data file for the DNS zone.
pub const DNS_ERROR_DATAFILE_OPEN_FAILURE: DWORD = 0x000025B5;
///Failed to write the data file for the DNS zone.
pub const DNS_ERROR_FILE_WRITEBACK_FAILED: DWORD = 0x000025B6;
///Failure while reading datafile for DNS zone.
pub const DNS_ERROR_DATAFILE_PARSING: DWORD = 0x000025B7;
///DNS record does not exist.
pub const DNS_ERROR_RECORD_DOES_NOT_EXIST: DWORD = 0x000025E5;
///DNS record format error.
pub const DNS_ERROR_RECORD_FORMAT: DWORD = 0x000025E6;
///Node creation failure in DNS.
pub const DNS_ERROR_NODE_CREATION_FAILED: DWORD = 0x000025E7;
///Unknown DNS record type.
pub const DNS_ERROR_UNKNOWN_RECORD_TYPE: DWORD = 0x000025E8;
///DNS record timed out.
pub const DNS_ERROR_RECORD_TIMED_OUT: DWORD = 0x000025E9;
///Name not in DNS zone.
pub const DNS_ERROR_NAME_NOT_IN_ZONE: DWORD = 0x000025EA;
///CNAME loop detected.
pub const DNS_ERROR_CNAME_LOOP: DWORD = 0x000025EB;
///Node is a CNAME DNS record.
pub const DNS_ERROR_NODE_IS_CNAME: DWORD = 0x000025EC;
///A CNAME record already exists for the given name.
pub const DNS_ERROR_CNAME_COLLISION: DWORD = 0x000025ED;
///Record is only at DNS zone root.
pub const DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT: DWORD = 0x000025EE;
///DNS record already exists.
pub const DNS_ERROR_RECORD_ALREADY_EXISTS: DWORD = 0x000025EF;
///Secondary DNS zone data error.
pub const DNS_ERROR_SECONDARY_DATA: DWORD = 0x000025F0;
///Could not create DNS cache data.
pub const DNS_ERROR_NO_CREATE_CACHE_DATA: DWORD = 0x000025F1;
///DNS name does not exist.
pub const DNS_ERROR_NAME_DOES_NOT_EXIST: DWORD = 0x000025F2;
///Could not create pointer (PTR) record.
pub const DNS_WARNING_PTR_CREATE_FAILED: DWORD = 0x000025F3;
///DNS domain was undeleted.
pub const DNS_WARNING_DOMAIN_UNDELETED: DWORD = 0x000025F4;
///The directory service is unavailable.
pub const DNS_ERROR_DS_UNAVAILABLE: DWORD = 0x000025F5;
///DNS zone already exists in the directory service.
pub const DNS_ERROR_DS_ZONE_ALREADY_EXISTS: DWORD = 0x000025F6;
///DNS server not creating or reading the boot file for the directory service integrated DNS zone.
pub const DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE: DWORD = 0x000025F7;
///DNS AXFR (zone transfer) complete.
pub const DNS_INFO_AXFR_COMPLETE: DWORD = 0x00002617;
///DNS zone transfer failed.
pub const DNS_ERROR_AXFR: DWORD = 0x00002618;
///Added local WINS server.
pub const DNS_INFO_ADDED_LOCAL_WINS: DWORD = 0x00002619;
///Secure update call needs to continue update request.
pub const DNS_STATUS_CONTINUE_NEEDED: DWORD = 0x00002649;
///TCP/IP network protocol not installed.
pub const DNS_ERROR_NO_TCPIP: DWORD = 0x0000267B;
///No DNS servers configured for local system.
pub const DNS_ERROR_NO_DNS_SERVERS: DWORD = 0x0000267C;
///The specified directory partition does not exist.
pub const DNS_ERROR_DP_DOES_NOT_EXIST: DWORD = 0x000026AD;
///The specified directory partition already exists.
pub const DNS_ERROR_DP_ALREADY_EXISTS: DWORD = 0x000026AE;
///This DNS server is not enlisted in the specified directory partition.
pub const DNS_ERROR_DP_NOT_ENLISTED: DWORD = 0x000026AF;
///This DNS server is already enlisted in the specified directory partition.
pub const DNS_ERROR_DP_ALREADY_ENLISTED: DWORD = 0x000026B0;
///The directory partition is not available at this time. Wait a few minutes and try again.
pub const DNS_ERROR_DP_NOT_AVAILABLE: DWORD = 0x000026B1;
///The application directory partition operation failed. The domain controller holding the domain naming master role is down or unable to service the request or is not running Windows Server 2003.
pub const DNS_ERROR_DP_FSMO_ERROR: DWORD = 0x000026B2;
///A blocking operation was interrupted by a call to WSACancelBlockingCall.
pub const WSAEINTR: DWORD = 0x00002714;
///The file handle supplied is not valid.
pub const WSAEBADF: DWORD = 0x00002719;
///An attempt was made to access a socket in a way forbidden by its access permissions.
pub const WSAEACCES: DWORD = 0x0000271D;
///The system detected an invalid pointer address in attempting to use a pointer argument in a call.
pub const WSAEFAULT: DWORD = 0x0000271E;
///An invalid argument was supplied.
pub const WSAEINVAL: DWORD = 0x00002726;
///Too many open sockets.
pub const WSAEMFILE: DWORD = 0x00002728;
///A nonblocking socket operation could not be completed immediately.
pub const WSAEWOULDBLOCK: DWORD = 0x00002733;
///A blocking operation is currently executing.
pub const WSAEINPROGRESS: DWORD = 0x00002734;
///An operation was attempted on a nonblocking socket that already had an operation in progress.
pub const WSAEALREADY: DWORD = 0x00002735;
///An operation was attempted on something that is not a socket.
pub const WSAENOTSOCK: DWORD = 0x00002736;
///A required address was omitted from an operation on a socket.
pub const WSAEDESTADDRREQ: DWORD = 0x00002737;
///A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.
pub const WSAEMSGSIZE: DWORD = 0x00002738;
///A protocol was specified in the socket function call that does not support the semantics of the socket type requested.
pub const WSAEPROTOTYPE: DWORD = 0x00002739;
///An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.
pub const WSAENOPROTOOPT: DWORD = 0x0000273A;
///The requested protocol has not been configured into the system, or no implementation for it exists.
pub const WSAEPROTONOSUPPORT: DWORD = 0x0000273B;
///The support for the specified socket type does not exist in this address family.
pub const WSAESOCKTNOSUPPORT: DWORD = 0x0000273C;
///The attempted operation is not supported for the type of object referenced.
pub const WSAEOPNOTSUPP: DWORD = 0x0000273D;
///The protocol family has not been configured into the system or no implementation for it exists.
pub const WSAEPFNOSUPPORT: DWORD = 0x0000273E;
///An address incompatible with the requested protocol was used.
pub const WSAEAFNOSUPPORT: DWORD = 0x0000273F;
///Only one usage of each socket address (protocol/network address/port) is normally permitted.
pub const WSAEADDRINUSE: DWORD = 0x00002740;
///The requested address is not valid in its context.
pub const WSAEADDRNOTAVAIL: DWORD = 0x00002741;
///A socket operation encountered a dead network.
pub const WSAENETDOWN: DWORD = 0x00002742;
///A socket operation was attempted to an unreachable network.
pub const WSAENETUNREACH: DWORD = 0x00002743;
///The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.
pub const WSAENETRESET: DWORD = 0x00002744;
///An established connection was aborted by the software in your host machine.
pub const WSAECONNABORTED: DWORD = 0x00002745;
///An existing connection was forcibly closed by the remote host.
pub const WSAECONNRESET: DWORD = 0x00002746;
///An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
pub const WSAENOBUFS: DWORD = 0x00002747;
///A connect request was made on an already connected socket.
pub const WSAEISCONN: DWORD = 0x00002748;
///A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.
pub const WSAENOTCONN: DWORD = 0x00002749;
///A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.
pub const WSAESHUTDOWN: DWORD = 0x0000274A;
///Too many references to a kernel object.
pub const WSAETOOMANYREFS: DWORD = 0x0000274B;
///A connection attempt failed because the connected party did not properly respond after a period of time, or the established connection failed because the connected host failed to respond.
pub const WSAETIMEDOUT: DWORD = 0x0000274C;
///No connection could be made because the target machine actively refused it.
pub const WSAECONNREFUSED: DWORD = 0x0000274D;
///Cannot translate name.
pub const WSAELOOP: DWORD = 0x0000274E;
///Name or name component was too long.
pub const WSAENAMETOOLONG: DWORD = 0x0000274F;
///A socket operation failed because the destination host was down.
pub const WSAEHOSTDOWN: DWORD = 0x00002750;
///A socket operation was attempted to an unreachable host.
pub const WSAEHOSTUNREACH: DWORD = 0x00002751;
///Cannot remove a directory that is not empty.
pub const WSAENOTEMPTY: DWORD = 0x00002752;
///A Windows Sockets implementation might have a limit on the number of applications that can use it simultaneously.
pub const WSAEPROCLIM: DWORD = 0x00002753;
///Ran out of quota.
pub const WSAEUSERS: DWORD = 0x00002754;
///Ran out of disk quota.
pub const WSAEDQUOT: DWORD = 0x00002755;
///File handle reference is no longer available.
pub const WSAESTALE: DWORD = 0x00002756;
///Item is not available locally.
pub const WSAEREMOTE: DWORD = 0x00002757;
///WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.
pub const WSASYSNOTREADY: DWORD = 0x0000276B;
///The Windows Sockets version requested is not supported.
pub const WSAVERNOTSUPPORTED: DWORD = 0x0000276C;
///Either the application has not called WSAStartup, or WSAStartup failed.
pub const WSANOTINITIALISED: DWORD = 0x0000276D;
///Returned by WSARecv or WSARecvFrom to indicate that the remote party has initiated a graceful shutdown sequence.
pub const WSAEDISCON: DWORD = 0x00002775;
///No more results can be returned by WSALookupServiceNext.
pub const WSAENOMORE: DWORD = 0x00002776;
///A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
pub const WSAECANCELLED: DWORD = 0x00002777;
///The procedure call table is invalid.
pub const WSAEINVALIDPROCTABLE: DWORD = 0x00002778;
///The requested service provider is invalid.
pub const WSAEINVALIDPROVIDER: DWORD = 0x00002779;
///The requested service provider could not be loaded or initialized.
pub const WSAEPROVIDERFAILEDINIT: DWORD = 0x0000277A;
///A system call that should never fail has failed.
pub const WSASYSCALLFAILURE: DWORD = 0x0000277B;
///No such service is known. The service cannot be found in the specified namespace.
pub const WSASERVICE_NOT_FOUND: DWORD = 0x0000277C;
///The specified class was not found.
pub const WSATYPE_NOT_FOUND: DWORD = 0x0000277D;
///No more results can be returned by WSALookupServiceNext.
pub const WSA_E_NO_MORE: DWORD = 0x0000277E;
///A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
pub const WSA_E_CANCELLED: DWORD = 0x0000277F;
///A database query failed because it was actively refused.
pub const WSAEREFUSED: DWORD = 0x00002780;
///No such host is known.
pub const WSAHOST_NOT_FOUND: DWORD = 0x00002AF9;
///This is usually a temporary error during host name resolution and means that the local server did not receive a response from an authoritative server.
pub const WSATRY_AGAIN: DWORD = 0x00002AFA;
///A nonrecoverable error occurred during a database lookup.
pub const WSANO_RECOVERY: DWORD = 0x00002AFB;
///The requested name is valid, but no data of the requested type was found.
pub const WSANO_DATA: DWORD = 0x00002AFC;
///At least one reserve has arrived.
pub const WSA_QOS_RECEIVERS: DWORD = 0x00002AFD;
///At least one path has arrived.
pub const WSA_QOS_SENDERS: DWORD = 0x00002AFE;
///There are no senders.
pub const WSA_QOS_NO_SENDERS: DWORD = 0x00002AFF;
///There are no receivers.
pub const WSA_QOS_NO_RECEIVERS: DWORD = 0x00002B00;
///Reserve has been confirmed.
pub const WSA_QOS_REQUEST_CONFIRMED: DWORD = 0x00002B01;
///Error due to lack of resources.
pub const WSA_QOS_ADMISSION_FAILURE: DWORD = 0x00002B02;
///Rejected for administrative reasons—bad credentials.
pub const WSA_QOS_POLICY_FAILURE: DWORD = 0x00002B03;
///Unknown or conflicting style.
pub const WSA_QOS_BAD_STYLE: DWORD = 0x00002B04;
///There is a problem with some part of the filterspec or provider-specific buffer in general.
pub const WSA_QOS_BAD_OBJECT: DWORD = 0x00002B05;
///There is a problem with some part of the flowspec.
pub const WSA_QOS_TRAFFIC_CTRL_ERROR: DWORD = 0x00002B06;
///General quality of serve (QOS) error.
pub const WSA_QOS_GENERIC_ERROR: DWORD = 0x00002B07;
///An invalid or unrecognized service type was found in the flowspec.
pub const WSA_QOS_ESERVICETYPE: DWORD = 0x00002B08;
///An invalid or inconsistent flowspec was found in the QOS structure.
pub const WSA_QOS_EFLOWSPEC: DWORD = 0x00002B09;
///Invalid QOS provider-specific buffer.
pub const WSA_QOS_EPROVSPECBUF: DWORD = 0x00002B0A;
///An invalid QOS filter style was used.
pub const WSA_QOS_EFILTERSTYLE: DWORD = 0x00002B0B;
///An invalid QOS filter type was used.
pub const WSA_QOS_EFILTERTYPE: DWORD = 0x00002B0C;
///An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.
pub const WSA_QOS_EFILTERCOUNT: DWORD = 0x00002B0D;
///An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.
pub const WSA_QOS_EOBJLENGTH: DWORD = 0x00002B0E;
///An incorrect number of flow descriptors was specified in the QOS structure.
pub const WSA_QOS_EFLOWCOUNT: DWORD = 0x00002B0F;
///An unrecognized object was found in the QOS provider-specific buffer.
pub const WSA_QOS_EUNKOWNPSOBJ: DWORD = 0x00002B10;
///An invalid policy object was found in the QOS provider-specific buffer.
pub const WSA_QOS_EPOLICYOBJ: DWORD = 0x00002B11;
///An invalid QOS flow descriptor was found in the flow descriptor list.
pub const WSA_QOS_EFLOWDESC: DWORD = 0x00002B12;
///An invalid or inconsistent flowspec was found in the QOS provider-specific buffer.
pub const WSA_QOS_EPSFLOWSPEC: DWORD = 0x00002B13;
///An invalid FILTERSPEC was found in the QOS provider-specific buffer.
pub const WSA_QOS_EPSFILTERSPEC: DWORD = 0x00002B14;
///An invalid shape discard mode object was found in the QOS provider-specific buffer.
pub const WSA_QOS_ESDMODEOBJ: DWORD = 0x00002B15;
///An invalid shaping rate object was found in the QOS provider-specific buffer.
pub const WSA_QOS_ESHAPERATEOBJ: DWORD = 0x00002B16;
///A reserved policy element was found in the QOS provider-specific buffer.
pub const WSA_QOS_RESERVED_PETYPE: DWORD = 0x00002B17;
///The specified quick mode policy already exists.
pub const ERROR_IPSEC_QM_POLICY_EXISTS: DWORD = 0x000032C8;
///The specified quick mode policy was not found.
pub const ERROR_IPSEC_QM_POLICY_NOT_FOUND: DWORD = 0x000032C9;
///The specified quick mode policy is being used.
pub const ERROR_IPSEC_QM_POLICY_IN_USE: DWORD = 0x000032CA;
///The specified main mode policy already exists.
pub const ERROR_IPSEC_MM_POLICY_EXISTS: DWORD = 0x000032CB;
///The specified main mode policy was not found.
pub const ERROR_IPSEC_MM_POLICY_NOT_FOUND: DWORD = 0x000032CC;
///The specified main mode policy is being used.
pub const ERROR_IPSEC_MM_POLICY_IN_USE: DWORD = 0x000032CD;
///The specified main mode filter already exists.
pub const ERROR_IPSEC_MM_FILTER_EXISTS: DWORD = 0x000032CE;
///The specified main mode filter was not found.
pub const ERROR_IPSEC_MM_FILTER_NOT_FOUND: DWORD = 0x000032CF;
///The specified transport mode filter already exists.
pub const ERROR_IPSEC_TRANSPORT_FILTER_EXISTS: DWORD = 0x000032D0;
///The specified transport mode filter does not exist.
pub const ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND: DWORD = 0x000032D1;
///The specified main mode authentication list exists.
pub const ERROR_IPSEC_MM_AUTH_EXISTS: DWORD = 0x000032D2;
///The specified main mode authentication list was not found.
pub const ERROR_IPSEC_MM_AUTH_NOT_FOUND: DWORD = 0x000032D3;
///The specified main mode authentication list is being used.
pub const ERROR_IPSEC_MM_AUTH_IN_USE: DWORD = 0x000032D4;
///The specified default main mode policy was not found.
pub const ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND: DWORD = 0x000032D5;
///The specified default main mode authentication list was not found.
pub const ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND: DWORD = 0x000032D6;
///The specified default quick mode policy was not found.
pub const ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND: DWORD = 0x000032D7;
///The specified tunnel mode filter exists.
pub const ERROR_IPSEC_TUNNEL_FILTER_EXISTS: DWORD = 0x000032D8;
///The specified tunnel mode filter was not found.
pub const ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND: DWORD = 0x000032D9;
///The main mode filter is pending deletion.
pub const ERROR_IPSEC_MM_FILTER_PENDING_DELETION: DWORD = 0x000032DA;
///The transport filter is pending deletion.
pub const ERROR_IPSEC_TRANSPORT_FILTER_ENDING_DELETION: DWORD = 0x000032DB;
///The tunnel filter is pending deletion.
pub const ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION: DWORD = 0x000032DC;
///The main mode policy is pending deletion.
pub const ERROR_IPSEC_MM_POLICY_PENDING_ELETION: DWORD = 0x000032DD;
///The main mode authentication bundle is pending deletion.
pub const ERROR_IPSEC_MM_AUTH_PENDING_DELETION: DWORD = 0x000032DE;
///The quick mode policy is pending deletion.
pub const ERROR_IPSEC_QM_POLICY_PENDING_DELETION: DWORD = 0x000032DF;
///The main mode policy was successfully added, but some of the requested offers are not supported.
pub const WARNING_IPSEC_MM_POLICY_PRUNED: DWORD = 0x000032E0;
///The quick mode policy was successfully added, but some of the requested offers are not supported.
pub const WARNING_IPSEC_QM_POLICY_PRUNED: DWORD = 0x000032E1;
///Starts the list of frequencies of various IKE Win32 error codes encountered during negotiations.
pub const ERROR_IPSEC_IKE_NEG_STATUS_BEGIN: DWORD = 0x000035E8;
///The IKE authentication credentials are unacceptable.
pub const ERROR_IPSEC_IKE_AUTH_FAIL: DWORD = 0x000035E9;
///The IKE security attributes are unacceptable.
pub const ERROR_IPSEC_IKE_ATTRIB_FAIL: DWORD = 0x000035EA;
///The IKE negotiation is in progress.
pub const ERROR_IPSEC_IKE_NEGOTIATION_PENDING: DWORD = 0x000035EB;
///General processing error.
pub const ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR: DWORD = 0x000035EC;
///Negotiation timed out.
pub const ERROR_IPSEC_IKE_TIMED_OUT: DWORD = 0x000035ED;
///The IKE failed to find a valid machine certificate. Contact your network security administrator about installing a valid certificate in the appropriate certificate store.
pub const ERROR_IPSEC_IKE_NO_CERT: DWORD = 0x000035EE;
///The IKE security association (SA) was deleted by a peer before it was completely established.
pub const ERROR_IPSEC_IKE_SA_DELETED: DWORD = 0x000035EF;
///The IKE SA was deleted before it was completely established.
pub const ERROR_IPSEC_IKE_SA_REAPED: DWORD = 0x000035F0;
///The negotiation request sat in the queue too long.
pub const ERROR_IPSEC_IKE_MM_ACQUIRE_DROP: DWORD = 0x000035F1;
///The negotiation request sat in the queue too long.
pub const ERROR_IPSEC_IKE_QM_ACQUIRE_DROP: DWORD = 0x000035F2;
///The negotiation request sat in the queue too long.
pub const ERROR_IPSEC_IKE_QUEUE_DROP_MM: DWORD = 0x000035F3;
///The negotiation request sat in the queue too long.
pub const ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM: DWORD = 0x000035F4;
///There was no response from a peer.
pub const ERROR_IPSEC_IKE_DROP_NO_RESPONSE: DWORD = 0x000035F5;
///The negotiation took too long.
pub const ERROR_IPSEC_IKE_MM_DELAY_DROP: DWORD = 0x000035F6;
///The negotiation took too long.
pub const ERROR_IPSEC_IKE_QM_DELAY_DROP: DWORD = 0x000035F7;
///An unknown error occurred.
pub const ERROR_IPSEC_IKE_ERROR: DWORD = 0x000035F8;
///The certificate revocation check failed.
pub const ERROR_IPSEC_IKE_CRL_FAILED: DWORD = 0x000035F9;
///Invalid certificate key usage.
pub const ERROR_IPSEC_IKE_INVALID_KEY_USAGE: DWORD = 0x000035FA;
///Invalid certificate type.
pub const ERROR_IPSEC_IKE_INVALID_CERT_TYPE: DWORD = 0x000035FB;
///The IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your network security administrator about a certificate that has a private key.
pub const ERROR_IPSEC_IKE_NO_PRIVATE_KEY: DWORD = 0x000035FC;
///There was a failure in the Diffie-Hellman computation.
pub const ERROR_IPSEC_IKE_DH_FAIL: DWORD = 0x000035FE;
///Invalid header.
pub const ERROR_IPSEC_IKE_INVALID_HEADER: DWORD = 0x00003600;
///No policy configured.
pub const ERROR_IPSEC_IKE_NO_POLICY: DWORD = 0x00003601;
///Failed to verify signature.
pub const ERROR_IPSEC_IKE_INVALID_SIGNATURE: DWORD = 0x00003602;
///Failed to authenticate using Kerberos.
pub const ERROR_IPSEC_IKE_KERBEROS_ERROR: DWORD = 0x00003603;
///The peer's certificate did not have a public key.
pub const ERROR_IPSEC_IKE_NO_PUBLIC_KEY: DWORD = 0x00003604;
///Error processing the error payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR: DWORD = 0x00003605;
///Error processing the SA payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_SA: DWORD = 0x00003606;
///Error processing the proposal payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_PROP: DWORD = 0x00003607;
///Error processing the transform payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_TRANS: DWORD = 0x00003608;
///Error processing the key exchange payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_KE: DWORD = 0x00003609;
///Error processing the ID payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_ID: DWORD = 0x0000360A;
///Error processing the certification payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_CERT: DWORD = 0x0000360B;
///Error processing the certificate request payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ: DWORD = 0x0000360C;
///Error processing the hash payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_HASH: DWORD = 0x0000360D;
///Error processing the signature payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_SIG: DWORD = 0x0000360E;
///Error processing the nonce payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_NONCE: DWORD = 0x0000360F;
///Error processing the notify payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY: DWORD = 0x00003610;
///Error processing the delete payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_DELETE: DWORD = 0x00003611;
///Error processing the VendorId payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR: DWORD = 0x00003612;
///Invalid payload received.
pub const ERROR_IPSEC_IKE_INVALID_PAYLOAD: DWORD = 0x00003613;
///Soft SA loaded.
pub const ERROR_IPSEC_IKE_LOAD_SOFT_SA: DWORD = 0x00003614;
///Soft SA torn down.
pub const ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN: DWORD = 0x00003615;
///Invalid cookie received.
pub const ERROR_IPSEC_IKE_INVALID_COOKIE: DWORD = 0x00003616;
///Peer failed to send valid machine certificate.
pub const ERROR_IPSEC_IKE_NO_PEER_CERT: DWORD = 0x00003617;
///Certification revocation check of peer's certificate failed.
pub const ERROR_IPSEC_IKE_PEER_CRL_FAILED: DWORD = 0x00003618;
///New policy invalidated SAs formed with the old policy.
pub const ERROR_IPSEC_IKE_POLICY_CHANGE: DWORD = 0x00003619;
///There is no available main mode IKE policy.
pub const ERROR_IPSEC_IKE_NO_MM_POLICY: DWORD = 0x0000361A;
///Failed to enabled trusted computer base (TCB) privilege.
pub const ERROR_IPSEC_IKE_NOTCBPRIV: DWORD = 0x0000361B;
///Failed to load SECURITY.DLL.
pub const ERROR_IPSEC_IKE_SECLOADFAIL: DWORD = 0x0000361C;
///Failed to obtain the security function table dispatch address from the SSPI.
pub const ERROR_IPSEC_IKE_FAILSSPINIT: DWORD = 0x0000361D;
///Failed to query the Kerberos package to obtain the max token size.
pub const ERROR_IPSEC_IKE_FAILQUERYSSP: DWORD = 0x0000361E;
///Failed to obtain the Kerberos server credentials for the Internet Security Association and Key Management Protocol (ISAKMP)/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup.
pub const ERROR_IPSEC_IKE_SRVACQFAIL: DWORD = 0x0000361F;
///Failed to determine the SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).
pub const ERROR_IPSEC_IKE_SRVQUERYCRED: DWORD = 0x00003620;
///Failed to obtain a new service provider interface (SPI) for the inbound SA from the IPsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters.
pub const ERROR_IPSEC_IKE_GETSPIFAIL: DWORD = 0x00003621;
///Given filter is invalid.
pub const ERROR_IPSEC_IKE_INVALID_FILTER: DWORD = 0x00003622;
///Memory allocation failed.
pub const ERROR_IPSEC_IKE_OUT_OF_MEMORY: DWORD = 0x00003623;
///Failed to add an SA to the IPSec driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine.
pub const ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED: DWORD = 0x00003624;
///Invalid policy.
pub const ERROR_IPSEC_IKE_INVALID_POLICY: DWORD = 0x00003625;
///Invalid digital object identifier (DOI).
pub const ERROR_IPSEC_IKE_UNKNOWN_DOI: DWORD = 0x00003626;
///Invalid situation.
pub const ERROR_IPSEC_IKE_INVALID_SITUATION: DWORD = 0x00003627;
///Diffie-Hellman failure.
pub const ERROR_IPSEC_IKE_DH_FAILURE: DWORD = 0x00003628;
///Invalid Diffie-Hellman group.
pub const ERROR_IPSEC_IKE_INVALID_GROUP: DWORD = 0x00003629;
///Error encrypting payload.
pub const ERROR_IPSEC_IKE_ENCRYPT: DWORD = 0x0000362A;
///Error decrypting payload.
pub const ERROR_IPSEC_IKE_DECRYPT: DWORD = 0x0000362B;
///Policy match error.
pub const ERROR_IPSEC_IKE_POLICY_MATCH: DWORD = 0x0000362C;
///Unsupported ID.
pub const ERROR_IPSEC_IKE_UNSUPPORTED_ID: DWORD = 0x0000362D;
///Hash verification failed.
pub const ERROR_IPSEC_IKE_INVALID_HASH: DWORD = 0x0000362E;
///Invalid hash algorithm.
pub const ERROR_IPSEC_IKE_INVALID_HASH_ALG: DWORD = 0x0000362F;
///Invalid hash size.
pub const ERROR_IPSEC_IKE_INVALID_HASH_SIZE: DWORD = 0x00003630;
///Invalid encryption algorithm.
pub const ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG: DWORD = 0x00003631;
///Invalid authentication algorithm.
pub const ERROR_IPSEC_IKE_INVALID_AUTH_ALG: DWORD = 0x00003632;
///Invalid certificate signature.
pub const ERROR_IPSEC_IKE_INVALID_SIG: DWORD = 0x00003633;
///Load failed.
pub const ERROR_IPSEC_IKE_LOAD_FAILED: DWORD = 0x00003634;
///Deleted by using an RPC call.
pub const ERROR_IPSEC_IKE_RPC_DELETE: DWORD = 0x00003635;
///A temporary state was created to perform reinitialization. This is not a real failure.
pub const ERROR_IPSEC_IKE_BENIGN_REINIT: DWORD = 0x00003636;
///The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Fix the policy on the peer machine.
pub const ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY: DWORD = 0x00003637;
///Key length in the certificate is too small for configured security requirements.
pub const ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN: DWORD = 0x00003639;
///Maximum number of established MM SAs to peer exceeded.
pub const ERROR_IPSEC_IKE_MM_LIMIT: DWORD = 0x0000363A;
///The IKE received a policy that disables negotiation.
pub const ERROR_IPSEC_IKE_NEGOTIATION_DISABLED: DWORD = 0x0000363B;
///Reached maximum quick mode limit for the main mode. New main mode will be started.
pub const ERROR_IPSEC_IKE_QM_LIMIT: DWORD = 0x0000363C;
///Main mode SA lifetime expired or the peer sent a main mode delete.
pub const ERROR_IPSEC_IKE_MM_EXPIRED: DWORD = 0x0000363D;
///Main mode SA assumed to be invalid because peer stopped responding.
pub const ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID: DWORD = 0x0000363E;
///Certificate does not chain to a trusted root in IPsec policy.
pub const ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH: DWORD = 0x0000363F;
///Received unexpected message ID.
pub const ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID: DWORD = 0x00003640;
///Received invalid AuthIP user mode attributes.
pub const ERROR_IPSEC_IKE_INVALID_UMATTS: DWORD = 0x00003641;
///Sent DOS cookie notify to initiator.
pub const ERROR_IPSEC_IKE_DOS_COOKIE_SENT: DWORD = 0x00003642;
///The IKE service is shutting down.
pub const ERROR_IPSEC_IKE_SHUTTING_DOWN: DWORD = 0x00003643;
///Could not verify the binding between the color graphics adapter (CGA) address and the certificate.
pub const ERROR_IPSEC_IKE_CGA_AUTH_FAILED: DWORD = 0x00003644;
///Error processing the NatOA payload.
pub const ERROR_IPSEC_IKE_PROCESS_ERR_NATOA: DWORD = 0x00003645;
///The parameters of the main mode are invalid for this quick mode.
pub const ERROR_IPSEC_IKE_INVALID_MM_FOR_QM: DWORD = 0x00003646;
///The quick mode SA was expired by the IPsec driver.
pub const ERROR_IPSEC_IKE_QM_EXPIRED: DWORD = 0x00003647;
///Too many dynamically added IKEEXT filters were detected.
pub const ERROR_IPSEC_IKE_TOO_MANY_FILTERS: DWORD = 0x00003648;
///Ends the list of frequencies of various IKE Win32 error codes encountered during negotiations.
pub const ERROR_IPSEC_IKE_NEG_STATUS_END: DWORD = 0x00003649;
///The requested section was not present in the activation context.
pub const ERROR_SXS_SECTION_NOT_FOUND: DWORD = 0x000036B0;
///The application has failed to start because its side-by-side configuration is incorrect. See the application event log for more detail.
pub const ERROR_SXS_CANT_GEN_ACTCTX: DWORD = 0x000036B1;
///The application binding data format is invalid.
pub const ERROR_SXS_INVALID_ACTCTXDATA_FORMAT: DWORD = 0x000036B2;
///The referenced assembly is not installed on your system.
pub const ERROR_SXS_ASSEMBLY_NOT_FOUND: DWORD = 0x000036B3;
///The manifest file does not begin with the required tag and format information.
pub const ERROR_SXS_MANIFEST_FORMAT_ERROR: DWORD = 0x000036B4;
///The manifest file contains one or more syntax errors.
pub const ERROR_SXS_MANIFEST_PARSE_ERROR: DWORD = 0x000036B5;
///The application attempted to activate a disabled activation context.
pub const ERROR_SXS_ACTIVATION_CONTEXT_DISABLED: DWORD = 0x000036B6;
///The requested lookup key was not found in any active activation context.
pub const ERROR_SXS_KEY_NOT_FOUND: DWORD = 0x000036B7;
///A component version required by the application conflicts with another active component version.
pub const ERROR_SXS_VERSION_CONFLICT: DWORD = 0x000036B8;
///The type requested activation context section does not match the query API used.
pub const ERROR_SXS_WRONG_SECTION_TYPE: DWORD = 0x000036B9;
///Lack of system resources has required isolated activation to be disabled for the current thread of execution.
pub const ERROR_SXS_THREAD_QUERIES_DISABLED: DWORD = 0x000036BA;
///An attempt to set the process default activation context failed because the process default activation context was already set.
pub const ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET: DWORD = 0x000036BB;
///The encoding group identifier specified is not recognized.
pub const ERROR_SXS_UNKNOWN_ENCODING_GROUP: DWORD = 0x000036BC;
///The encoding requested is not recognized.
pub const ERROR_SXS_UNKNOWN_ENCODING: DWORD = 0x000036BD;
///The manifest contains a reference to an invalid URI.
pub const ERROR_SXS_INVALID_XML_NAMESPACE_URI: DWORD = 0x000036BE;
///The application manifest contains a reference to a dependent assembly that is not installed.
pub const ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_OT_INSTALLED: DWORD = 0x000036BF;
///The manifest for an assembly used by the application has a reference to a dependent assembly that is not installed.
pub const ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED: DWORD = 0x000036C0;
///The manifest contains an attribute for the assembly identity that is not valid.
pub const ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE: DWORD = 0x000036C1;
///The manifest is missing the required default namespace specification on the assembly element.
pub const ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE: DWORD = 0x000036C2;
///The manifest has a default namespace specified on the assembly element but its value is not urn:schemas-microsoft-com:asm.v1"."
pub const ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE: DWORD = 0x000036C3;
///The private manifest probed has crossed the reparse-point-associated path.
pub const ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT: DWORD = 0x000036C4;
///Two or more components referenced directly or indirectly by the application manifest have files by the same name.
pub const ERROR_SXS_DUPLICATE_DLL_NAME: DWORD = 0x000036C5;
///Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.
pub const ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME: DWORD = 0x000036C6;
///Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.
pub const ERROR_SXS_DUPLICATE_CLSID: DWORD = 0x000036C7;
///Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.
pub const ERROR_SXS_DUPLICATE_IID: DWORD = 0x000036C8;
///Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.
pub const ERROR_SXS_DUPLICATE_TLBID: DWORD = 0x000036C9;
///Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.
pub const ERROR_SXS_DUPLICATE_PROGID: DWORD = 0x000036CA;
///Two or more components referenced directly or indirectly by the application manifest are different versions of the same component, which is not permitted.
pub const ERROR_SXS_DUPLICATE_ASSEMBLY_NAME: DWORD = 0x000036CB;
///A component's file does not match the verification information present in the component manifest.
pub const ERROR_SXS_FILE_HASH_MISMATCH: DWORD = 0x000036CC;
///The policy manifest contains one or more syntax errors.
pub const ERROR_SXS_POLICY_PARSE_ERROR: DWORD = 0x000036CD;
///Manifest Parse Error: A string literal was expected, but no opening quotation mark was found.
pub const ERROR_SXS_XML_E_MISSINGQUOTE: DWORD = 0x000036CE;
///Manifest Parse Error: Incorrect syntax was used in a comment.
pub const ERROR_SXS_XML_E_COMMENTSYNTAX: DWORD = 0x000036CF;
///Manifest Parse Error: A name started with an invalid character.
pub const ERROR_SXS_XML_E_BADSTARTNAMECHAR: DWORD = 0x000036D0;
///Manifest Parse Error: A name contained an invalid character.
pub const ERROR_SXS_XML_E_BADNAMECHAR: DWORD = 0x000036D1;
///Manifest Parse Error: A string literal contained an invalid character.
pub const ERROR_SXS_XML_E_BADCHARINSTRING: DWORD = 0x000036D2;
///Manifest Parse Error: Invalid syntax for an XML declaration.
pub const ERROR_SXS_XML_E_XMLDECLSYNTAX: DWORD = 0x000036D3;
///Manifest Parse Error: An Invalid character was found in text content.
pub const ERROR_SXS_XML_E_BADCHARDATA: DWORD = 0x000036D4;
///Manifest Parse Error: Required white space was missing.
pub const ERROR_SXS_XML_E_MISSINGWHITESPACE: DWORD = 0x000036D5;
///Manifest Parse Error: The angle bracket (>) character was expected.
pub const ERROR_SXS_XML_E_EXPECTINGTAGEND: DWORD = 0x000036D6;
///Manifest Parse Error: A semicolon (;) was expected.
pub const ERROR_SXS_XML_E_MISSINGSEMICOLON: DWORD = 0x000036D7;
///Manifest Parse Error: Unbalanced parentheses.
pub const ERROR_SXS_XML_E_UNBALANCEDPAREN: DWORD = 0x000036D8;
///Manifest Parse Error: Internal error.
pub const ERROR_SXS_XML_E_INTERNALERROR: DWORD = 0x000036D9;
///Manifest Parse Error: Whitespace is not allowed at this location.
pub const ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE: DWORD = 0x000036DA;
///Manifest Parse Error: End of file reached in invalid state for current encoding.
pub const ERROR_SXS_XML_E_INCOMPLETE_ENCODING: DWORD = 0x000036DB;
///Manifest Parse Error: Missing parenthesis.
pub const ERROR_SXS_XML_E_MISSING_PAREN: DWORD = 0x000036DC;
///Manifest Parse Error: A single (') or double (") quotation mark is missing.
pub const ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE: DWORD = 0x000036DD;
///Manifest Parse Error: Multiple colons are not allowed in a name.
pub const ERROR_SXS_XML_E_MULTIPLE_COLONS: DWORD = 0x000036DE;
///Manifest Parse Error: Invalid character for decimal digit.
pub const ERROR_SXS_XML_E_INVALID_DECIMAL: DWORD = 0x000036DF;
///Manifest Parse Error: Invalid character for hexadecimal digit.
pub const ERROR_SXS_XML_E_INVALID_HEXIDECIMAL: DWORD = 0x000036E0;
///Manifest Parse Error: Invalid Unicode character value for this platform.
pub const ERROR_SXS_XML_E_INVALID_UNICODE: DWORD = 0x000036E1;
///Manifest Parse Error: Expecting whitespace or question mark (?).
pub const ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK: DWORD = 0x000036E2;
///Manifest Parse Error: End tag was not expected at this location.
pub const ERROR_SXS_XML_E_UNEXPECTEDENDTAG: DWORD = 0x000036E3;
///Manifest Parse Error: The following tags were not closed: %1.
pub const ERROR_SXS_XML_E_UNCLOSEDTAG: DWORD = 0x000036E4;
///Manifest Parse Error: Duplicate attribute.
pub const ERROR_SXS_XML_E_DUPLICATEATTRIBUTE: DWORD = 0x000036E5;
///Manifest Parse Error: Only one top-level element is allowed in an XML document.
pub const ERROR_SXS_XML_E_MULTIPLEROOTS: DWORD = 0x000036E6;
///Manifest Parse Error: Invalid at the top level of the document.
pub const ERROR_SXS_XML_E_INVALIDATROOTLEVEL: DWORD = 0x000036E7;
///Manifest Parse Error: Invalid XML declaration.
pub const ERROR_SXS_XML_E_BADXMLDECL: DWORD = 0x000036E8;
///Manifest Parse Error: XML document must have a top-level element.
pub const ERROR_SXS_XML_E_MISSINGROOT: DWORD = 0x000036E9;
///Manifest Parse Error: Unexpected end of file.
pub const ERROR_SXS_XML_E_UNEXPECTEDEOF: DWORD = 0x000036EA;
///Manifest Parse Error: Parameter entities cannot be used inside markup declarations in an internal subset.
pub const ERROR_SXS_XML_E_BADPEREFINSUBSET: DWORD = 0x000036EB;
///Manifest Parse Error: Element was not closed.
pub const ERROR_SXS_XML_E_UNCLOSEDSTARTTAG: DWORD = 0x000036EC;
///Manifest Parse Error: End element was missing the angle bracket (>) character.
pub const ERROR_SXS_XML_E_UNCLOSEDENDTAG: DWORD = 0x000036ED;
///Manifest Parse Error: A string literal was not closed.
pub const ERROR_SXS_XML_E_UNCLOSEDSTRING: DWORD = 0x000036EE;
///Manifest Parse Error: A comment was not closed.
pub const ERROR_SXS_XML_E_UNCLOSEDCOMMENT: DWORD = 0x000036EF;
///Manifest Parse Error: A declaration was not closed.
pub const ERROR_SXS_XML_E_UNCLOSEDDECL: DWORD = 0x000036F0;
///Manifest Parse Error: A CDATA section was not closed.
pub const ERROR_SXS_XML_E_UNCLOSEDCDATA: DWORD = 0x000036F1;
///Manifest Parse Error: The namespace prefix is not allowed to start with the reserved string xml"."
pub const ERROR_SXS_XML_E_RESERVEDNAMESPACE: DWORD = 0x000036F2;
///Manifest Parse Error: System does not support the specified encoding.
pub const ERROR_SXS_XML_E_INVALIDENCODING: DWORD = 0x000036F3;
///Manifest Parse Error: Switch from current encoding to specified encoding not supported.
pub const ERROR_SXS_XML_E_INVALIDSWITCH: DWORD = 0x000036F4;
///Manifest Parse Error: The name "xml" is reserved and must be lowercase.
pub const ERROR_SXS_XML_E_BADXMLCASE: DWORD = 0x000036F5;
///Manifest Parse Error: The stand-alone attribute must have the value "yes" or "no".
pub const ERROR_SXS_XML_E_INVALID_STANDALONE: DWORD = 0x000036F6;
///Manifest Parse Error: The stand-alone attribute cannot be used in external entities.
pub const ERROR_SXS_XML_E_UNEXPECTED_STANDALONE: DWORD = 0x000036F7;
///Manifest Parse Error: Invalid version number.
pub const ERROR_SXS_XML_E_INVALID_VERSION: DWORD = 0x000036F8;
///Manifest Parse Error: Missing equal sign (=) between the attribute and the attribute value.
pub const ERROR_SXS_XML_E_MISSINGEQUALS: DWORD = 0x000036F9;
///Assembly Protection Error: Unable to recover the specified assembly.
pub const ERROR_SXS_PROTECTION_RECOVERY_FAILED: DWORD = 0x000036FA;
///Assembly Protection Error: The public key for an assembly was too short to be allowed.
pub const ERROR_SXS_PROTECTION_PUBLIC_KEY_OO_SHORT: DWORD = 0x000036FB;
///Assembly Protection Error: The catalog for an assembly is not valid, or does not match the assembly's manifest.
pub const ERROR_SXS_PROTECTION_CATALOG_NOT_VALID: DWORD = 0x000036FC;
///An HRESULT could not be translated to a corresponding Win32 error code.
pub const ERROR_SXS_UNTRANSLATABLE_HRESULT: DWORD = 0x000036FD;
///Assembly Protection Error: The catalog for an assembly is missing.
pub const ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING: DWORD = 0x000036FE;
///The supplied assembly identity is missing one or more attributes that must be present in this context.
pub const ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE: DWORD = 0x000036FF;
///The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.
pub const ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME: DWORD = 0x00003700;
///The referenced assembly could not be found.
pub const ERROR_SXS_ASSEMBLY_MISSING: DWORD = 0x00003701;
///The activation context activation stack for the running thread of execution is corrupt.
pub const ERROR_SXS_CORRUPT_ACTIVATION_STACK: DWORD = 0x00003702;
///The application isolation metadata for this process or thread has become corrupt.
pub const ERROR_SXS_CORRUPTION: DWORD = 0x00003703;
///The activation context being deactivated is not the most recently activated one.
pub const ERROR_SXS_EARLY_DEACTIVATION: DWORD = 0x00003704;
///The activation context being deactivated is not active for the current thread of execution.
pub const ERROR_SXS_INVALID_DEACTIVATION: DWORD = 0x00003705;
///The activation context being deactivated has already been deactivated.
pub const ERROR_SXS_MULTIPLE_DEACTIVATION: DWORD = 0x00003706;
///A component used by the isolation facility has requested to terminate the process.
pub const ERROR_SXS_PROCESS_TERMINATION_REQUESTED: DWORD = 0x00003707;
///A kernel mode component is releasing a reference on an activation context.
pub const ERROR_SXS_RELEASE_ACTIVATION_ONTEXT: DWORD = 0x00003708;
///The activation context of the system default assembly could not be generated.
pub const ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY: DWORD = 0x00003709;
///The value of an attribute in an identity is not within the legal range.
pub const ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE: DWORD = 0x0000370A;
///The name of an attribute in an identity is not within the legal range.
pub const ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME: DWORD = 0x0000370B;
///An identity contains two definitions for the same attribute.
pub const ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE: DWORD = 0x0000370C;
///The identity string is malformed. This might be due to a trailing comma, more than two unnamed attributes, a missing attribute name, or a missing attribute value.
pub const ERROR_SXS_IDENTITY_PARSE_ERROR: DWORD = 0x0000370D;
///A string containing localized substitutable content was malformed. Either a dollar sign ($) was followed by something other than a left parenthesis or another dollar sign, or a substitution's right parenthesis was not found.
pub const ERROR_MALFORMED_SUBSTITUTION_STRING: DWORD = 0x0000370E;
///The public key token does not correspond to the public key specified.
pub const ERROR_SXS_INCORRECT_PUBLIC_KEY_OKEN: DWORD = 0x0000370F;
///A substitution string had no mapping.
pub const ERROR_UNMAPPED_SUBSTITUTION_STRING: DWORD = 0x00003710;
///The component must be locked before making the request.
pub const ERROR_SXS_ASSEMBLY_NOT_LOCKED: DWORD = 0x00003711;
///The component store has been corrupted.
pub const ERROR_SXS_COMPONENT_STORE_CORRUPT: DWORD = 0x00003712;
///An advanced installer failed during setup or servicing.
pub const ERROR_ADVANCED_INSTALLER_FAILED: DWORD = 0x00003713;
///The character encoding in the XML declaration did not match the encoding used in the document.
pub const ERROR_XML_ENCODING_MISMATCH: DWORD = 0x00003714;
///The identities of the manifests are identical, but the contents are different.
pub const ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT: DWORD = 0x00003715;
///The component identities are different.
pub const ERROR_SXS_IDENTITIES_DIFFERENT: DWORD = 0x00003716;
///The assembly is not a deployment.
pub const ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT: DWORD = 0x00003717;
///The file is not a part of the assembly.
pub const ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY: DWORD = 0x00003718;
///The size of the manifest exceeds the maximum allowed.
pub const ERROR_SXS_MANIFEST_TOO_BIG: DWORD = 0x00003719;
///The setting is not registered.
pub const ERROR_SXS_SETTING_NOT_REGISTERED: DWORD = 0x0000371A;
///One or more required members of the transaction are not present.
pub const ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE: DWORD = 0x0000371B;
///The specified channel path is invalid.
pub const ERROR_EVT_INVALID_CHANNEL_PATH: DWORD = 0x00003A98;
///The specified query is invalid.
pub const ERROR_EVT_INVALID_QUERY: DWORD = 0x00003A99;
///The publisher metadata cannot be found in the resource.
pub const ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND: DWORD = 0x00003A9A;
///The template for an event definition cannot be found in the resource (error = %1).
pub const ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND: DWORD = 0x00003A9B;
///The specified publisher name is invalid.
pub const ERROR_EVT_INVALID_PUBLISHER_NAME: DWORD = 0x00003A9C;
///The event data raised by the publisher is not compatible with the event template definition in the publisher's manifest.
pub const ERROR_EVT_INVALID_EVENT_DATA: DWORD = 0x00003A9D;
///The specified channel could not be found. Check channel configuration.
pub const ERROR_EVT_CHANNEL_NOT_FOUND: DWORD = 0x00003A9F;
///The specified XML text was not well-formed. See extended error for more details.
pub const ERROR_EVT_MALFORMED_XML_TEXT: DWORD = 0x00003AA0;
///The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a log file and cannot be subscribed to.
pub const ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL: DWORD = 0x00003AA1;
///Configuration error.
pub const ERROR_EVT_CONFIGURATION_ERROR: DWORD = 0x00003AA2;
///The query result is stale or invalid. This might be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query.
pub const ERROR_EVT_QUERY_RESULT_STALE: DWORD = 0x00003AA3;
///Query result is currently at an invalid position.
pub const ERROR_EVT_QUERY_RESULT_INVALID_POSITION: DWORD = 0x00003AA4;
///Registered Microsoft XML (MSXML) does not support validation.
pub const ERROR_EVT_NON_VALIDATING_MSXML: DWORD = 0x00003AA5;
///An expression can only be followed by a change-of-scope operation if it itself evaluates to a node set and is not already part of some other change-of-scope operation.
pub const ERROR_EVT_FILTER_ALREADYSCOPED: DWORD = 0x00003AA6;
///Cannot perform a step operation from a term that does not represent an element set.
pub const ERROR_EVT_FILTER_NOTELTSET: DWORD = 0x00003AA7;
///Left side arguments to binary operators must be either attributes, nodes, or variables and right side arguments must be constants.
pub const ERROR_EVT_FILTER_INVARG: DWORD = 0x00003AA8;
///A step operation must involve either a node test or, in the case of a predicate, an algebraic expression against which to test each node in the node set identified by the preceding node set can be evaluated.
pub const ERROR_EVT_FILTER_INVTEST: DWORD = 0x00003AA9;
///This data type is currently unsupported.
pub const ERROR_EVT_FILTER_INVTYPE: DWORD = 0x00003AAA;
///A syntax error occurred at position %1!d!
pub const ERROR_EVT_FILTER_PARSEERR: DWORD = 0x00003AAB;
///This operator is unsupported by this implementation of the filter.
pub const ERROR_EVT_FILTER_UNSUPPORTEDOP: DWORD = 0x00003AAC;
///The token encountered was unexpected.
pub const ERROR_EVT_FILTER_UNEXPECTEDTOKEN: DWORD = 0x00003AAD;
///The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation.
pub const ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL: DWORD = 0x00003AAE;
///Channel property %1!s! contains an invalid value. The value has an invalid type, is outside the valid range, cannot be updated, or is not supported by this type of channel.
pub const ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE: DWORD = 0x00003AAF;
///Publisher property %1!s! contains an invalid value. The value has an invalid type, is outside the valid range, cannot be updated, or is not supported by this type of publisher.
pub const ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE: DWORD = 0x00003AB0;
///The channel fails to activate.
pub const ERROR_EVT_CHANNEL_CANNOT_ACTIVATE: DWORD = 0x00003AB1;
///The xpath expression exceeded supported complexity. Simplify it or split it into two or more simple expressions.
pub const ERROR_EVT_FILTER_TOO_COMPLEX: DWORD = 0x00003AB2;
///The message resource is present but the message is not found in the string or message table.
pub const ERROR_EVT_MESSAGE_NOT_FOUND: DWORD = 0x00003AB3;
///The message ID for the desired message could not be found.
pub const ERROR_EVT_MESSAGE_ID_NOT_FOUND: DWORD = 0x00003AB4;
///The substitution string for the insert index (%1) could not be found.
pub const ERROR_EVT_UNRESOLVED_VALUE_INSERT: DWORD = 0x00003AB5;
///The description string for the parameter reference (%1) could not be found.
pub const ERROR_EVT_UNRESOLVED_PARAMETER_INSERT: DWORD = 0x00003AB6;
///The maximum number of replacements has been reached.
pub const ERROR_EVT_MAX_INSERTS_REACHED: DWORD = 0x00003AB7;
///The event definition could not be found for the event ID (%1).
pub const ERROR_EVT_EVENT_DEFINITION_NOT_OUND: DWORD = 0x00003AB8;
///The locale-specific resource for the desired message is not present.
pub const ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND: DWORD = 0x00003AB9;
///The resource is too old to be compatible.
pub const ERROR_EVT_VERSION_TOO_OLD: DWORD = 0x00003ABA;
///The resource is too new to be compatible.
pub const ERROR_EVT_VERSION_TOO_NEW: DWORD = 0x00003ABB;
///The channel at index %1 of the query cannot be opened.
pub const ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY: DWORD = 0x00003ABC;
///The publisher has been disabled and its resource is not available. This usually occurs when the publisher is in the process of being uninstalled or upgraded.
pub const ERROR_EVT_PUBLISHER_DISABLED: DWORD = 0x00003ABD;
///The subscription fails to activate.
pub const ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE: DWORD = 0x00003AE8;
///The log of the subscription is in a disabled state and events cannot be forwarded to it. The log must first be enabled before the subscription can be activated.
pub const ERROR_EC_LOG_DISABLED: DWORD = 0x00003AE9;
///The resource loader failed to find the Multilingual User Interface (MUI) file.
pub const ERROR_MUI_FILE_NOT_FOUND: DWORD = 0x00003AFC;
///The resource loader failed to load the MUI file because the file failed to pass validation.
pub const ERROR_MUI_INVALID_FILE: DWORD = 0x00003AFD;
///The release candidate (RC) manifest is corrupted with garbage data, is an unsupported version, or is missing a required item.
pub const ERROR_MUI_INVALID_RC_CONFIG: DWORD = 0x00003AFE;
///The RC manifest has an invalid culture name.
pub const ERROR_MUI_INVALID_LOCALE_NAME: DWORD = 0x00003AFF;
///The RC Manifest has an invalid ultimate fallback name.
pub const ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME: DWORD = 0x00003B00;
///The resource loader cache does not have a loaded MUI entry.
pub const ERROR_MUI_FILE_NOT_LOADED: DWORD = 0x00003B01;
///The user stopped resource enumeration.
pub const ERROR_RESOURCE_ENUM_USER_STOP: DWORD = 0x00003B02;
///User interface language installation failed.
pub const ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED: DWORD = 0x00003B03;
///Locale installation failed.
pub const ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME: DWORD = 0x00003B04;
///The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1, or MCCS 2 Revision 1 specification.
pub const ERROR_MCA_INVALID_CAPABILITIES_STRING: DWORD = 0x00003B60;
///The monitor's VCP version (0xDF) VCP code returned an invalid version value.
pub const ERROR_MCA_INVALID_VCP_VERSION: DWORD = 0x00003B61;
///The monitor does not comply with the MCCS specification it claims to support.
pub const ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION: DWORD = 0x00003B62;
///The MCCS version in a monitor's mccs_ver capability does not match the MCCS version the monitor reports when the VCP version (0xDF) VCP code is used.
pub const ERROR_MCA_MCCS_VERSION_MISMATCH: DWORD = 0x00003B63;
///The monitor configuration API works only with monitors that support the MCCS 1.0, MCCS 2.0, or MCCS 2.0 Revision 1 specifications.
pub const ERROR_MCA_UNSUPPORTED_MCCS_VERSION: DWORD = 0x00003B64;
///An internal monitor configuration API error occurred.
pub const ERROR_MCA_INTERNAL_ERROR: DWORD = 0x00003B65;
///The monitor returned an invalid monitor technology type. CRT, plasma, and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
pub const ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED: DWORD = 0x00003B66;
///The SetMonitorColorTemperature() caller passed a color temperature to it that the current monitor did not support. CRT, plasma, and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
pub const ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE: DWORD = 0x00003B67;
///The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.
pub const ERROR_AMBIGUOUS_SYSTEM_DEVICE: DWORD = 0x00003B92;
///The requested system device cannot be found.
pub const ERROR_SYSTEM_DEVICE_NOT_FOUND: DWORD = 0x00003BC3;