summaryrefslogtreecommitdiffstats
path: root/private/nls/ntstatus.mc
blob: 2af694b44e1def8ad27ea8f6c246b6ed93636c1c (plain) (blame)
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
;/*++ BUILD Version: 0005    // Increment this if a change has global effects
;
;Copyright (c) 1991-1993  Microsoft Corporation
;
;Module Name:
;
;    ntstatus.h
;
;Abstract:
;
;    Constant definitions for the NTSTATUS values.
;
;Author:
;
;    Portable Systems Group 30-Mar-1989
;
;Revision History:
;
;Notes:
;
;    This file is generated by the MC tool from the winerror.msg file.
;
;    Please add new error values to the end of the file.  To do otherwise
;    will jumble the error values.
;
;--*/
;
;#ifndef _NTSTATUS_
;#define _NTSTATUS_
;
;#ifndef WIN32_NO_STATUS // winnt
;// begin_ntsecapi
;
;/*lint -save -e767 */  // Don't complain about different definitions // winnt
;
;

MessageIdTypedef=NTSTATUS

SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
               Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
               Warning=0x2:STATUS_SEVERITY_WARNING
               Error=0x3:STATUS_SEVERITY_ERROR
              )

FacilityNames=(System=0x0
               RpcRuntime=0x2:FACILITY_RPC_RUNTIME
               RpcStubs=0x3:FACILITY_RPC_STUBS
               Io=0x4:FACILITY_IO_ERROR_CODE
              )


;
;/////////////////////////////////////////////////////////////////////////
;//
;// Standard Success values
;//
;//
;/////////////////////////////////////////////////////////////////////////
;
;
;//
;// The success status codes 0 - 63 are reserved for wait completion status.
;//
;#define STATUS_SUCCESS                          ((NTSTATUS)0x00000000L) // ntsubauth
;

MessageId=0x0000 Facility=System Severity=Success SymbolicName=STATUS_WAIT_0                    ;// winnt
Language=English
.


MessageId=0x0001 Facility=System Severity=Success SymbolicName=STATUS_WAIT_1
Language=English
.


MessageId=0x0002 Facility=System Severity=Success SymbolicName=STATUS_WAIT_2
Language=English
.


MessageId=0x0003 Facility=System Severity=Success SymbolicName=STATUS_WAIT_3
Language=English
.


MessageId=0x003F Facility=System Severity=Success SymbolicName=STATUS_WAIT_63
Language=English
.

;
;//
;// The success status codes 128 - 191 are reserved for wait completion
;// status with an abandoned mutant object.
;//
;#define STATUS_ABANDONED                        ((NTSTATUS)0x00000080L)
;

MessageId=0x0080 Facility=System Severity=Success SymbolicName=STATUS_ABANDONED_WAIT_0          ;// winnt
Language=English
.


MessageId=0x00BF Facility=System Severity=Success SymbolicName=STATUS_ABANDONED_WAIT_63
Language=English
.



MessageId=0x00C0 Facility=System Severity=Success SymbolicName=STATUS_USER_APC                  ;// winnt
Language=English
The success status codes 256, 257, 258, and 258 are reserved for
User APC, Kernel APC, Alerted, and Timeout.
.


MessageId=0x0100 Facility=System Severity=Success SymbolicName=STATUS_KERNEL_APC
Language=English
The success status codes 256, 257, 258, and 258 are reserved for
User APC, Kernel APC, Alerted, and Timeout.
.


MessageId=0x0101 Facility=System Severity=Success SymbolicName=STATUS_ALERTED
Language=English
The success status codes 256, 257, 258, and 258 are reserved for
User APC, Kernel APC, Alerted, and Timeout.
.


MessageId=0x0102 Facility=System Severity=Success SymbolicName=STATUS_TIMEOUT                   ;// winnt
Language=English
The success status codes 256, 257, 258, and 258 are reserved for
User APC, Kernel APC, Alerted, and Timeout.
.


MessageId=0x0103 Facility=System Severity=Success SymbolicName=STATUS_PENDING                   ;// winnt
Language=English
The operation that was requested is pending completion.
.


MessageId=0x0104 Facility=System Severity=Success SymbolicName=STATUS_REPARSE
Language=English
A reparse should be performed by the Object Manager since the name of the
file resulted in a symbolic link.
.




MessageId=0x0105 Facility=System Severity=Success SymbolicName=STATUS_MORE_ENTRIES
Language=English
Returned by enumeration APIs to indicate more information is available
to successive calls.
.


MessageId=0x0106 Facility=System Severity=Success SymbolicName=STATUS_NOT_ALL_ASSIGNED
Language=English
Indicates not all privileges referenced are assigned to the caller.
This allows, for example, all privileges to be disabled without having
to know exactly which privileges are assigned.
.


MessageId=0x0107 Facility=System Severity=Success SymbolicName=STATUS_SOME_NOT_MAPPED
Language=English
Some of the information to be translated has not been translated.
.


MessageId=0x0108 Facility=System Severity=Success SymbolicName=STATUS_OPLOCK_BREAK_IN_PROGRESS
Language=English
An open/create operation completed while an oplock break is
underway.
.


MessageId=0x0109 Facility=System Severity=Success SymbolicName=STATUS_VOLUME_MOUNTED
Language=English
A new volume has been mounted by a file system.
.



MessageId=0x010A Facility=System Severity=Success SymbolicName=STATUS_RXACT_COMMITTED
Language=English
This success level status indicates that the transaction state already
exists for the registry sub-tree, but that a transaction commit was
previously aborted.  The commit has now been completed.
This status value is returned by the runtime library (RTL) registry
transaction package (RXact).
.


MessageId=0x010B Facility=System Severity=Success SymbolicName=STATUS_NOTIFY_CLEANUP
Language=English
This indicates that a notify change request has been completed due to
closing the handle which made the notify change request.
.


MessageId=0x010C Facility=System Severity=Success SymbolicName=STATUS_NOTIFY_ENUM_DIR
Language=English
This indicates that a notify change request is being completed and that the
information is not being returned in the caller's buffer.  The caller now
needs to enumerate the files to find the changes.
.


MessageId=0x010D Facility=System Severity=Success SymbolicName=STATUS_NO_QUOTAS_FOR_ACCOUNT
Language=English
{No Quotas}
No system quota limits are specifically set for this account.
.

MessageId=0x010E Facility=System Severity=Success SymbolicName=STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED
Language=English
{Connect Failure on Primary Transport}
An attempt was made to connect to the remote server %s on the primary transport, but the
connection failed.  The computer WAS able to connect on a secondary transport.
.

MessageId=0x0110 Facility=System Severity=Success SymbolicName=STATUS_PAGE_FAULT_TRANSITION
Language=English
Page fault was a transition fault.
.

MessageId=0x0111 Facility=System Severity=Success SymbolicName=STATUS_PAGE_FAULT_DEMAND_ZERO
Language=English
Page fault was a demand zero fault.
.

MessageId=0x0112 Facility=System Severity=Success SymbolicName=STATUS_PAGE_FAULT_COPY_ON_WRITE
Language=English
Page fault was a demand zero fault.
.

MessageId=0x0113 Facility=System Severity=Success SymbolicName=STATUS_PAGE_FAULT_GUARD_PAGE
Language=English
Page fault was a demand zero fault.
.

MessageId=0x0114 Facility=System Severity=Success SymbolicName=STATUS_PAGE_FAULT_PAGING_FILE
Language=English
Page fault was satisfied by reading from a secondary storage device.
.

MessageId=0x0115 Facility=System Severity=Success SymbolicName=STATUS_CACHE_PAGE_LOCKED
Language=English
Cached page was locked during operation.
.

MessageId=0x0116 Facility=System Severity=Success SymbolicName=STATUS_CRASH_DUMP
Language=English
Crash dump exists in paging file.
.

MessageId=0x0117 Facility=System Severity=Success SymbolicName=STATUS_BUFFER_ALL_ZEROS
Language=English
Specified buffer contains all zeros.
.

MessageId=0x0118 Facility=System Severity=Success SymbolicName=STATUS_REPARSE_OBJECT
Language=English
A reparse should be performed by the Object Manager since the name of the
file resulted in a symbolic link.
.


;
;

;/////////////////////////////////////////////////////////////////////////
;//
;// Standard Information values
;//
;/////////////////////////////////////////////////////////////////////////
;

MessageId=0x0000 Facility=System Severity=Informational SymbolicName=STATUS_OBJECT_NAME_EXISTS
Language=English
{Object Exists}
An attempt was made to create an object and the object name already existed.
.


MessageId=0x0001 Facility=System Severity=Informational SymbolicName=STATUS_THREAD_WAS_SUSPENDED
Language=English
{Thread Suspended}
A thread termination occurred while the thread was suspended. The
thread was resumed, and termination proceeded.
.


MessageId=0x0002 Facility=System Severity=Informational SymbolicName=STATUS_WORKING_SET_LIMIT_RANGE
Language=English
{Working Set Range Error}
An attempt was made to set the working set minimum or maximum
to values which are outside of the allowable range.
.


MessageId=0x0003 Facility=System Severity=Informational SymbolicName=STATUS_IMAGE_NOT_AT_BASE
Language=English
{Image Relocated}
An image file could not be mapped at the address specified in
the image file.  Local fixups must be performed on this image.
.


MessageId=0x0004 Facility=System Severity=Informational SymbolicName=STATUS_RXACT_STATE_CREATED
Language=English
This informational level status indicates that a specified registry
sub-tree transaction state did not yet exist and had to be created.
This status value is returned by the runtime library (RTL) registry
transaction package (RXact).
.


MessageId=0x0005 Facility=System Severity=Informational SymbolicName=STATUS_SEGMENT_NOTIFICATION ;// winnt
Language=English
{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.
.


MessageId=0x0006 Facility=System Severity=Informational SymbolicName=STATUS_LOCAL_USER_SESSION_KEY
Language=English
{Local Session Key}
A user session key was requested for a local RPC connection. The session key
returned is a constant value and not unique to this connection.
.


MessageId=0x0007 Facility=System Severity=Informational SymbolicName=STATUS_BAD_CURRENT_DIRECTORY
Language=English
{Invalid Current Directory}
The process cannot switch to the startup current directory %s.
Select OK to set current directory to %s, or select CANCEL
to exit.
.

MessageId=0x0008 Facility=System Severity=Informational SymbolicName=STATUS_SERIAL_MORE_WRITES
Language=English
{Serial IOCTL Complete}
A serial I/O operation was completed by another write to a serial port.
(The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
.

MessageId=0x0009 Facility=System Severity=Informational SymbolicName=STATUS_REGISTRY_RECOVERED
Language=English
{Registry Recovery}
One of the files containing the system's Registry data had to be recovered
by use of a log or alternate copy.  The recovery was successful.
.

MessageId=0x000A Facility=System Severity=Informational SymbolicName=STATUS_FT_READ_RECOVERY_FROM_BACKUP
Language=English
{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 was unable to reassign the failing area of the device.
.

MessageId=0x000B Facility=System Severity=Informational SymbolicName=STATUS_FT_WRITE_RECOVERY
Language=English
{Redundant Write}
To satisfy a write request, the NT 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 was not able to reassign the failing area of the device.
.

MessageId=0x000C Facility=System Severity=Informational SymbolicName=STATUS_SERIAL_COUNTER_TIMEOUT
Language=English
{Serial IOCTL Timeout}
A serial I/O operation completed because the time-out period expired.
(The IOCTL_SERIAL_XOFF_COUNTER had not reached zero.)
.

MessageId=0x000D Facility=System Severity=Informational SymbolicName=STATUS_NULL_LM_PASSWORD
Language=English
{Password Too Complex}
The NT password is too complex to be converted to a LAN Manager password.
The LAN Manager password returned is a NULL string.
.

MessageId=0x000E Facility=System Severity=Informational SymbolicName=STATUS_IMAGE_MACHINE_TYPE_MISMATCH
Language=English
{Machine Type Mismatch}
The image file %s is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.
.

MessageId=0x000F Facility=System Severity=Informational SymbolicName=STATUS_RECEIVE_PARTIAL
Language=English
{Partial Data Received}
The network transport returned partial data to its client. The remaining
data will be sent later.
.

MessageId=0x0010 Facility=System Severity=Informational SymbolicName=STATUS_RECEIVE_EXPEDITED
Language=English
{Expedited Data Received}
The network transport returned data to its client that was marked as
expedited by the remote system.
.

MessageId=0x0011 Facility=System Severity=Informational SymbolicName=STATUS_RECEIVE_PARTIAL_EXPEDITED
Language=English
{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.
.

MessageId=0x0012 Facility=System Severity=Informational SymbolicName=STATUS_EVENT_DONE
Language=English
{TDI Event Done}
The TDI indication has completed successfully.
.

MessageId=0x0013 Facility=System Severity=Informational SymbolicName=STATUS_EVENT_PENDING
Language=English
{TDI Event Pending}
The TDI indication has entered the pending state.
.

MessageId=0x0014 Facility=System Severity=Informational SymbolicName=STATUS_CHECKING_FILE_SYSTEM
Language=English
Checking file system on %wZ
.

MessageId=0x0015 Facility=System Severity=Informational SymbolicName=STATUS_FATAL_APP_EXIT
Language=English
{Fatal Application Exit}
%s
.

MessageId=0x0016 Facility=System Severity=Informational SymbolicName=STATUS_PREDEFINED_HANDLE
Language=English
The specified registry key is referenced by a predefined handle.
.

MessageId=0x0017 Facility=System Severity=Informational SymbolicName=STATUS_WAS_UNLOCKED
Language=English
{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.
.

MessageId=0x0018 Facility=System Severity=Informational SymbolicName=STATUS_SERVICE_NOTIFICATION
Language=English
%s
.

MessageId=0x0019 Facility=System Severity=Informational SymbolicName=STATUS_WAS_LOCKED
Language=English
{Page Locked}
One of the pages to lock was already locked.
.

MessageId=0x001a Facility=System Severity=Informational SymbolicName=STATUS_LOG_HARD_ERROR
Language=English
Application popup: %1 : %2
.

MessageId=0x001b Facility=System Severity=Informational SymbolicName=STATUS_ALREADY_WIN32
Language=English
.

MessageId=0x001c Facility=System Severity=Informational SymbolicName=STATUS_WX86_UNSIMULATE
Language=English
Exception status code used by Win32 x86 emulation subsystem.
.

MessageId=0x001d Facility=System Severity=Informational SymbolicName=STATUS_WX86_CONTINUE
Language=English
Exception status code used by Win32 x86 emulation subsystem.
.

MessageId=0x001e Facility=System Severity=Informational SymbolicName=STATUS_WX86_SINGLE_STEP
Language=English
Exception status code used by Win32 x86 emulation subsystem.
.

MessageId=0x001f Facility=System Severity=Informational SymbolicName=STATUS_WX86_BREAKPOINT
Language=English
Exception status code used by Win32 x86 emulation subsystem.
.

MessageId=0x0020 Facility=System Severity=Informational SymbolicName=STATUS_WX86_EXCEPTION_CONTINUE
Language=English
Exception status code used by Win32 x86 emulation subsystem.
.

MessageId=0x0021 Facility=System Severity=Informational SymbolicName=STATUS_WX86_EXCEPTION_LASTCHANCE
Language=English
Exception status code used by Win32 x86 emulation subsystem.
.

MessageId=0x0022 Facility=System Severity=Informational SymbolicName=STATUS_WX86_EXCEPTION_CHAIN
Language=English
Exception status code used by Win32 x86 emulation subsystem.
.

MessageId=0x0023 Facility=System Severity=Informational SymbolicName=STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE
Language=English
{Machine Type Mismatch}
The image file %s is valid, but is for a machine type other than the current machine.
.

MessageId=0x0024 Facility=System Severity=Informational SymbolicName=STATUS_NO_YIELD_PERFORMED
Language=English
A yield execution was performed and no thread was available to run.
.

MessageId=0x0025 Facility=System Severity=Informational SymbolicName=STATUS_TIMER_RESUME_IGNORED
Language=English
The resumeable flag to a timer API was ignored.
.

;
;

;/////////////////////////////////////////////////////////////////////////
;//
;// Standard Warning values
;//
;//
;// Note:  Do NOT use the value 0x80000000L, as this is a non-portable value
;//        for the NT_SUCCESS macro.  Warning values start with a code of 1.
;//
;/////////////////////////////////////////////////////////////////////////
;

MessageId=0x0001 Facility=System Severity=Warning SymbolicName=STATUS_GUARD_PAGE_VIOLATION     ;// winnt
Language=English
{EXCEPTION}
Guard Page Exception
A page of memory that marks the end of a data structure, such as a stack
or an array, has been accessed.
.


MessageId=0x0002 Facility=System Severity=Warning SymbolicName=STATUS_DATATYPE_MISALIGNMENT    ;// winnt
Language=English
{EXCEPTION}
Alignment Fault
A datatype misalignment was detected in a load or store instruction.
.


MessageId=0x0003 Facility=System Severity=Warning SymbolicName=STATUS_BREAKPOINT               ;// winnt
Language=English
{EXCEPTION}
Breakpoint
A breakpoint has been reached.
.


MessageId=0x0004 Facility=System Severity=Warning SymbolicName=STATUS_SINGLE_STEP              ;// winnt
Language=English
{EXCEPTION}
Single Step
A single step or trace operation has just been completed.
.


MessageId=0x0005 Facility=System Severity=Warning SymbolicName=STATUS_BUFFER_OVERFLOW
Language=English
{Buffer Overflow}
The data was too large to fit into the specified buffer.
.


MessageId=0x0006 Facility=System Severity=Warning SymbolicName=STATUS_NO_MORE_FILES
Language=English
{No More Files}
No more files were found which match the file specification.
.


MessageId=0x0007 Facility=System Severity=Warning SymbolicName=STATUS_WAKE_SYSTEM_DEBUGGER
Language=English
{Kernel Debugger Awakened}
the system debugger was awakened by an interrupt.
.



MessageId=0x000A Facility=System Severity=Warning SymbolicName=STATUS_HANDLES_CLOSED
Language=English
{Handles Closed}
Handles to objects have been automatically closed as a result of the
requested operation.
.


MessageId=0x000B Facility=System Severity=Warning SymbolicName=STATUS_NO_INHERITANCE
Language=English
{Non-Inheritable ACL}
An access control list (ACL) contains no components that can be inherited.
.


MessageId=0x000C Facility=System Severity=Warning SymbolicName=STATUS_GUID_SUBSTITUTION_MADE
Language=English
{GUID Substitution}
During the translation of a global identifier (GUID) to a Windows NT
security ID (SID), no administratively-defined GUID prefix was found.
A substitute prefix was used, which will not compromise system security.
However, this may provide a more restrictive access than intended.
.


MessageId=0x000D Facility=System Severity=Warning SymbolicName=STATUS_PARTIAL_COPY
Language=English
{Partial Copy}
Due to protection conflicts not all the requested bytes could be
copied.
.


MessageId=0x000E Facility=System Severity=Warning SymbolicName=STATUS_DEVICE_PAPER_EMPTY
Language=English
{Out of Paper}
The printer is out of paper.
.


MessageId=0x000F Facility=System Severity=Warning SymbolicName=STATUS_DEVICE_POWERED_OFF
Language=English
{Device Power Is Off}
The printer power has been turned off.
.


MessageId=0x0010 Facility=System Severity=Warning SymbolicName=STATUS_DEVICE_OFF_LINE
Language=English
{Device Offline}
The printer has been taken offline.
.


MessageId=0x0011 Facility=System Severity=Warning SymbolicName=STATUS_DEVICE_BUSY
Language=English
{Device Busy}
The device is currently busy.
.


MessageId=0x0012 Facility=System Severity=Warning SymbolicName=STATUS_NO_MORE_EAS
Language=English
{No More EAs}
No more extended attributes (EAs) were found for the file.
.


MessageId=0x0013 Facility=System Severity=Warning SymbolicName=STATUS_INVALID_EA_NAME
Language=English
{Illegal EA}
The specified extended attribute (EA) name contains at least one illegal
character.
.


MessageId=0x0014 Facility=System Severity=Warning SymbolicName=STATUS_EA_LIST_INCONSISTENT
Language=English
{Inconsistent EA List}
The extended attribute (EA) list is inconsistent.
.


MessageId=0x0015 Facility=System Severity=Warning SymbolicName=STATUS_INVALID_EA_FLAG
Language=English
{Invalid EA Flag}
An invalid extended attribute (EA) flag was set.
.


MessageId=0x0016 Facility=System Severity=Warning SymbolicName=STATUS_VERIFY_REQUIRED
Language=English
{Verifying Disk}
The media has changed and a verify operation is in progress so no
reads or writes may be performed to the device, except those used in
the verify operation.
.


MessageId=0x0017 Facility=System Severity=Warning SymbolicName=STATUS_EXTRANEOUS_INFORMATION
Language=English
{Too Much Information}
The specified access control list (ACL) contained more information than
was expected.
.



MessageId=0x0018 Facility=System Severity=Warning SymbolicName=STATUS_RXACT_COMMIT_NECESSARY
Language=English
This warning level status indicates that the transaction state already
exists for the registry sub-tree, but that a transaction commit was
previously aborted.  The commit has NOT been completed, but has not been
rolled back either (so it may still be committed if desired).
This status value is returned by the runtime library (RTL) registry
transaction package (RXact).
.


MessageId=0x001A Facility=System Severity=Warning SymbolicName=STATUS_NO_MORE_ENTRIES
Language=English
{No More Entries}
No more entries are available from an enumeration operation.
.

MessageId=0x001B Facility=System Severity=Warning SymbolicName=STATUS_FILEMARK_DETECTED
Language=English
{Filemark Found}
A filemark was detected.
.

MessageId=0x001C Facility=System Severity=Warning SymbolicName=STATUS_MEDIA_CHANGED
Language=English
{Media Changed}
The media may have changed.
.

MessageId=0x001D Facility=System Severity=Warning SymbolicName=STATUS_BUS_RESET
Language=English
{I/O Bus Reset}
An I/O bus reset was detected.
.

MessageId=0x001E Facility=System Severity=Warning SymbolicName=STATUS_END_OF_MEDIA
Language=English
{End of Media}
The end of the media was encountered.
.

MessageId=0x001F Facility=System Severity=Warning SymbolicName=STATUS_BEGINNING_OF_MEDIA
Language=English
Beginning of tape or partition has been detected.
.

MessageId=0x0020 Facility=System Severity=Warning SymbolicName=STATUS_MEDIA_CHECK
Language=English
{Media Changed}
The media may have changed.
.

MessageId=0x0021 Facility=System Severity=Warning SymbolicName=STATUS_SETMARK_DETECTED
Language=English
A tape access reached a setmark.
.

MessageId=0x0022 Facility=System Severity=Warning SymbolicName=STATUS_NO_DATA_DETECTED
Language=English
During a tape access, the end of the data written is reached.
.

MessageId=0x0023 Facility=System Severity=Warning SymbolicName=STATUS_REDIRECTOR_HAS_OPEN_HANDLES
Language=English
The redirector is in use and cannot be unloaded.
.

MessageId=0x0024 Facility=System Severity=Warning SymbolicName=STATUS_SERVER_HAS_OPEN_HANDLES
Language=English
The server is in use and cannot be unloaded.
.

MessageId=0x0025 Facility=System Severity=Warning SymbolicName=STATUS_ALREADY_DISCONNECTED
Language=English
The specified connection has already been disconnected.
.

MessageId=0x0026 Facility=System Severity=Warning SymbolicName=STATUS_LONGJUMP
Language=English
A long jump has been executed.
.

;
;

;/////////////////////////////////////////////////////////////////////////
;//
;//  Standard Error values
;//
;/////////////////////////////////////////////////////////////////////////
;

MessageId=0x0001 Facility=System Severity=Error SymbolicName=STATUS_UNSUCCESSFUL
Language=English
{Operation Failed}
The requested operation was unsuccessful.
.


MessageId=0x0002 Facility=System Severity=Error SymbolicName=STATUS_NOT_IMPLEMENTED
Language=English
{Not Implemented}
The requested operation is not implemented.
.


MessageId=0x0003 Facility=System Severity=Error SymbolicName=STATUS_INVALID_INFO_CLASS ;// ntsubauth
Language=English
{Invalid Parameter}
The specified information class is not a valid information class for
the specified object.
.


MessageId=0x0004 Facility=System Severity=Error SymbolicName=STATUS_INFO_LENGTH_MISMATCH
Language=English
The specified information record length does not match the length
required for the specified information class.
.


MessageId=0x0005 Facility=System Severity=Error SymbolicName=STATUS_ACCESS_VIOLATION         ;// winnt ntsubauth
Language=English
The instruction at "0x%08lx" referenced memory at "0x%08lx". The memory
could not be "%s".
.

MessageId=0x0006 Facility=System Severity=Error SymbolicName=STATUS_IN_PAGE_ERROR            ;// winnt
Language=English
The instruction at "0x%08lx" referenced memory at "0x%08lx". The required
data was not placed into memory because of an I/O error status of "0x%08lx".
.


MessageId=0x0007 Facility=System Severity=Error SymbolicName=STATUS_PAGEFILE_QUOTA
Language=English
The pagefile quota for the process has been exhausted.
.


MessageId=0x0008 Facility=System Severity=Error SymbolicName=STATUS_INVALID_HANDLE           ;// winnt
Language=English
An invalid HANDLE was specified.
.


MessageId=0x0009 Facility=System Severity=Error SymbolicName=STATUS_BAD_INITIAL_STACK
Language=English
An invalid initial stack was specified in a call to NtCreateThread.
.


MessageId=0x000A Facility=System Severity=Error SymbolicName=STATUS_BAD_INITIAL_PC
Language=English
An invalid initial start address was specified in a call to NtCreateThread.
.


MessageId=0x000B Facility=System Severity=Error SymbolicName=STATUS_INVALID_CID
Language=English
An invalid Client ID was specified.
.


MessageId=0x000C Facility=System Severity=Error SymbolicName=STATUS_TIMER_NOT_CANCELED
Language=English
An attempt was made to cancel or set a timer that has an associated APC
and the subject thread is not the thread that originally set the timer
with an associated APC routine.
.


MessageId=0x000D Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER
Language=English
An invalid parameter was passed to a service or function.
.


MessageId=0x000E Facility=System Severity=Error SymbolicName=STATUS_NO_SUCH_DEVICE
Language=English
A device which does not exist was specified.
.


MessageId=0x000F Facility=System Severity=Error SymbolicName=STATUS_NO_SUCH_FILE
Language=English
{File Not Found}
The file %s does not exist.
.


MessageId=0x0010 Facility=System Severity=Error SymbolicName=STATUS_INVALID_DEVICE_REQUEST
Language=English
The specified request is not a valid operation for the target device.
.


MessageId=0x0011 Facility=System Severity=Error SymbolicName=STATUS_END_OF_FILE
Language=English
The end-of-file marker has been reached.  There is no valid data in the
file beyond this marker.
.


MessageId=0x0012 Facility=System Severity=Error SymbolicName=STATUS_WRONG_VOLUME
Language=English
{Wrong Volume}
The wrong volume is in the drive.
Please insert volume %s into drive %s.
.


MessageId=0x0013 Facility=System Severity=Error SymbolicName=STATUS_NO_MEDIA_IN_DEVICE
Language=English
{No Disk}
There is no disk in the drive.
Please insert a disk into drive %s.
.


MessageId=0x0014 Facility=System Severity=Error SymbolicName=STATUS_UNRECOGNIZED_MEDIA
Language=English
{Unknown Disk Format}
The disk in drive %s is not formatted properly.
Please check the disk, and reformat if necessary.
.


MessageId=0x0015 Facility=System Severity=Error SymbolicName=STATUS_NONEXISTENT_SECTOR
Language=English
{Sector Not Found}
The specified sector does not exist.
.


MessageId=0x0016 Facility=System Severity=Error SymbolicName=STATUS_MORE_PROCESSING_REQUIRED
Language=English
{Still Busy}
The specified I/O request packet (IRP) cannot be disposed of because the
I/O operation is not complete.
.


MessageId=0x0017 Facility=System Severity=Error SymbolicName=STATUS_NO_MEMORY ;// winnt
Language=English
{Not Enough Quota}
Not enough virtual memory or paging file quota is available to complete
the specified operation.
.


MessageId=0x0018 Facility=System Severity=Error SymbolicName=STATUS_CONFLICTING_ADDRESSES
Language=English
{Conflicting Address Range}
The specified address range conflicts with the address space.
.


MessageId=0x0019 Facility=System Severity=Error SymbolicName=STATUS_NOT_MAPPED_VIEW
Language=English
Address range to unmap is not a mapped view.
.


MessageId=0x001A Facility=System Severity=Error SymbolicName=STATUS_UNABLE_TO_FREE_VM
Language=English
Virtual memory cannot be freed.
.


MessageId=0x001B Facility=System Severity=Error SymbolicName=STATUS_UNABLE_TO_DELETE_SECTION
Language=English
Specified section cannot be deleted.
.


MessageId=0x001C Facility=System Severity=Error SymbolicName=STATUS_INVALID_SYSTEM_SERVICE
Language=English
An invalid system service was specified in a system service call.
.


MessageId=0x001D Facility=System Severity=Error SymbolicName=STATUS_ILLEGAL_INSTRUCTION ;// winnt
Language=English
{EXCEPTION}
Illegal Instruction
An attempt was made to execute an illegal instruction.
.


MessageId=0x001E Facility=System Severity=Error SymbolicName=STATUS_INVALID_LOCK_SEQUENCE
Language=English
{Invalid Lock Sequence}
An attempt was made to execute an invalid lock sequence.
.


MessageId=0x001F Facility=System Severity=Error SymbolicName=STATUS_INVALID_VIEW_SIZE
Language=English
{Invalid Mapping}
An attempt was made to create a view for a section which is bigger
than the section.
.


MessageId=0x0020 Facility=System Severity=Error SymbolicName=STATUS_INVALID_FILE_FOR_SECTION
Language=English
{Bad File}
The attributes of the specified mapping file for a section of memory
cannot be read.
.


MessageId=0x0021 Facility=System Severity=Error SymbolicName=STATUS_ALREADY_COMMITTED
Language=English
{Already Committed}
The specified address range is already committed.
.


MessageId=0x0022 Facility=System Severity=Error SymbolicName=STATUS_ACCESS_DENIED
Language=English
{Access Denied}
A process has requested access to an object, but has not been granted
those access rights.
.


MessageId=0x0023 Facility=System Severity=Error SymbolicName=STATUS_BUFFER_TOO_SMALL
Language=English
{Buffer Too Small}
The buffer is too small to contain the entry.  No information has been
written to the buffer.
.


MessageId=0x0024 Facility=System Severity=Error SymbolicName=STATUS_OBJECT_TYPE_MISMATCH
Language=English
{Wrong Type}
There is a mismatch between the type of object required by the requested
operation and the type of object that is specified in the request.
.


MessageId=0x0025 Facility=System Severity=Error SymbolicName=STATUS_NONCONTINUABLE_EXCEPTION ;// winnt
Language=English
{EXCEPTION}
Cannot Continue
Windows NT cannot continue from this exception.
.


MessageId=0x0026 Facility=System Severity=Error SymbolicName=STATUS_INVALID_DISPOSITION ;// winnt
Language=English
An invalid exception disposition was returned by an exception handler.
.


MessageId=0x0027 Facility=System Severity=Error SymbolicName=STATUS_UNWIND
Language=English
Unwind exception code.
.


MessageId=0x0028 Facility=System Severity=Error SymbolicName=STATUS_BAD_STACK
Language=English
An invalid or unaligned stack was encountered during an unwind operation.
.


MessageId=0x0029 Facility=System Severity=Error SymbolicName=STATUS_INVALID_UNWIND_TARGET
Language=English
An invalid unwind target was encountered during an unwind operation.
.


MessageId=0x002A Facility=System Severity=Error SymbolicName=STATUS_NOT_LOCKED
Language=English
An attempt was made to unlock a page of memory which was not locked.
.


MessageId=0x002B Facility=System Severity=Error SymbolicName=STATUS_PARITY_ERROR
Language=English
Device parity error on I/O operation.
.


MessageId=0x002C Facility=System Severity=Error SymbolicName=STATUS_UNABLE_TO_DECOMMIT_VM
Language=English
An attempt was made to decommit uncommitted virtual memory.
.


MessageId=0x002D Facility=System Severity=Error SymbolicName=STATUS_NOT_COMMITTED
Language=English
An attempt was made to change the attributes on memory that
has not been committed.
.


MessageId=0x002E Facility=System Severity=Error SymbolicName=STATUS_INVALID_PORT_ATTRIBUTES
Language=English
Invalid Object Attributes specified to NtCreatePort or invalid
Port Attributes specified to NtConnectPort
.


MessageId=0x002F Facility=System Severity=Error SymbolicName=STATUS_PORT_MESSAGE_TOO_LONG
Language=English
Length of message passed to NtRequestPort or NtRequestWaitReplyPort
was longer than the maximum message allowed by the port.
.


MessageId=0x0030 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_MIX
Language=English
An invalid combination of parameters was specified.
.


MessageId=0x0031 Facility=System Severity=Error SymbolicName=STATUS_INVALID_QUOTA_LOWER
Language=English
An attempt was made to lower a quota limit below the current usage.
.


MessageId=0x0032 Facility=System Severity=Error SymbolicName=STATUS_DISK_CORRUPT_ERROR
Language=English
{Corrupt Disk}
The file system structure on the disk is corrupt and unusable.
Please run the Chkdsk utility on the volume %s.
.


MessageId=0x0033 Facility=System Severity=Error SymbolicName=STATUS_OBJECT_NAME_INVALID
Language=English
Object Name invalid.
.


MessageId=0x0034 Facility=System Severity=Error SymbolicName=STATUS_OBJECT_NAME_NOT_FOUND
Language=English
Object Name not found.
.


MessageId=0x0035 Facility=System Severity=Error SymbolicName=STATUS_OBJECT_NAME_COLLISION
Language=English
Object Name already exists.
.


MessageId=0x0037 Facility=System Severity=Error SymbolicName=STATUS_PORT_DISCONNECTED
Language=English
Attempt to send a message to a disconnected communication port.
.


MessageId=0x0038 Facility=System Severity=Error SymbolicName=STATUS_DEVICE_ALREADY_ATTACHED
Language=English
An attempt was made to attach to a device that was already attached to
another device.
.


MessageId=0x0039 Facility=System Severity=Error SymbolicName=STATUS_OBJECT_PATH_INVALID
Language=English
Object Path Component was not a directory object.
.


MessageId=0x003A Facility=System Severity=Error SymbolicName=STATUS_OBJECT_PATH_NOT_FOUND
Language=English
{Path Not Found}
The path %s does not exist.
.


MessageId=0x003B Facility=System Severity=Error SymbolicName=STATUS_OBJECT_PATH_SYNTAX_BAD
Language=English
Object Path Component was not a directory object.
.


MessageId=0x003C Facility=System Severity=Error SymbolicName=STATUS_DATA_OVERRUN
Language=English
{Data Overrun}
A data overrun error occurred.
.


MessageId=0x003D Facility=System Severity=Error SymbolicName=STATUS_DATA_LATE_ERROR
Language=English
{Data Late}
A data late error occurred.
.


MessageId=0x003E Facility=System Severity=Error SymbolicName=STATUS_DATA_ERROR
Language=English
{Data Error}
An error in reading or writing data occurred.
.


MessageId=0x003F Facility=System Severity=Error SymbolicName=STATUS_CRC_ERROR
Language=English
{Bad CRC}
A cyclic redundancy check (CRC) checksum error occurred.
.


MessageId=0x0040 Facility=System Severity=Error SymbolicName=STATUS_SECTION_TOO_BIG
Language=English
{Section Too Large}
The specified section is too big to map the file.
.


MessageId=0x0041 Facility=System Severity=Error SymbolicName=STATUS_PORT_CONNECTION_REFUSED
Language=English
The NtConnectPort request is refused.
.


MessageId=0x0042 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PORT_HANDLE
Language=English
The type of port handle is invalid for the operation requested.
.


MessageId=0x0043 Facility=System Severity=Error SymbolicName=STATUS_SHARING_VIOLATION
Language=English
A file cannot be opened because the share access flags are
incompatible.
.


MessageId=0x0044 Facility=System Severity=Error SymbolicName=STATUS_QUOTA_EXCEEDED
Language=English
Insufficient quota exists to complete the operation
.


MessageId=0x0045 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PAGE_PROTECTION
Language=English
The specified page protection was not valid.
.


MessageId=0x0046 Facility=System Severity=Error SymbolicName=STATUS_MUTANT_NOT_OWNED
Language=English
An attempt to release a mutant object was made by a thread that was not the
owner of the mutant object.
.


MessageId=0x0047 Facility=System Severity=Error SymbolicName=STATUS_SEMAPHORE_LIMIT_EXCEEDED
Language=English
An attempt was made to release a semaphore such that its maximum count
would have been exceeded.
.


MessageId=0x0048 Facility=System Severity=Error SymbolicName=STATUS_PORT_ALREADY_SET
Language=English
An attempt to set a processes DebugPort or ExceptionPort was made,
but a port already exists in the process.
.


MessageId=0x0049 Facility=System Severity=Error SymbolicName=STATUS_SECTION_NOT_IMAGE
Language=English
An attempt was made to query image information on a section
which does not map an image.
.


MessageId=0x004A Facility=System Severity=Error SymbolicName=STATUS_SUSPEND_COUNT_EXCEEDED
Language=English
An attempt was made to suspend a thread whose suspend count
was at its maximum.
.


MessageId=0x004B Facility=System Severity=Error SymbolicName=STATUS_THREAD_IS_TERMINATING
Language=English
An attempt was made to suspend a thread that has begun
termination.
.


MessageId=0x004C Facility=System Severity=Error SymbolicName=STATUS_BAD_WORKING_SET_LIMIT
Language=English
An attempt was made to set the working set limit to an
invalid value (minimum greater than maximum, etc).
.


MessageId=0x004D Facility=System Severity=Error SymbolicName=STATUS_INCOMPATIBLE_FILE_MAP
Language=English
A section was created to map a file which is not compatible
to an already existing section which maps the same file.
.


MessageId=0x004E Facility=System Severity=Error SymbolicName=STATUS_SECTION_PROTECTION
Language=English
A view to a section specifies a protection which is incompatible
with the initial view's protection.
.


MessageId=0x004F Facility=System Severity=Error SymbolicName=STATUS_EAS_NOT_SUPPORTED
Language=English
An operation involving EAs failed because the file system does not
support EAs.
.


MessageId=0x0050 Facility=System Severity=Error SymbolicName=STATUS_EA_TOO_LARGE
Language=English
An EA operation failed because EA set is too large.
.


MessageId=0x0051 Facility=System Severity=Error SymbolicName=STATUS_NONEXISTENT_EA_ENTRY
Language=English
An EA operation failed because the name or EA index is invalid.
.


MessageId=0x0052 Facility=System Severity=Error SymbolicName=STATUS_NO_EAS_ON_FILE
Language=English
The file for which EAs were requested has no EAs.
.


MessageId=0x0053 Facility=System Severity=Error SymbolicName=STATUS_EA_CORRUPT_ERROR
Language=English
The EA is corrupt and non-readable.
.


MessageId=0x0054 Facility=System Severity=Error SymbolicName=STATUS_FILE_LOCK_CONFLICT
Language=English
A requested read/write cannot be granted due to a conflicting file lock.
.


MessageId=0x0055 Facility=System Severity=Error SymbolicName=STATUS_LOCK_NOT_GRANTED
Language=English
A requested file lock cannot be granted due to other existing locks.
.


MessageId=0x0056 Facility=System Severity=Error SymbolicName=STATUS_DELETE_PENDING
Language=English
A non close operation has been requested of a file object with a
delete pending.
.


MessageId=0x0057 Facility=System Severity=Error SymbolicName=STATUS_CTL_FILE_NOT_SUPPORTED
Language=English
An attempt was made to set the control attribute on a file.  This
attribute is not supported in the target file system.
.


MessageId=0x0058 Facility=System Severity=Error SymbolicName=STATUS_UNKNOWN_REVISION
Language=English
Indicates a revision number encountered or specified is not one
known by the service.  It may be a more recent revision than the
service is aware of.
.


MessageId=0x0059 Facility=System Severity=Error SymbolicName=STATUS_REVISION_MISMATCH
Language=English
Indicates two revision levels are incompatible.
.


MessageId=0x005A Facility=System Severity=Error SymbolicName=STATUS_INVALID_OWNER
Language=English
Indicates a particular Security ID may not be assigned as the
owner of an object.
.


MessageId=0x005B Facility=System Severity=Error SymbolicName=STATUS_INVALID_PRIMARY_GROUP
Language=English
Indicates a particular Security ID may not be assigned as the
primary group of an object.
.


MessageId=0x005C Facility=System Severity=Error SymbolicName=STATUS_NO_IMPERSONATION_TOKEN
Language=English
An attempt has been made to operate on an impersonation token
by a thread that is not currently impersonating a client.
.


MessageId=0x005D Facility=System Severity=Error SymbolicName=STATUS_CANT_DISABLE_MANDATORY
Language=English
A mandatory group may not be disabled.
.


MessageId=0x005E Facility=System Severity=Error SymbolicName=STATUS_NO_LOGON_SERVERS
Language=English
There are currently no logon servers available to service the logon
request.
.


MessageId=0x005F Facility=System Severity=Error SymbolicName=STATUS_NO_SUCH_LOGON_SESSION
Language=English
 A specified logon session does not exist.  It may already have
 been terminated.
.


MessageId=0x0060 Facility=System Severity=Error SymbolicName=STATUS_NO_SUCH_PRIVILEGE
Language=English
 A specified privilege does not exist.
.


MessageId=0x0061 Facility=System Severity=Error SymbolicName=STATUS_PRIVILEGE_NOT_HELD
Language=English
 A required privilege is not held by the client.
.


MessageId=0x0062 Facility=System Severity=Error SymbolicName=STATUS_INVALID_ACCOUNT_NAME
Language=English
The name provided is not a properly formed account name.
.


MessageId=0x0063 Facility=System Severity=Error SymbolicName=STATUS_USER_EXISTS
Language=English
The specified user already exists.
.


MessageId=0x0064 Facility=System Severity=Error SymbolicName=STATUS_NO_SUCH_USER; // ntsubauth
Language=English
The specified user does not exist.
.


MessageId=0x0065 Facility=System Severity=Error SymbolicName=STATUS_GROUP_EXISTS
Language=English
The specified group already exists.
.


MessageId=0x0066 Facility=System Severity=Error SymbolicName=STATUS_NO_SUCH_GROUP
Language=English
The specified group does not exist.
.


MessageId=0x0067 Facility=System Severity=Error SymbolicName=STATUS_MEMBER_IN_GROUP
Language=English
The specified user account is already in the specified group account.
Also used to indicate a group cannot be deleted because it contains
a member.
.


MessageId=0x0068 Facility=System Severity=Error SymbolicName=STATUS_MEMBER_NOT_IN_GROUP
Language=English
The specified user account is not a member of the specified group account.
.


MessageId=0x0069 Facility=System Severity=Error SymbolicName=STATUS_LAST_ADMIN
Language=English
Indicates the requested operation would disable or delete the last
remaining administration account.  This is not allowed to prevent
creating a situation in which the system cannot be administrated.
.


MessageId=0x006A Facility=System Severity=Error SymbolicName=STATUS_WRONG_PASSWORD; // ntsubauth
Language=English
When trying to update a password, this return status indicates that
the value provided as the current password is not correct.
.


MessageId=0x006B Facility=System Severity=Error SymbolicName=STATUS_ILL_FORMED_PASSWORD
Language=English
When trying to update a password, this return status indicates that
the value provided for the new password contains values that are
not allowed in passwords.
.

MessageId=0x006C Facility=System Severity=Error SymbolicName=STATUS_PASSWORD_RESTRICTION; // ntsubauth
Language=English
When trying to update a password, this status indicates that some
password update rule has been violated.  For example, the password
may not meet length criteria.
.


MessageId=0x006D Facility=System Severity=Error SymbolicName=STATUS_LOGON_FAILURE; // ntsubauth
Language=English
The attempted logon is invalid.  This is either due to a bad username
or authentication information.
.

MessageId=0x006E Facility=System Severity=Error SymbolicName=STATUS_ACCOUNT_RESTRICTION; // ntsubauth
Language=English
Indicates a referenced user name and authentication information are
valid, but some user account restriction has prevented successful
authentication (such as time-of-day restrictions).
.


MessageId=0x006F Facility=System Severity=Error SymbolicName=STATUS_INVALID_LOGON_HOURS; // ntsubauth
Language=English
The user account has time restrictions and may not be logged onto
at this time.
.


MessageId=0x0070 Facility=System Severity=Error SymbolicName=STATUS_INVALID_WORKSTATION; // ntsubauth
Language=English
The user account is restricted such that it may not be used to
log on from the source workstation.
.


MessageId=0x0071 Facility=System Severity=Error SymbolicName=STATUS_PASSWORD_EXPIRED; // ntsubauth
Language=English
The user account's password has expired.
.


MessageId=0x0072 Facility=System Severity=Error SymbolicName=STATUS_ACCOUNT_DISABLED; // ntsubauth
Language=English
The referenced account is currently disabled and may not be logged on to.
.


MessageId=0x0073 Facility=System Severity=Error SymbolicName=STATUS_NONE_MAPPED
Language=English
None of the information to be translated has been translated.
.


MessageId=0x0074 Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_LUIDS_REQUESTED
Language=English
The number of LUIDs requested may not be allocated with a single
allocation.
.


MessageId=0x0075 Facility=System Severity=Error SymbolicName=STATUS_LUIDS_EXHAUSTED
Language=English
Indicates there are no more LUIDs to allocate.
.


MessageId=0x0076 Facility=System Severity=Error SymbolicName=STATUS_INVALID_SUB_AUTHORITY
Language=English
Indicates the sub-authority value is invalid for the particular use.
.


MessageId=0x0077 Facility=System Severity=Error SymbolicName=STATUS_INVALID_ACL
Language=English
Indicates the ACL structure is not valid.
.


MessageId=0x0078 Facility=System Severity=Error SymbolicName=STATUS_INVALID_SID
Language=English
Indicates the SID structure is not valid.
.


MessageId=0x0079 Facility=System Severity=Error SymbolicName=STATUS_INVALID_SECURITY_DESCR
Language=English
Indicates the SECURITY_DESCRIPTOR structure is not valid.
.


MessageId=0x007A Facility=System Severity=Error SymbolicName=STATUS_PROCEDURE_NOT_FOUND
Language=English
Indicates the specified procedure address cannot be found in the
DLL.
.


MessageId=0x007B Facility=System Severity=Error SymbolicName=STATUS_INVALID_IMAGE_FORMAT
Language=English
{Bad Image}
The application or DLL %s is not a valid Windows NT image.
Please check this against your installation diskette.
.


MessageId=0x007C Facility=System Severity=Error SymbolicName=STATUS_NO_TOKEN
Language=English
An attempt was made to reference a token that doesn't exist.
This is typically done by referencing the token associated with a thread
when the thread is not impersonating a client.
.


MessageId=0x007D Facility=System Severity=Error SymbolicName=STATUS_BAD_INHERITANCE_ACL
Language=English
Indicates that an attempt to build either an inherited ACL or ACE
was not successful.
This can be caused by a number of things.  One of the more probable
causes is the replacement of a CreatorId with an SID that didn't fit
into the ACE or ACL.
.


MessageId=0x007E Facility=System Severity=Error SymbolicName=STATUS_RANGE_NOT_LOCKED
Language=English
The range specified in NtUnlockFile was not locked.
.


MessageId=0x007F Facility=System Severity=Error SymbolicName=STATUS_DISK_FULL
Language=English
An operation failed because the disk was full.
.


MessageId=0x0080 Facility=System Severity=Error SymbolicName=STATUS_SERVER_DISABLED
Language=English
The GUID allocation server is [already] disabled at the moment.
.


MessageId=0x0081 Facility=System Severity=Error SymbolicName=STATUS_SERVER_NOT_DISABLED
Language=English
The GUID allocation server is [already] enabled at the moment.
.


MessageId=0x0082 Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_GUIDS_REQUESTED
Language=English
Too many GUIDs were requested from the allocation server at once.
.


MessageId=0x0083 Facility=System Severity=Error SymbolicName=STATUS_GUIDS_EXHAUSTED
Language=English
The GUIDs could not be allocated because the Authority Agent was
exhausted.
.


MessageId=0x0084 Facility=System Severity=Error SymbolicName=STATUS_INVALID_ID_AUTHORITY
Language=English
The value provided was an invalid value for an identifier authority.
.


MessageId=0x0085 Facility=System Severity=Error SymbolicName=STATUS_AGENTS_EXHAUSTED
Language=English
There are no more authority agent values available for the given
identifier authority value.
.


MessageId=0x0086 Facility=System Severity=Error SymbolicName=STATUS_INVALID_VOLUME_LABEL
Language=English
An invalid volume label has been specified.
.


MessageId=0x0087 Facility=System Severity=Error SymbolicName=STATUS_SECTION_NOT_EXTENDED
Language=English
A mapped section could not be extended.
.


MessageId=0x0088 Facility=System Severity=Error SymbolicName=STATUS_NOT_MAPPED_DATA
Language=English
Specified section to flush does not map a data file.
.


MessageId=0x0089 Facility=System Severity=Error SymbolicName=STATUS_RESOURCE_DATA_NOT_FOUND
Language=English
Indicates the specified image file did not contain a resource
section.
.


MessageId=0x008A Facility=System Severity=Error SymbolicName=STATUS_RESOURCE_TYPE_NOT_FOUND
Language=English
Indicates the specified resource type cannot be found in the
image file.
.


MessageId=0x008B Facility=System Severity=Error SymbolicName=STATUS_RESOURCE_NAME_NOT_FOUND
Language=English
Indicates the specified resource name cannot be found in the
image file.
.


MessageId=0x008C Facility=System Severity=Error SymbolicName=STATUS_ARRAY_BOUNDS_EXCEEDED ;// winnt
Language=English
{EXCEPTION}
Array bounds exceeded.
.


MessageId=0x008D Facility=System Severity=Error SymbolicName=STATUS_FLOAT_DENORMAL_OPERAND ;// winnt
Language=English
{EXCEPTION}
Floating-point denormal operand.
.


MessageId=0x008E Facility=System Severity=Error SymbolicName=STATUS_FLOAT_DIVIDE_BY_ZERO  ;// winnt
Language=English
{EXCEPTION}
Floating-point division by zero.
.


MessageId=0x008F Facility=System Severity=Error SymbolicName=STATUS_FLOAT_INEXACT_RESULT  ;// winnt
Language=English
{EXCEPTION}
Floating-point inexact result.
.


MessageId=0x0090 Facility=System Severity=Error SymbolicName=STATUS_FLOAT_INVALID_OPERATION ;// winnt
Language=English
{EXCEPTION}
Floating-point invalid operation.
.


MessageId=0x0091 Facility=System Severity=Error SymbolicName=STATUS_FLOAT_OVERFLOW          ;// winnt
Language=English
{EXCEPTION}
Floating-point overflow.
.


MessageId=0x0092 Facility=System Severity=Error SymbolicName=STATUS_FLOAT_STACK_CHECK       ;// winnt
Language=English
{EXCEPTION}
Floating-point stack check.
.


MessageId=0x0093 Facility=System Severity=Error SymbolicName=STATUS_FLOAT_UNDERFLOW         ;// winnt
Language=English
{EXCEPTION}
Floating-point underflow.
.


MessageId=0x0094 Facility=System Severity=Error SymbolicName=STATUS_INTEGER_DIVIDE_BY_ZERO  ;// winnt
Language=English
{EXCEPTION}
Integer division by zero.
.


MessageId=0x0095 Facility=System Severity=Error SymbolicName=STATUS_INTEGER_OVERFLOW        ;// winnt
Language=English
{EXCEPTION}
Integer overflow.
.


MessageId=0x0096 Facility=System Severity=Error SymbolicName=STATUS_PRIVILEGED_INSTRUCTION  ;// winnt
Language=English
{EXCEPTION}
Privileged instruction.
.


MessageId=0x0097 Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_PAGING_FILES
Language=English
An attempt was made to install more paging files than the
system supports.
.


MessageId=0x0098 Facility=System Severity=Error SymbolicName=STATUS_FILE_INVALID
Language=English
The volume for a file has been externally altered such that the
opened file is no longer valid.
.


MessageId=0x0099 Facility=System Severity=Error SymbolicName=STATUS_ALLOTTED_SPACE_EXCEEDED
Language=English
When a block of memory is allotted for future updates, such as the memory
allocated to hold discretionary access control and primary group information,
successive updates may exceed the amount of memory originally allotted.
Since quota may already have been charged to several processes which have
handles to the object, it is not reasonable to alter the size of the
allocated memory.  Instead, a request that requires more memory than has
been allotted must fail and the STATUS_ALLOTED_SPACE_EXCEEDED error returned.
.


MessageId=0x009A Facility=System Severity=Error SymbolicName=STATUS_INSUFFICIENT_RESOURCES; // ntsubauth
Language=English
Insufficient system resources exist to complete the API.
.


MessageId=0x009B Facility=System Severity=Error SymbolicName=STATUS_DFS_EXIT_PATH_FOUND
Language=English
An attempt has been made to open a DFS exit path control file.
.


MessageId=0x009C Facility=System Severity=Error SymbolicName=STATUS_DEVICE_DATA_ERROR
Language=English
.


MessageId=0x009D Facility=System Severity=Error SymbolicName=STATUS_DEVICE_NOT_CONNECTED
Language=English
.


MessageId=0x009E Facility=System Severity=Error SymbolicName=STATUS_DEVICE_POWER_FAILURE
Language=English
.


MessageId=0x009F Facility=System Severity=Error SymbolicName=STATUS_FREE_VM_NOT_AT_BASE
Language=English
Virtual memory cannot be freed as base address is not the base
of the region and a region size of zero was specified.
.


MessageId=0x00A0 Facility=System Severity=Error SymbolicName=STATUS_MEMORY_NOT_ALLOCATED
Language=English
An attempt was made to free virtual memory which is not allocated.
.


MessageId=0x00A1 Facility=System Severity=Error SymbolicName=STATUS_WORKING_SET_QUOTA
Language=English
The working set is not big enough to allow the requested pages to be
locked.
.


MessageId=0x00A2 Facility=System Severity=Error SymbolicName=STATUS_MEDIA_WRITE_PROTECTED
Language=English
{Write Protect Error}
The disk cannot be written to because it is write protected.
Please remove the write protection from the volume %s in drive %s.
.


MessageId=0x00A3 Facility=System Severity=Error SymbolicName=STATUS_DEVICE_NOT_READY
Language=English
{Drive Not Ready}
The drive is not ready for use; its door may be open.
Please check drive %s and make sure that a disk is inserted
and that the drive door is closed.
.


MessageId=0x00A4 Facility=System Severity=Error SymbolicName=STATUS_INVALID_GROUP_ATTRIBUTES
Language=English
The specified attributes are invalid, or incompatible with the
attributes for the group as a whole.
.


MessageId=0x00A5 Facility=System Severity=Error SymbolicName=STATUS_BAD_IMPERSONATION_LEVEL
Language=English
A specified impersonation level is invalid.
Also used to indicate a required impersonation level was not provided.
.


MessageId=0x00A6 Facility=System Severity=Error SymbolicName=STATUS_CANT_OPEN_ANONYMOUS
Language=English
An attempt was made to open an Anonymous level token.
Anonymous tokens may not be opened.
.


MessageId=0x00A7 Facility=System Severity=Error SymbolicName=STATUS_BAD_VALIDATION_CLASS
Language=English
The validation information class requested was invalid.
.


MessageId=0x00A8 Facility=System Severity=Error SymbolicName=STATUS_BAD_TOKEN_TYPE
Language=English
The type of a token object is inappropriate for its attempted use.
.


MessageId=0x00A9 Facility=System Severity=Error SymbolicName=STATUS_BAD_MASTER_BOOT_RECORD
Language=English
The type of a token object is inappropriate for its attempted use.
.


MessageId=0x00AA Facility=System Severity=Error SymbolicName=STATUS_INSTRUCTION_MISALIGNMENT
Language=English
An attempt was made to execute an instruction at an unaligned address
and the host system does not support unaligned instruction references.
.


MessageId=0x00AB Facility=System Severity=Error SymbolicName=STATUS_INSTANCE_NOT_AVAILABLE
Language=English
The maximum named pipe instance count has been reached.
.


MessageId=0x00AC Facility=System Severity=Error SymbolicName=STATUS_PIPE_NOT_AVAILABLE
Language=English
An instance of a named pipe cannot be found in the listening state.
.


MessageId=0x00AD Facility=System Severity=Error SymbolicName=STATUS_INVALID_PIPE_STATE
Language=English
The named pipe is not in the connected or closing state.
.


MessageId=0x00AE Facility=System Severity=Error SymbolicName=STATUS_PIPE_BUSY
Language=English
The specified pipe is set to complete operations and there are current
I/O operations queued so it cannot be changed to queue operations.
.


MessageId=0x00AF Facility=System Severity=Error SymbolicName=STATUS_ILLEGAL_FUNCTION
Language=English
The specified handle is not open to the server end of the named pipe.
.


MessageId=0x00B0 Facility=System Severity=Error SymbolicName=STATUS_PIPE_DISCONNECTED
Language=English
The specified named pipe is in the disconnected state.
.


MessageId=0x00B1 Facility=System Severity=Error SymbolicName=STATUS_PIPE_CLOSING
Language=English
The specified named pipe is in the closing state.
.


MessageId=0x00B2 Facility=System Severity=Error SymbolicName=STATUS_PIPE_CONNECTED
Language=English
The specified named pipe is in the connected state.
.


MessageId=0x00B3 Facility=System Severity=Error SymbolicName=STATUS_PIPE_LISTENING
Language=English
The specified named pipe is in the listening state.
.


MessageId=0x00B4 Facility=System Severity=Error SymbolicName=STATUS_INVALID_READ_MODE
Language=English
The specified named pipe is not in message mode.
.


MessageId=0x00B5 Facility=System Severity=Error SymbolicName=STATUS_IO_TIMEOUT
Language=English
{Device Timeout}
The specified I/O operation on %s was not completed before the time-out
period expired.
.


MessageId=0x00B6 Facility=System Severity=Error SymbolicName=STATUS_FILE_FORCED_CLOSED
Language=English
The specified file has been closed by another process.
.


MessageId=0x00B7 Facility=System Severity=Error SymbolicName=STATUS_PROFILING_NOT_STARTED
Language=English
Profiling not started.
.


MessageId=0x00B8 Facility=System Severity=Error SymbolicName=STATUS_PROFILING_NOT_STOPPED
Language=English
Profiling not stopped.
.


MessageId=0x00B9 Facility=System Severity=Error SymbolicName=STATUS_COULD_NOT_INTERPRET
Language=English
The passed ACL did not contain the minimum required information.
.


MessageId=0x00BA Facility=System Severity=Error SymbolicName=STATUS_FILE_IS_A_DIRECTORY
Language=English
The file that was specified as a target is a directory and the caller
specified that it could be anything but a directory.
.



;//
;// Network specific errors.
;//
;//

MessageId=0x00BB Facility=System Severity=Error SymbolicName=STATUS_NOT_SUPPORTED
Language=English
The network request is not supported.
.


MessageId=0x00BC Facility=System Severity=Error SymbolicName=STATUS_REMOTE_NOT_LISTENING
Language=English
This remote computer is not listening.
.


MessageId=0x00BD Facility=System Severity=Error SymbolicName=STATUS_DUPLICATE_NAME
Language=English
A duplicate name exists on the network.
.


MessageId=0x00BE Facility=System Severity=Error SymbolicName=STATUS_BAD_NETWORK_PATH
Language=English
The network path cannot be located.
.


MessageId=0x00BF Facility=System Severity=Error SymbolicName=STATUS_NETWORK_BUSY
Language=English
The network is busy.
.


MessageId=0x00C0 Facility=System Severity=Error SymbolicName=STATUS_DEVICE_DOES_NOT_EXIST
Language=English
This device does not exist.
.


MessageId=0x00C1 Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_COMMANDS
Language=English
The network BIOS command limit has been reached.
.


MessageId=0x00C2 Facility=System Severity=Error SymbolicName=STATUS_ADAPTER_HARDWARE_ERROR
Language=English
An I/O adapter hardware error has occurred.
.


MessageId=0x00C3 Facility=System Severity=Error SymbolicName=STATUS_INVALID_NETWORK_RESPONSE
Language=English
The network responded incorrectly.
.


MessageId=0x00C4 Facility=System Severity=Error SymbolicName=STATUS_UNEXPECTED_NETWORK_ERROR
Language=English
An unexpected network error occurred.
.


MessageId=0x00C5 Facility=System Severity=Error SymbolicName=STATUS_BAD_REMOTE_ADAPTER
Language=English
The remote adapter is not compatible.
.


MessageId=0x00C6 Facility=System Severity=Error SymbolicName=STATUS_PRINT_QUEUE_FULL
Language=English
The printer queue is full.
.


MessageId=0x00C7 Facility=System Severity=Error SymbolicName=STATUS_NO_SPOOL_SPACE
Language=English
Space to store the file waiting to be printed is not available on the server.
.


MessageId=0x00C8 Facility=System Severity=Error SymbolicName=STATUS_PRINT_CANCELLED
Language=English
The requested print file has been canceled.
.


MessageId=0x00C9 Facility=System Severity=Error SymbolicName=STATUS_NETWORK_NAME_DELETED
Language=English
The network name was deleted.
.


MessageId=0x00CA Facility=System Severity=Error SymbolicName=STATUS_NETWORK_ACCESS_DENIED
Language=English
Network access is denied.
.


MessageId=0x00CB Facility=System Severity=Error SymbolicName=STATUS_BAD_DEVICE_TYPE
Language=English
{Incorrect Network Resource Type}
The specified device type (LPT, for example) conflicts with the actual
device type on the remote resource.
.


MessageId=0x00CC Facility=System Severity=Error SymbolicName=STATUS_BAD_NETWORK_NAME
Language=English
{Network Name Not Found}
The specified share name cannot be found on the remote server.
.


MessageId=0x00CD Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_NAMES
Language=English
The name limit for the local computer network adapter card was exceeded.
.


MessageId=0x00CE Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_SESSIONS
Language=English
The network BIOS session limit was exceeded.
.


MessageId=0x00CF Facility=System Severity=Error SymbolicName=STATUS_SHARING_PAUSED
Language=English
File sharing has been temporarily paused.
.


MessageId=0x00D0 Facility=System Severity=Error SymbolicName=STATUS_REQUEST_NOT_ACCEPTED
Language=English
No more connections can be made to this remote computer at this time
because there are already as many connections as the computer can accept.
.


MessageId=0x00D1 Facility=System Severity=Error SymbolicName=STATUS_REDIRECTOR_PAUSED
Language=English
Print or disk redirection is temporarily paused.
.


MessageId=0x00D2 Facility=System Severity=Error SymbolicName=STATUS_NET_WRITE_FAULT
Language=English
A network data fault occurred.
.


MessageId=0x00D3 Facility=System Severity=Error SymbolicName=STATUS_PROFILING_AT_LIMIT
Language=English
The number of active profiling objects is at the maximum and no more may be started.
.


MessageId=0x00D4 Facility=System Severity=Error SymbolicName=STATUS_NOT_SAME_DEVICE
Language=English
{Incorrect Volume}
The target file of a rename request is located on a different device
than the source of the rename request.
.


MessageId=0x00D5 Facility=System Severity=Error SymbolicName=STATUS_FILE_RENAMED
Language=English
The file specified has been renamed and thus cannot be modified.
.


MessageId=0x00D6 Facility=System Severity=Error SymbolicName=STATUS_VIRTUAL_CIRCUIT_CLOSED
Language=English
{Network Request Timeout}
The session with a remote server has been disconnected because the time-out
interval for a request has expired.
.


MessageId=0x00D7 Facility=System Severity=Error SymbolicName=STATUS_NO_SECURITY_ON_OBJECT
Language=English
Indicates an attempt was made to operate on the security of
an object that does not have security associated with it.
.


MessageId=0x00D8 Facility=System Severity=Error SymbolicName=STATUS_CANT_WAIT
Language=English
Used to indicate that an operation cannot continue without blocking
for I/O.
.


MessageId=0x00D9 Facility=System Severity=Error SymbolicName=STATUS_PIPE_EMPTY
Language=English
Used to indicate that a read operation was done on an empty pipe.
.


MessageId=0x00DA Facility=System Severity=Error SymbolicName=STATUS_CANT_ACCESS_DOMAIN_INFO
Language=English
Indicates a Windows NT Server could not be contacted or that
objects within the domain are protected such that necessary
information could not be retrieved.
.


MessageId=0x00DB Facility=System Severity=Error SymbolicName=STATUS_CANT_TERMINATE_SELF
Language=English
Indicates that a thread attempted to terminate itself by default
(called NtTerminateThread with NULL) and it was the last thread
in the current process.
.


MessageId=0x00DC Facility=System Severity=Error SymbolicName=STATUS_INVALID_SERVER_STATE
Language=English
Indicates the Sam Server was in the wrong state to
perform the desired operation.
.


MessageId=0x00DD Facility=System Severity=Error SymbolicName=STATUS_INVALID_DOMAIN_STATE
Language=English
Indicates the Domain was in the wrong state to
perform the desired operation.
.


MessageId=0x00DE Facility=System Severity=Error SymbolicName=STATUS_INVALID_DOMAIN_ROLE
Language=English
This operation is only allowed for the Primary Domain Controller of the domain.
.


MessageId=0x00DF Facility=System Severity=Error SymbolicName=STATUS_NO_SUCH_DOMAIN
Language=English
The specified Domain did not exist.
.


MessageId=0x00E0 Facility=System Severity=Error SymbolicName=STATUS_DOMAIN_EXISTS
Language=English
The specified Domain already exists.
.


MessageId=0x00E1 Facility=System Severity=Error SymbolicName=STATUS_DOMAIN_LIMIT_EXCEEDED
Language=English
An attempt was made to exceed the limit on the number of domains per server
for this release.
.


MessageId=0x00E2 Facility=System Severity=Error SymbolicName=STATUS_OPLOCK_NOT_GRANTED
Language=English
Error status returned when oplock request is denied.
.


MessageId=0x00E3 Facility=System Severity=Error SymbolicName=STATUS_INVALID_OPLOCK_PROTOCOL
Language=English
Error status returned when an invalid oplock acknowledgment
is received by a file system.
.


MessageId=0x00E4 Facility=System Severity=Error SymbolicName=STATUS_INTERNAL_DB_CORRUPTION
Language=English
This error indicates that the requested operation cannot be
completed due to a catastrophic media failure or on-disk data
structure corruption.
.


MessageId=0x00E5 Facility=System Severity=Error SymbolicName=STATUS_INTERNAL_ERROR
Language=English
This error indicates that the SAM server has encountered an
internal consistency error in its database.  This catastrophic
failure will prevent further operation of SAM.
.


MessageId=0x00E6 Facility=System Severity=Error SymbolicName=STATUS_GENERIC_NOT_MAPPED
Language=English
Indicates generic access types were contained in an access mask
which should already be mapped to non-generic access types.
.


MessageId=0x00E7 Facility=System Severity=Error SymbolicName=STATUS_BAD_DESCRIPTOR_FORMAT
Language=English
Indicates a security descriptor is not in the necessary format (absolute
or self-relative).
.


;//
;// Status codes raised by the Cache Manager which must be considered as
;// "expected" by its callers.
;//


MessageId=0x00E8 Facility=System Severity=Error SymbolicName=STATUS_INVALID_USER_BUFFER
Language=English
An access to a user buffer failed at an "expected" point in time.
This code is defined since the caller does not want to accept
STATUS_ACCESS_VIOLATION in its filter.
.


MessageId=0x00E9 Facility=System Severity=Error SymbolicName=STATUS_UNEXPECTED_IO_ERROR
Language=English
If an I/O error is returned which is not defined in the standard FsRtl filter,
it is converted to the following error which is guaranteed to be in the
filter.  In this case information is lost, however, the filter correctly
handles the exception.
.


MessageId=0x00EA Facility=System Severity=Error SymbolicName=STATUS_UNEXPECTED_MM_CREATE_ERR
Language=English
If an MM error is returned which is not defined in the standard FsRtl filter,
it is converted to one of the following errors which is guaranteed to be in the
filter.  In this case information is lost, however, the filter correctly
handles the exception.
.


MessageId=0x00EB Facility=System Severity=Error SymbolicName=STATUS_UNEXPECTED_MM_MAP_ERROR
Language=English
If an MM error is returned which is not defined in the standard FsRtl filter,
it is converted to one of the following errors which is guaranteed to be in the
filter.  In this case information is lost, however, the filter correctly
handles the exception.
.


MessageId=0x00EC Facility=System Severity=Error SymbolicName=STATUS_UNEXPECTED_MM_EXTEND_ERR
Language=English
If an MM error is returned which is not defined in the standard FsRtl filter,
it is converted to one of the following errors which is guaranteed to be in the
filter.  In this case information is lost, however, the filter correctly
handles the exception.
.


MessageId=0x00ED Facility=System Severity=Error SymbolicName=STATUS_NOT_LOGON_PROCESS
Language=English
The requested action is restricted for use by logon processes
only.  The calling process has not registered as a logon process.
.


MessageId=0x00EE Facility=System Severity=Error SymbolicName=STATUS_LOGON_SESSION_EXISTS
Language=English
An attempt has been made to start a new session manager or
LSA logon session with an ID that is already in use.
.


MessageId=0x00EF Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_1
Language=English
An invalid parameter was passed to a service or function as
the first argument.
.


MessageId=0x00F0 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_2
Language=English
An invalid parameter was passed to a service or function as
the second argument.
.


MessageId=0x00F1 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_3
Language=English
An invalid parameter was passed to a service or function as
the third argument.
.


MessageId=0x00F2 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_4
Language=English
An invalid parameter was passed to a service or function as
the fourth argument.
.


MessageId=0x00F3 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_5
Language=English
An invalid parameter was passed to a service or function as
the fifth argument.
.


MessageId=0x00F4 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_6
Language=English
An invalid parameter was passed to a service or function as
the sixth argument.
.


MessageId=0x00F5 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_7
Language=English
An invalid parameter was passed to a service or function as
the seventh argument.
.


MessageId=0x00F6 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_8
Language=English
An invalid parameter was passed to a service or function as
the eighth argument.
.


MessageId=0x00F7 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_9
Language=English
An invalid parameter was passed to a service or function as
the ninth argument.
.


MessageId=0x00F8 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_10
Language=English
An invalid parameter was passed to a service or function as
the tenth argument.
.


MessageId=0x00F9 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_11
Language=English
An invalid parameter was passed to a service or function as
the eleventh argument.
.


MessageId=0x00FA Facility=System Severity=Error SymbolicName=STATUS_INVALID_PARAMETER_12
Language=English
An invalid parameter was passed to a service or function as
the twelfth argument.
.


MessageId=0x00FB Facility=System Severity=Error SymbolicName=STATUS_REDIRECTOR_NOT_STARTED
Language=English
 An attempt was made to access a network file, but the network software
 was not yet started.
.


MessageId=0x00FC Facility=System Severity=Error SymbolicName=STATUS_REDIRECTOR_STARTED
Language=English
 An attempt was made to start the redirector, but the redirector
 has already been started.
.


MessageId=0x00FD Facility=System Severity=Error SymbolicName=STATUS_STACK_OVERFLOW ;// winnt
Language=English
A new guard page for the stack cannot be created.
.


MessageId=0x00FE Facility=System Severity=Error SymbolicName=STATUS_NO_SUCH_PACKAGE
Language=English
A specified authentication package is unknown.
.


MessageId=0x00FF Facility=System Severity=Error SymbolicName=STATUS_BAD_FUNCTION_TABLE
Language=English
A malformed function table was encountered during an unwind operation.
.


MessageId=0x0100 Facility=System Severity=Error SymbolicName=STATUS_VARIABLE_NOT_FOUND
Language=English
Indicates the specified environment variable name was not found
in the specified environment block.
.


MessageId=0x0101 Facility=System Severity=Error SymbolicName=STATUS_DIRECTORY_NOT_EMPTY
Language=English
Indicates that the directory trying to be deleted is not empty.
.


MessageId=0x0102 Facility=System Severity=Error SymbolicName=STATUS_FILE_CORRUPT_ERROR
Language=English
{Corrupt File}
The file or directory %s is corrupt and unreadable.
Please run the Chkdsk utility.
.


MessageId=0x0103 Facility=System Severity=Error SymbolicName=STATUS_NOT_A_DIRECTORY
Language=English
A requested opened file is not a directory.
.


MessageId=0x0104 Facility=System Severity=Error SymbolicName=STATUS_BAD_LOGON_SESSION_STATE
Language=English
The logon session is not in a state that is consistent with the
requested operation.
.


MessageId=0x0105 Facility=System Severity=Error SymbolicName=STATUS_LOGON_SESSION_COLLISION
Language=English
An internal LSA error has occurred.  An authentication package has
requested the creation of a Logon Session but the ID of an already
existing Logon Session has been specified.
.


MessageId=0x0106 Facility=System Severity=Error SymbolicName=STATUS_NAME_TOO_LONG
Language=English
A specified name string is too long for its intended use.
.


MessageId=0x0107 Facility=System Severity=Error SymbolicName=STATUS_FILES_OPEN
Language=English
The user attempted to force close the files on a redirected
drive, but there were opened files on the drive, and the user
did not specify a sufficient level of force.
.


MessageId=0x0108 Facility=System Severity=Error SymbolicName=STATUS_CONNECTION_IN_USE
Language=English
The user attempted to force close the files on a redirected
drive, but there were opened directories on the drive, and the user
did not specify a sufficient level of force.
.


MessageId=0x0109 Facility=System Severity=Error SymbolicName=STATUS_MESSAGE_NOT_FOUND
Language=English
RtlFindMessage could not locate the requested message ID in the
message table resource.
.


MessageId=0x010A Facility=System Severity=Error SymbolicName=STATUS_PROCESS_IS_TERMINATING
Language=English
An attempt was made to duplicate an object handle into or out
of an exiting process.
.


MessageId=0x010B Facility=System Severity=Error SymbolicName=STATUS_INVALID_LOGON_TYPE
Language=English
Indicates an invalid value has been provided for the LogonType
requested.
.


MessageId=0x010C Facility=System Severity=Error SymbolicName=STATUS_NO_GUID_TRANSLATION
Language=English
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 may cause a file
creation attempt to fail.
.


MessageId=0x010D Facility=System Severity=Error SymbolicName=STATUS_CANNOT_IMPERSONATE
Language=English
Indicates that an attempt has been made to impersonate via a named
pipe that has not yet been read from.
.


MessageId=0x010E Facility=System Severity=Error SymbolicName=STATUS_IMAGE_ALREADY_LOADED
Language=English
Indicates that the specified image is already loaded.
.


;
;//
;// ============================================================
;// NOTE: The following ABIOS error code should be reserved on
;//       non ABIOS kernel.  Eventually, I will remove the ifdef
;//       ABIOS.
;// ============================================================
;//


MessageId=0x010F Facility=System Severity=Error SymbolicName=STATUS_ABIOS_NOT_PRESENT
Language=English
.

MessageId=0x0110 Facility=System Severity=Error SymbolicName=STATUS_ABIOS_LID_NOT_EXIST
Language=English
.


MessageId=0x0111 Facility=System Severity=Error SymbolicName=STATUS_ABIOS_LID_ALREADY_OWNED
Language=English
.


MessageId=0x0112 Facility=System Severity=Error SymbolicName=STATUS_ABIOS_NOT_LID_OWNER
Language=English
.


MessageId=0x0113 Facility=System Severity=Error SymbolicName=STATUS_ABIOS_INVALID_COMMAND
Language=English
.


MessageId=0x0114 Facility=System Severity=Error SymbolicName=STATUS_ABIOS_INVALID_LID
Language=English
.


MessageId=0x0115 Facility=System Severity=Error SymbolicName=STATUS_ABIOS_SELECTOR_NOT_AVAILABLE
Language=English
.


MessageId=0x0116 Facility=System Severity=Error SymbolicName=STATUS_ABIOS_INVALID_SELECTOR
Language=English
.


MessageId=0x0117 Facility=System Severity=Error SymbolicName=STATUS_NO_LDT
Language=English
Indicates that an attempt was made to change the size of the LDT for
a process that has no LDT.
.


MessageId=0x0118 Facility=System Severity=Error SymbolicName=STATUS_INVALID_LDT_SIZE
Language=English
Indicates that an attempt was made to grow an LDT by setting its size,
or that the size was not an even number of selectors.
.


MessageId=0x0119 Facility=System Severity=Error SymbolicName=STATUS_INVALID_LDT_OFFSET
Language=English
Indicates that the starting value for the LDT information was not
an integral multiple of the selector size.
.


MessageId=0x011A Facility=System Severity=Error SymbolicName=STATUS_INVALID_LDT_DESCRIPTOR
Language=English
Indicates that the user supplied an invalid descriptor when trying
to set up Ldt descriptors.
.


MessageId=0x011B Facility=System Severity=Error SymbolicName=STATUS_INVALID_IMAGE_NE_FORMAT
Language=English
The specified image file did not have the correct format. It
appears to be NE format.
.




MessageId=0x011C Facility=System Severity=Error SymbolicName=STATUS_RXACT_INVALID_STATE
Language=English
Indicates that the transaction state of a registry sub-tree is
incompatible with the requested operation.
For example, a request has been made to start a new transaction with
one already in progress, or a request has been made to apply a transaction
when one is not currently in progress.
This status value is returned by the runtime library (RTL) registry
transaction package (RXact).
.



MessageId=0x011D Facility=System Severity=Error SymbolicName=STATUS_RXACT_COMMIT_FAILURE
Language=English
Indicates an error has occurred during a registry transaction commit.
The database has been left in an unknown, but probably inconsistent,
state.  The state of the registry transaction is left as COMMITTING.
This status value is returned by the runtime library (RTL) registry
transaction package (RXact).
.


MessageId=0x011E Facility=System Severity=Error SymbolicName=STATUS_MAPPED_FILE_SIZE_ZERO
Language=English
An attempt was made to map a file of size zero with the
maximum size specified as zero.
.


MessageId=0x011F Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_OPENED_FILES
Language=English
Too many files are opened on a remote server.  This error should only
be returned by the NT redirector on a remote drive.
.


MessageId=0x0120 Facility=System Severity=Error SymbolicName=STATUS_CANCELLED
Language=English
The I/O request was canceled.
.


MessageId=0x0121 Facility=System Severity=Error SymbolicName=STATUS_CANNOT_DELETE
Language=English
An attempt has been made to remove a file or directory that cannot
be deleted.
.


MessageId=0x0122 Facility=System Severity=Error SymbolicName=STATUS_INVALID_COMPUTER_NAME
Language=English
Indicates a name specified as a remote computer name is syntactically
invalid.
.


MessageId=0x0123 Facility=System Severity=Error SymbolicName=STATUS_FILE_DELETED
Language=English
An I/O request other than close was performed on a file after it has
been deleted, which can only happen to a request which did not complete
before the last handle was closed via NtClose.
.


MessageId=0x0124 Facility=System Severity=Error SymbolicName=STATUS_SPECIAL_ACCOUNT
Language=English
Indicates an operation has been attempted on a built-in (special)
SAM account which is incompatible with built-in accounts.  For
example, built-in accounts cannot be deleted.
.


MessageId=0x0125 Facility=System Severity=Error SymbolicName=STATUS_SPECIAL_GROUP
Language=English
The operation requested may not be performed on the specified
group because it is a built-in special group.
.


MessageId=0x0126 Facility=System Severity=Error SymbolicName=STATUS_SPECIAL_USER
Language=English
The operation requested may not be performed on the specified
user because it is a built-in special user.
.


MessageId=0x0127 Facility=System Severity=Error SymbolicName=STATUS_MEMBERS_PRIMARY_GROUP
Language=English
Indicates a member cannot be removed from a group because the
group is currently the member's primary group.
.


MessageId=0x0128 Facility=System Severity=Error SymbolicName=STATUS_FILE_CLOSED
Language=English
An I/O request other than close and several other special case
operations was attempted using a file object that had already been
closed.
.


MessageId=0x0129 Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_THREADS
Language=English
Indicates a process has too many threads to perform the requested
action.  For example, assignment of a primary token may only be
performed when a process has zero or one threads.
.


MessageId=0x012A Facility=System Severity=Error SymbolicName=STATUS_THREAD_NOT_IN_PROCESS
Language=English
An attempt was made to operate on a thread within a specific process,
but the thread specified is not in the process specified.
.


MessageId=0x012B Facility=System Severity=Error SymbolicName=STATUS_TOKEN_ALREADY_IN_USE
Language=English
An attempt was made to establish a token for use as a primary token
but the token is already in use.  A token can only be the primary token
of one process at a time.
.

MessageId=0x012C Facility=System Severity=Error SymbolicName=STATUS_PAGEFILE_QUOTA_EXCEEDED
Language=English
Page file quota was exceeded.
.


MessageId=0x012D Facility=System Severity=Error SymbolicName=STATUS_COMMITMENT_LIMIT
Language=English
{Out of Virtual Memory}
Your system is running low on virtual memory.  Please close some
applications.  You can then start the System option in the Control Panel
and choose the Virtual Memory button to create an additional paging file
or to increase the size of your current paging file.
.


MessageId=0x012E Facility=System Severity=Error SymbolicName=STATUS_INVALID_IMAGE_LE_FORMAT
Language=English
The specified image file did not have the correct format, it
appears to be LE format.
.


MessageId=0x012F Facility=System Severity=Error SymbolicName=STATUS_INVALID_IMAGE_NOT_MZ
Language=English
The specified image file did not have the correct format, it
did not have an initial MZ.
.


MessageId=0x0130 Facility=System Severity=Error SymbolicName=STATUS_INVALID_IMAGE_PROTECT
Language=English
The specified image file did not have the correct format, it
did not have a proper e_lfarlc in the MZ header.
.


MessageId=0x0131 Facility=System Severity=Error SymbolicName=STATUS_INVALID_IMAGE_WIN_16
Language=English
The specified image file did not have the correct format, it
appears to be a 16-bit Windows image.
.


MessageId=0x0132 Facility=System Severity=Error SymbolicName=STATUS_LOGON_SERVER_CONFLICT
Language=English
The Netlogon service cannot start because another Netlogon service running
in the domain conflicts with the specified role.
.


MessageId=0x0133 Facility=System Severity=Error SymbolicName=STATUS_TIME_DIFFERENCE_AT_DC
Language=English
The time at the Primary Domain Controller is different than the
time at the Backup Domain Controller or member server by too large
an amount.
.


MessageId=0x0134 Facility=System Severity=Error SymbolicName=STATUS_SYNCHRONIZATION_REQUIRED
Language=English
The SAM database on a Windows NT Server is
significantly out of synchronization with the copy on the Domain
Controller.  A complete synchronization is required.
.

MessageId=0x0135 Facility=System Severity=Error SymbolicName=STATUS_DLL_NOT_FOUND
Language=English
{Unable To Locate DLL}
The dynamic link library %s could not be found in the specified path %s.
.

MessageId=0x0136 Facility=System Severity=Error SymbolicName=STATUS_OPEN_FAILED
Language=English
The NtCreateFile API failed.  This error should never be returned to an
application, it is a place holder for the NT Lan Manager Redirector to
use in its internal error mapping routines.
.

MessageId=0x0137 Facility=System Severity=Error SymbolicName=STATUS_IO_PRIVILEGE_FAILED
Language=English
{Privilege Failed}
The I/O permissions for the process could not be changed.
.

MessageId=0x0138 Facility=System Severity=Error SymbolicName=STATUS_ORDINAL_NOT_FOUND
Language=English
{Ordinal Not Found}
The ordinal %ld could not be located in the dynamic link library %s.
.

MessageId=0x0139 Facility=System Severity=Error SymbolicName=STATUS_ENTRYPOINT_NOT_FOUND
Language=English
{Entry Point Not Found}
The procedure entry point %s could not be located in the dynamic link library %s.
.

MessageId=0x013A Facility=System Severity=Error SymbolicName=STATUS_CONTROL_C_EXIT ;// winnt
Language=English
{Application Exit by CTRL+C}
The application terminated as a result of a CTRL+C.
.

MessageId=0x013B Facility=System Severity=Error SymbolicName=STATUS_LOCAL_DISCONNECT
Language=English
{Virtual Circuit Closed}
The network transport on your computer has closed a network
connection. There may or may not be I/O requests outstanding.
.


MessageId=0x013C Facility=System Severity=Error SymbolicName=STATUS_REMOTE_DISCONNECT
Language=English
{Virtual Circuit Closed}
The network transport on a remote computer has closed a network
connection. There may or may not be I/O requests outstanding.
.


MessageId=0x013D Facility=System Severity=Error SymbolicName=STATUS_REMOTE_RESOURCES
Language=English
{Insufficient Resources on Remote Computer}
The remote computer has insufficient resources to complete the
network request. For instance, there may not be enough memory
available on the remote computer to carry out the request at
this time.
.


MessageId=0x013E Facility=System Severity=Error SymbolicName=STATUS_LINK_FAILED
Language=English
{Virtual Circuit Closed}
An existing connection (virtual circuit) has been broken at the
remote computer. There is probably something wrong with the
network software protocol or the network hardware on the
remote computer.
.


MessageId=0x013F Facility=System Severity=Error SymbolicName=STATUS_LINK_TIMEOUT
Language=English
{Virtual Circuit Closed}
The network transport on your computer has closed a network
connection because it had to wait too long for a response
from the remote computer.
.


MessageId=0x0140 Facility=System Severity=Error SymbolicName=STATUS_INVALID_CONNECTION
Language=English
The connection handle given to the transport was invalid.
.


MessageId=0x0141 Facility=System Severity=Error SymbolicName=STATUS_INVALID_ADDRESS
Language=English
The address handle given to the transport was invalid.
.

MessageId=0x0142 Facility=System Severity=Error SymbolicName=STATUS_DLL_INIT_FAILED
Language=English
{DLL Initialization Failed}
Initialization of the dynamic link library %s failed. The process is
terminating abnormally.
.

MessageId=0x0143 Facility=System Severity=Error SymbolicName=STATUS_MISSING_SYSTEMFILE
Language=English
{Missing System File}
The required system file %s is bad or missing.
.

MessageId=0x0144 Facility=System Severity=Error SymbolicName=STATUS_UNHANDLED_EXCEPTION
Language=English
{Application Error}
The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
.

MessageId=0x0145 Facility=System Severity=Error SymbolicName=STATUS_APP_INIT_FAILURE
Language=English
{Application Error}
The application failed to initialize properly (0x%lx).  Click on OK to
terminate the application.
.

MessageId=0x0146 Facility=System Severity=Error SymbolicName=STATUS_PAGEFILE_CREATE_FAILED
Language=English
{Unable to Create Paging File}
The creation of the paging file %s failed (%lx). The requested size was %ld.
.

MessageId=0x0147 Facility=System Severity=Error SymbolicName=STATUS_NO_PAGEFILE
Language=English
{No Paging File Specified}
No paging file was specified in the system configuration.
.

MessageId=0x0148 Facility=System Severity=Error SymbolicName=STATUS_INVALID_LEVEL
Language=English
{Incorrect System Call Level}
An invalid level was passed into the specified system call.
.

MessageId=0x0149 Facility=System Severity=Error SymbolicName=STATUS_WRONG_PASSWORD_CORE
Language=English
{Incorrect Password to LAN Manager Server}
You specified an incorrect password to a LAN Manager 2.x or MS-NET server.
.

MessageId=0x014A Facility=System Severity=Error SymbolicName=STATUS_ILLEGAL_FLOAT_CONTEXT
Language=English
{EXCEPTION}
A real-mode application issued a floating-point instruction and floating-point
hardware is not present.
.

MessageId=0x014B Facility=System Severity=Error SymbolicName=STATUS_PIPE_BROKEN
Language=English
The pipe operation has failed because the other end of the pipe has been
closed.
.

MessageId=0x014C Facility=System Severity=Error SymbolicName=STATUS_REGISTRY_CORRUPT
Language=English
{The Registry Is Corrupt}
The structure of one of the files that contains Registry data is corrupt, or
the image of the file in memory is corrupt, or the file could not
be recovered because the alternate copy or log was absent or corrupt.
.

MessageId=0x014d Facility=System Severity=Error
SymbolicName=STATUS_REGISTRY_IO_FAILED
Language=English
An I/O operation initiated by the Registry failed unrecoverably.
The Registry could not read in, or write out, or flush, one of the files
that contain the system's image of the Registry.
.

MessageId=0x014e Facility=System Severity=Error
SymbolicName=STATUS_NO_EVENT_PAIR
Language=English
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.
.

MessageId=0x014f Facility=System Severity=Error
SymbolicName=STATUS_UNRECOGNIZED_VOLUME
Language=English
The volume does not contain a recognized file system.
Please make sure that all required file system drivers are loaded and that the
volume is not corrupt.
.

MessageId=0x0150 Facility=System Severity=Error
SymbolicName=STATUS_SERIAL_NO_DEVICE_INITED
Language=English
No serial device was successfully initialized.  The serial driver will unload.
.

MessageId=0x0151 Facility=System Severity=Error SymbolicName=STATUS_NO_SUCH_ALIAS
Language=English
The specified local group does not exist.
.


MessageId=0x0152 Facility=System Severity=Error SymbolicName=STATUS_MEMBER_NOT_IN_ALIAS
Language=English
The specified account name is not a member of the local group.
.


MessageId=0x0153 Facility=System Severity=Error SymbolicName=STATUS_MEMBER_IN_ALIAS
Language=English
The specified account name is already a member of the local group.
.

MessageId=0x0154 Facility=System Severity=Error SymbolicName=STATUS_ALIAS_EXISTS
Language=English
The specified local group already exists.
.

MessageId=0x0155 Facility=System Severity=Error SymbolicName=STATUS_LOGON_NOT_GRANTED
Language=English
A requested type of logon (e.g., Interactive, Network, Service) is not
granted by the target system's local security policy.  Please ask the
system administrator to grant the necessary form of logon.
.

MessageId=0x0156 Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_SECRETS
Language=English
The maximum number of secrets that may be stored in a single system has been
exceeded.  The length and number of secrets is limited to satisfy United
States State Department export restrictions.
.

MessageId=0x0157 Facility=System Severity=Error SymbolicName=STATUS_SECRET_TOO_LONG
Language=English
The length of a secret exceeds the maximum length allowed.  The length and
number of secrets is limited to satisfy United States State Department
export restrictions.
.

MessageId=0x0158 Facility=System Severity=Error SymbolicName=STATUS_INTERNAL_DB_ERROR
Language=English
The Local Security Authority (LSA) database contains an internal inconsistency.
.

MessageId=0x0159 Facility=System Severity=Error SymbolicName=STATUS_FULLSCREEN_MODE
Language=English
The requested operation cannot be performed in fullscreen mode.
.

MessageId=0x015A Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_CONTEXT_IDS
Language=English
During a logon attempt, the user's security context accumulated too many
security IDs.  This is a very unusual situation.  Remove the user from
some global or local groups to reduce the number of security ids to
incorporate into the security context.
.

MessageId=0x015B Facility=System Severity=Error SymbolicName=STATUS_LOGON_TYPE_NOT_GRANTED
Language=English
A user has requested a type of logon (e.g., interactive or network) that
has not been granted.  An administrator has control over who may logon
interactively and through the network.
.

MessageId=0x015C Facility=System Severity=Error SymbolicName=STATUS_NOT_REGISTRY_FILE
Language=English
The system has attempted to load or restore a file into the registry, and the
specified file is not in the format of a registry file.
.

MessageId=0x015D Facility=System Severity=Error SymbolicName=STATUS_NT_CROSS_ENCRYPTION_REQUIRED
Language=English
An attempt was made to change a user password in the security account manager
without providing the necessary NT cross-encrypted password.
.

MessageId=0x015E Facility=System Severity=Error SymbolicName=STATUS_DOMAIN_CTRLR_CONFIG_ERROR
Language=English
A Windows NT Server has incorrect configuration.
.

MessageId=0x015F Facility=System Severity=Error SymbolicName=STATUS_FT_MISSING_MEMBER
Language=English
An attempt was made to explicitly access the secondary copy of information
via a device control to the Fault Tolerance driver and the secondary copy
is not present in the system.
.

MessageId=0x0160 Facility=System Severity=Error SymbolicName=STATUS_ILL_FORMED_SERVICE_ENTRY
Language=English
A configuration registry node representing a driver service entry was ill-formed
and did not contain required value entries.
.

MessageId=0x0161 Facility=System Severity=Error SymbolicName=STATUS_ILLEGAL_CHARACTER
Language=English
An illegal character was encountered.  For a multi-byte character set this
includes a lead byte without a succeeding trail byte.  For the Unicode character set
this includes the characters 0xFFFF and 0xFFFE.
.

MessageId=0x0162 Facility=System Severity=Error SymbolicName=STATUS_UNMAPPABLE_CHARACTER
Language=English
No mapping for the Unicode character exists in the target multi-byte code page.
.

MessageId=0x0163 Facility=System Severity=Error SymbolicName=STATUS_UNDEFINED_CHARACTER
Language=English
The Unicode character is not defined in the Unicode character set installed on
the system.
.

MessageId=0x0164 Facility=System Severity=Error SymbolicName=STATUS_FLOPPY_VOLUME
Language=English
The paging file cannot be created on a floppy diskette.
.

MessageId=0x0165 Facility=System Severity=ERROR SymbolicName=STATUS_FLOPPY_ID_MARK_NOT_FOUND
Language=English
{Floppy Disk Error}
While accessing a floppy disk, an ID address mark was not found.
.

MessageId=0x0166 Facility=System Severity=ERROR SymbolicName=STATUS_FLOPPY_WRONG_CYLINDER
Language=English
{Floppy Disk Error}
While accessing a floppy disk, the track address from the sector ID field
was found to be different than the track address maintained by the controller.
.

MessageId=0x0167 Facility=System Severity=ERROR SymbolicName=STATUS_FLOPPY_UNKNOWN_ERROR
Language=English
{Floppy Disk Error}
The floppy disk controller reported an error that is not recognized by the
floppy disk driver.
.

MessageId=0x0168 Facility=System Severity=ERROR SymbolicName=STATUS_FLOPPY_BAD_REGISTERS
Language=English
{Floppy Disk Error}
While accessing a floppy-disk, the controller returned inconsistent results
via its registers.
.

MessageId=0x0169 Facility=System Severity=ERROR SymbolicName=STATUS_DISK_RECALIBRATE_FAILED
Language=English
{Hard Disk Error}
While accessing the hard disk, a recalibrate operation failed, even after retries.
.

MessageId=0x016A Facility=System Severity=ERROR SymbolicName=STATUS_DISK_OPERATION_FAILED
Language=English
{Hard Disk Error}
While accessing the hard disk, a disk operation failed even after retries.
.

MessageId=0x016B Facility=System Severity=ERROR SymbolicName=STATUS_DISK_RESET_FAILED
Language=English
{Hard Disk Error}
While accessing the hard disk, a disk controller reset was needed, but even that failed.
.

MessageId=0x016C Facility=System Severity=ERROR SymbolicName=STATUS_SHARED_IRQ_BUSY
Language=English
An attempt was made to open a device that was sharing an IRQ with other devices.
At least one other device that uses that IRQ was already opened.  Two concurrent
opens of devices that share an IRQ and only work via interrupts is not supported
for the particular bus type that the devices use.
.

MessageId=0x016D Facility=System Severity=ERROR SymbolicName=STATUS_FT_ORPHANING
Language=English
{FT Orphaning}
A disk that is part of a fault-tolerant volume can no longer be accessed.
.

MessageId=0x016E Facility=System Severity=ERROR SymbolicName=STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT
Language=English
The system bios failed to connect a system interrupt to the device or bus for
which the device is connected.
.

MessageId=0x0172 Facility=System Severity=ERROR SymbolicName=STATUS_PARTITION_FAILURE
Language=English
Tape could not be partitioned.
.

MessageId=0x0173 Facility=System Severity=ERROR SymbolicName=STATUS_INVALID_BLOCK_LENGTH
Language=English
When accessing a new tape of a multivolume partition, the current
blocksize is incorrect.
.

MessageId=0x0174 Facility=System Severity=ERROR SymbolicName=STATUS_DEVICE_NOT_PARTITIONED
Language=English
Tape partition information could not be found when loading a tape.
.

MessageId=0x0175 Facility=System Severity=ERROR SymbolicName=STATUS_UNABLE_TO_LOCK_MEDIA
Language=English
Attempt to lock the eject media mechanism fails.
.

MessageId=0x0176 Facility=System Severity=ERROR SymbolicName=STATUS_UNABLE_TO_UNLOAD_MEDIA
Language=English
Unload media fails.
.

MessageId=0x0177 Facility=System Severity=ERROR SymbolicName=STATUS_EOM_OVERFLOW
Language=English
Physical end of tape was detected.
.

MessageId=0x0178 Facility=System Severity=Error SymbolicName=STATUS_NO_MEDIA
Language=English
{No Media}
There is no media in the drive.
Please insert media into drive %s.
.


MessageId=0x017A Facility=System Severity=ERROR SymbolicName=STATUS_NO_SUCH_MEMBER
Language=English
A new member could not be added to a local group because the member does
not exist.
.

MessageId=0x017B Facility=System Severity=ERROR SymbolicName=STATUS_INVALID_MEMBER
Language=English
A new member could not be added to a local group because the member has the
wrong account type.
.

MessageId=0x017C Facility=System Severity=ERROR SymbolicName=STATUS_KEY_DELETED
Language=English
Illegal operation attempted on a registry key which has been marked for deletion.
.

MessageId=0x017D Facility=System Severity=ERROR SymbolicName=STATUS_NO_LOG_SPACE
Language=English
System could not allocate required space in a registry log.
.

MessageId=0x017E Facility=System Severity=ERROR SymbolicName=STATUS_TOO_MANY_SIDS
Language=English
Too many Sids have been specified.
.

MessageId=0x017F Facility=System Severity=Error SymbolicName=STATUS_LM_CROSS_ENCRYPTION_REQUIRED
Language=English
An attempt was made to change a user password in the security account manager
without providing the necessary LM cross-encrypted password.
.

MessageId=0x0180 Facility=System Severity=Error SymbolicName=STATUS_KEY_HAS_CHILDREN
Language=English
An attempt was made to create a symbolic link in a registry key that already
has subkeys or values.
.

MessageId=0x0181 Facility=System Severity=Error SymbolicName=STATUS_CHILD_MUST_BE_VOLATILE
Language=English
An attempt was made to create a Stable subkey under a Volatile parent key.
.

MessageId=0x0182 Facility=System Severity=Error SymbolicName=STATUS_DEVICE_CONFIGURATION_ERROR
Language=English
The I/O device is configured incorrectly or the configuration parameters to the
driver are incorrect.
.

MessageId=0x0183 Facility=System Severity=Error SymbolicName=STATUS_DRIVER_INTERNAL_ERROR
Language=English
An error was detected between two drivers or within an I/O driver.
.

MessageId=0x0184 Facility=System Severity=Error SymbolicName=STATUS_INVALID_DEVICE_STATE
Language=English
The device is not in a valid state to perform this request.
.

MessageId=0x0185 Facility=System Severity=Error SymbolicName=STATUS_IO_DEVICE_ERROR
Language=English
The I/O device reported an I/O error.
.

MessageId=0x0186 Facility=System Severity=Error SymbolicName=STATUS_DEVICE_PROTOCOL_ERROR
Language=English
A protocol error was detected between the driver and the device.
.

MessageId=0x0187 Facility=System Severity=Error SymbolicName=STATUS_BACKUP_CONTROLLER
Language=English
This operation is only allowed for the Primary Domain Controller of the domain.
.

MessageId=0x0188 Facility=System Severity=Error SymbolicName=STATUS_LOG_FILE_FULL
Language=English
Log file space is insufficient to support this operation.
.

MessageId=0x0189 Facility=System Severity=Error SymbolicName=STATUS_TOO_LATE
Language=English
A write operation was attempted to a volume after it was dismounted.
.

MessageId=0x018A Facility=System Severity=Error SymbolicName=STATUS_NO_TRUST_LSA_SECRET
Language=English
The workstation does not have a trust secret for the primary domain in
the local LSA database.
.

MessageId=0x018B Facility=System Severity=Error SymbolicName=STATUS_NO_TRUST_SAM_ACCOUNT
Language=English
The SAM database on the Windows NT Server does not have a computer
account for this workstation trust relationship.
.

MessageId=0x018C Facility=System Severity=Error SymbolicName=STATUS_TRUSTED_DOMAIN_FAILURE
Language=English
The logon request failed because the trust relationship between the
primary domain and the trusted domain failed.
.

MessageId=0x018D Facility=System Severity=Error SymbolicName=STATUS_TRUSTED_RELATIONSHIP_FAILURE
Language=English
The logon request failed because the trust relationship between this
workstation and the primary domain failed.
.

MessageId=0x018E Facility=System Severity=Error SymbolicName=STATUS_EVENTLOG_FILE_CORRUPT
Language=English
The Eventlog log file is corrupt.
.

MessageId=0x18F Facility=System Severity=Error SymbolicName=STATUS_EVENTLOG_CANT_START
Language=English
No Eventlog log file could be opened.  The Eventlog service did not start.
.

MessageId=0x0190 Facility=System Severity=Error SymbolicName=STATUS_TRUST_FAILURE
Language=English
The network logon failed. This may be because the validation authority can't
be reached.
.

MessageId=0x0191 Facility=System Severity=Error SymbolicName=STATUS_MUTANT_LIMIT_EXCEEDED
Language=English
An attempt was made to acquire a mutant such that its maximum count
would have been exceeded.
.

MessageId=0x0192 Facility=System Severity=Error SymbolicName=STATUS_NETLOGON_NOT_STARTED
Language=English
 An attempt was made to logon, but the netlogon service was not started.
.

MessageId=0x0193 Facility=System Severity=Error SymbolicName=STATUS_ACCOUNT_EXPIRED ;// ntsubauth
Language=English
The user's account has expired.
.

MessageId=0x0194 Facility=System Severity=Error SymbolicName=STATUS_POSSIBLE_DEADLOCK
Language=English
{EXCEPTION}
Possible deadlock condition.
.

MessageId=0x0195 Facility=System Severity=Error SymbolicName=STATUS_NETWORK_CREDENTIAL_CONFLICT
Language=English
The credentials supplied conflict with an existing set of credentials.
.
MessageId=0x0196 Facility=System Severity=Error SymbolicName=STATUS_REMOTE_SESSION_LIMIT
Language=English
An attempt was made to establish a session to a network server, but there
are already too many sessions established to that server.
.

MessageId=0x0197 Facility=System Severity=Error SymbolicName=STATUS_EVENTLOG_FILE_CHANGED
Language=English
The log file has changed between reads.
.

MessageId=0x0198 Facility=System Severity=Error SymbolicName=STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT
Language=English
The account used is an Interdomain Trust account.  Use your global user account or local user account to access this server.
.

MessageId=0x0199 Facility=System Severity=Error SymbolicName=STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT
Language=English
The account used is a Computer Account.  Use your global user account or local user account to access this server.
.

MessageId=0x019A Facility=System Severity=Error SymbolicName=STATUS_NOLOGON_SERVER_TRUST_ACCOUNT
Language=English
The account used is an Server Trust account.  Use your global user account or local user account to access this server.
.

MessageId=0x019B Facility=System Severity=Error SymbolicName=STATUS_DOMAIN_TRUST_INCONSISTENT
Language=English
The name or SID of the domain specified is inconsistent with the trust information for that domain.
.

MessageId=0x019C Facility=System Severity=Error SymbolicName=STATUS_FS_DRIVER_REQUIRED
Language=English
A volume has been accessed for which a file system driver is required that has not yet been loaded.
.

MessageId=0x0202 Facility=System Severity=Error SymbolicName=STATUS_NO_USER_SESSION_KEY
Language=English
There is no user session key for the specified logon session.
.

MessageId=0x0203 Facility=System Severity=Error SymbolicName=STATUS_USER_SESSION_DELETED
Language=English
The remote user session has been deleted.
.

MessageId=0x0204 Facility=System Severity=Error SymbolicName=STATUS_RESOURCE_LANG_NOT_FOUND
Language=English
Indicates the specified resource language ID cannot be found in the
image file.
.

MessageId=0x0205 Facility=System Severity=Error SymbolicName=STATUS_INSUFF_SERVER_RESOURCES
Language=English
Insufficient server resources exist to complete the request.
.

MessageId=0x0206 Facility=System Severity=Error SymbolicName=STATUS_INVALID_BUFFER_SIZE
Language=English
The size of the buffer is invalid for the specified operation.
.

MessageId=0x0207 Facility=System Severity=Error SymbolicName=STATUS_INVALID_ADDRESS_COMPONENT
Language=English
The transport rejected the network address specified as invalid.
.

MessageId=0x0208 Facility=System Severity=Error SymbolicName=STATUS_INVALID_ADDRESS_WILDCARD
Language=English
The transport rejected the network address specified due to an
invalid use of a wildcard.
.

MessageId=0x0209 Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_ADDRESSES
Language=English
The transport address could not be opened because all the available
addresses are in use.
.

MessageId=0x020A Facility=System Severity=Error SymbolicName=STATUS_ADDRESS_ALREADY_EXISTS
Language=English
The transport address could not be opened because it already exists.
.

MessageId=0x020B Facility=System Severity=Error SymbolicName=STATUS_ADDRESS_CLOSED
Language=English
The transport address is now closed.
.

MessageId=0x020C Facility=System Severity=Error SymbolicName=STATUS_CONNECTION_DISCONNECTED
Language=English
The transport connection is now disconnected.
.

MessageId=0x020D Facility=System Severity=Error SymbolicName=STATUS_CONNECTION_RESET
Language=English
The transport connection has been reset.
.

MessageId=0x020E Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_NODES
Language=English
The transport cannot dynamically acquire any more nodes.
.

MessageId=0x020F Facility=System Severity=Error SymbolicName=STATUS_TRANSACTION_ABORTED
Language=English
The transport aborted a pending transaction.
.

MessageId=0x0210 Facility=System Severity=Error SymbolicName=STATUS_TRANSACTION_TIMED_OUT
Language=English
The transport timed out a request waiting for a response.
.

MessageId=0x0211 Facility=System Severity=Error SymbolicName=STATUS_TRANSACTION_NO_RELEASE
Language=English
The transport did not receive a release for a pending response.
.

MessageId=0x0212 Facility=System Severity=Error SymbolicName=STATUS_TRANSACTION_NO_MATCH
Language=English
The transport did not find a transaction matching the specific
token.
.

MessageId=0x0213 Facility=System Severity=Error SymbolicName=STATUS_TRANSACTION_RESPONDED
Language=English
The transport had previously responded to a transaction request.
.

MessageId=0x0214 Facility=System Severity=Error SymbolicName=STATUS_TRANSACTION_INVALID_ID
Language=English
The transport does not recognized the transaction request
identifier specified.
.

MessageId=0x0215 Facility=System Severity=Error SymbolicName=STATUS_TRANSACTION_INVALID_TYPE
Language=English
The transport does not recognize the transaction request
type specified.
.

MessageId=0x0216 Facility=System Severity=Error SymbolicName=STATUS_NOT_SERVER_SESSION
Language=English
The transport can only process the specified request on
the server side of a session.
.

MessageId=0x0217 Facility=System Severity=Error SymbolicName=STATUS_NOT_CLIENT_SESSION
Language=English
The transport can only process the specified request on
the client side of a session.
.

MessageId=0x0218 Facility=System Severity=Error SymbolicName=STATUS_CANNOT_LOAD_REGISTRY_FILE
Language=English
{Registry File Failure}
The registry cannot load the hive (file):
%s
or its log or alternate.
It is corrupt, absent, or not writeable.
.

MessageId=0x0219 Facility=System Severity=Error SymbolicName=STATUS_DEBUG_ATTACH_FAILED
Language=English
{Unexpected Failure in DebugActiveProcess}
An unexpected failure occurred while processing a DebugActiveProcess API
request.  You may choose OK to terminate the process, or Cancel to
ignore the error.
.

MessageId=0x021A Facility=System Severity=Error SymbolicName=STATUS_SYSTEM_PROCESS_TERMINATED
Language=English
{Fatal System Error}
The %s system process terminated unexpectedly
with a status of 0x%08x (0x%08x 0x%08x).
The system has been shut down.
.

MessageId=0x021B Facility=System Severity=Error SymbolicName=STATUS_DATA_NOT_ACCEPTED
Language=English
{Data Not Accepted}
The TDI client could not handle the data received during an
indication.
.

MessageId=0x021C Facility=System Severity=Error SymbolicName=STATUS_NO_BROWSER_SERVERS_FOUND
Language=English
{Unable to Retrieve Browser Server List}
The list of servers for this workgroup is not currently available.
.

MessageId=0x021D Facility=System Severity=Error SymbolicName=STATUS_VDM_HARD_ERROR
Language=English
NTVDM encountered a hard error.
.

MessageId=0x021E Facility=System Severity=Error SymbolicName=STATUS_DRIVER_CANCEL_TIMEOUT
Language=English
{Cancel Timeout}
The driver %s failed to complete a cancelled I/O request in the allotted time.
.

MessageId=0x021F Facility=System Severity=Error SymbolicName=STATUS_REPLY_MESSAGE_MISMATCH
Language=English
{Reply Message Mismatch}
An attempt was made to reply to an LPC message, but the thread specified
by the client ID in the message was not waiting on that message.
.

MessageId=0x0220 Facility=System Severity=Error SymbolicName=STATUS_MAPPED_ALIGNMENT
Language=English
{Mapped View Aligment Incorrect}
An attempt was made to map a view of a file, but either the specified base
address or the offset into the file were not aligned on the proper
allocation granularity.
.

MessageId=0x0221 Facility=System Severity=Error SymbolicName=STATUS_IMAGE_CHECKSUM_MISMATCH
Language=English
{Bad Image Checksum}
The image %s is possibly corrupt. The header checksum does not
match the computed checksum.
.

MessageId=0x0222 Facility=System Severity=Error SymbolicName=STATUS_LOST_WRITEBEHIND_DATA
Language=English
{Lost Delayed-Write Data}
The system was attempting to transfer file data from buffers to %s.
The write operation failed, and only some of the data may have been
written to the file.
.

MessageId=0x0223 Facility=System Severity=Error SymbolicName=STATUS_CLIENT_SERVER_PARAMETERS_INVALID
Language=English
The parameter(s) passed to the server in the client/server shared memory
window were invalid. Too much data may have been put in the shared memory
window.
.

MessageId=0x0224 Facility=System Severity=Error SymbolicName=STATUS_PASSWORD_MUST_CHANGE ;// ntsubauth
Language=English
The user must change his password before he logs on the first time.
.

MessageId=0x0225 Facility=System Severity=Error SymbolicName=STATUS_NOT_FOUND
Language=English
The object was not found.
.

MessageId=0x0226 Facility=System Severity=Error SymbolicName=STATUS_NOT_TINY_STREAM
Language=English
The stream is not a tiny stream.
.

MessageId=0x0227 Facility=System Severity=Error SymbolicName=STATUS_RECOVERY_FAILURE
Language=English
A transaction recover failed.
.

MessageId=0x0228 Facility=System Severity=Error SymbolicName=STATUS_STACK_OVERFLOW_READ
Language=English
The request must be handled by the stack overflow code.
.

MessageId=0x0229 Facility=System Severity=Error SymbolicName=STATUS_FAIL_CHECK
Language=English
A consistancy check failed.
.

MessageId=0x022a Facility=System Severity=Error SymbolicName=STATUS_DUPLICATE_OBJECTID
Language=English
The attempt to insert the ID in the index failed because the
ID is already in the index.
.

MessageId=0x022b Facility=System Severity=Error SymbolicName=STATUS_OBJECTID_EXISTS
Language=English
The attempt to set the object's ID failed because the object
already has an ID.
.

MessageId=0x022c Facility=System Severity=Error SymbolicName=STATUS_CONVERT_TO_LARGE
Language=English
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.
.

MessageId=0x022d Facility=System Severity=Error SymbolicName=STATUS_RETRY
Language=English
The request needs to be retried.
.

MessageId=0x022e Facility=System Severity=Error SymbolicName=STATUS_FOUND_OUT_OF_SCOPE
Language=English
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.
.

MessageId=0x022f Facility=System Severity=Error SymbolicName=STATUS_ALLOCATE_BUCKET
Language=English
The bucket array must be grown.  Retry transaction after doing so.
.

MessageId=0x0230 Facility=System Severity=Error SymbolicName=STATUS_PROPSET_NOT_FOUND
Language=English
The property set specified does not exist on the object.
.

MessageId=0x0231 Facility=System Severity=Error SymbolicName=STATUS_MARSHALL_OVERFLOW
Language=English
The user/kernel marshalling buffer has overflowed.
.

MessageId=0x0232 Facility=System Severity=Error SymbolicName=STATUS_INVALID_VARIANT
Language=English
The supplied variant structure contains invalid data.
.

MessageId=0x0233 Facility=System Severity=Error SymbolicName=STATUS_DOMAIN_CONTROLLER_NOT_FOUND
Language=English
Could not find a domain controller for this domain.
.

MessageId=0x0234 Facility=System Severity=Error SymbolicName=STATUS_ACCOUNT_LOCKED_OUT ;// ntsubauth
Language=English
The user account has been automatically locked because too many invalid logon
attempts or password change attempts have been requested.
.

MessageId=0x0235 Facility=System Severity=Error SymbolicName=STATUS_HANDLE_NOT_CLOSABLE
Language=English
NtClose was called on a handle that was protected from close via NtSetInformationObject.
.

MessageId=0x0236 Facility=System Severity=Error SymbolicName=STATUS_CONNECTION_REFUSED
Language=English
The transport connection attempt was refused by the remote system.
.

MessageId=0x0237 Facility=System Severity=Error SymbolicName=STATUS_GRACEFUL_DISCONNECT
Language=English
The transport connection was gracefully closed.
.

MessageId=0x0238 Facility=System Severity=Error SymbolicName=STATUS_ADDRESS_ALREADY_ASSOCIATED
Language=English
The transport endpoint already has an address associated with it.
.

MessageId=0x0239 Facility=System Severity=Error SymbolicName=STATUS_ADDRESS_NOT_ASSOCIATED
Language=English
An address has not yet been associated with the transport endpoint.
.

MessageId=0x023a Facility=System Severity=Error SymbolicName=STATUS_CONNECTION_INVALID
Language=English
An operation was attempted on a nonexistent transport connection.
.

MessageId=0x023b Facility=System Severity=Error SymbolicName=STATUS_CONNECTION_ACTIVE
Language=English
An invalid operation was attempted on an active transport connection.
.

MessageId=0x023c Facility=System Severity=Error SymbolicName=STATUS_NETWORK_UNREACHABLE
Language=English
The remote network is not reachable by the transport.
.

MessageId=0x023d Facility=System Severity=Error SymbolicName=STATUS_HOST_UNREACHABLE
Language=English
The remote system is not reachable by the transport.
.

MessageId=0x023e Facility=System Severity=Error SymbolicName=STATUS_PROTOCOL_UNREACHABLE
Language=English
The remote system does not support the transport protocol.
.

MessageId=0x023f Facility=System Severity=Error SymbolicName=STATUS_PORT_UNREACHABLE
Language=English
No service is operating at the destination port of the transport
on the remote system.
.

MessageId=0x0240 Facility=System Severity=Error SymbolicName=STATUS_REQUEST_ABORTED
Language=English
The request was aborted.
.

MessageId=0x0241 Facility=System Severity=Error SymbolicName=STATUS_CONNECTION_ABORTED
Language=English
The transport connection was aborted by the local system.
.

MessageId=0x0242 Facility=System Severity=Error SymbolicName=STATUS_BAD_COMPRESSION_BUFFER
Language=English
The specified buffer contains ill-formed data.
.

MessageId=0x0243 Facility=System Severity=Error SymbolicName=STATUS_USER_MAPPED_FILE
Language=English
The requested operation cannot be performed on a file with a user mapped section open.
.

MessageId=0x0244 Facility=System Severity=Error SymbolicName=STATUS_AUDIT_FAILED
Language=English
{Audit Failed}
An attempt to generate a security audit failed.
.

MessageId=0x0245 Facility=System Severity=Error SymbolicName=STATUS_TIMER_RESOLUTION_NOT_SET
Language=English
The timer resolution was not previously set by the current process.
.

MessageId=0x0246 Facility=System Severity=Error SymbolicName=STATUS_CONNECTION_COUNT_LIMIT
Language=English
A connection to the server could not be made because the limit on the number of
concurrent connections for this account has been reached.
.

MessageId=0x0247 Facility=System Severity=Error SymbolicName=STATUS_LOGIN_TIME_RESTRICTION
Language=English
Attempting to login during an unauthorized time of day for this account.
.

MessageId=0x0248 Facility=System Severity=Error SymbolicName=STATUS_LOGIN_WKSTA_RESTRICTION
Language=English
The account is not authorized to login from this station.
.

MessageId=0x0249 Facility=System Severity=Error SymbolicName=STATUS_IMAGE_MP_UP_MISMATCH
Language=English
{UP/MP Image Mismatch}
The image %s has been modified for use on a uniprocessor system,
but you are running it on a multiprocessor machine.
Please reinstall the image file.
.

MessageId=0x0250 Facility=System Severity=Error SymbolicName=STATUS_INSUFFICIENT_LOGON_INFO
Language=English
There is insufficient account information to log you on.
.

MessageId=0x0251 Facility=System Severity=Error SymbolicName=STATUS_BAD_DLL_ENTRYPOINT
Language=English
{Invalid DLL Entrypoint}
The dynamic link library %s is not written correctly. The stack pointer has been left in an inconsistent state.
The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue
execution. Selecting NO may cause the application to operate incorrectly.
.

MessageId=0x0252 Facility=System Severity=Error SymbolicName=STATUS_BAD_SERVICE_ENTRYPOINT
Language=English
{Invalid Service Callback Entrypoint}
The %s service is not written correctly. The stack pointer has been left in an inconsistent state.
The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the
service to continue operation. However, the service process may operate incorrectly.
.


MessageId=0x0253 Facility=System Severity=Error SymbolicName=STATUS_LPC_REPLY_LOST
Language=English
The server received the messages but did not send a reply.
.


MessageId=0x0254  Facility=System Severity=Error  SymbolicName=STATUS_IP_ADDRESS_CONFLICT1
Language=English
The system has detected an IP address conflict with another system on the
network. The local interface has been disabled. More details are available in
the system event log. Consult your network administrator to resolve the
conflict.
.

MessageId=0x0255  Facility=System Severity=Error  SymbolicName=STATUS_IP_ADDRESS_CONFLICT2
Language=English
The system has detected an IP address conflict with another system on the
network. Network operations on this system may be disrupted as a result.
More details are available in the system event log. Consult your network
administrator immediately to resolve the conflict.
.


MessageId=0x0256 Facility=System Severity=Error SymbolicName=STATUS_REGISTRY_QUOTA_LIMIT
Language=English
{Low on Registry Quota}
Your system is running low on registry quota.
Start the System option in the Control Panel and choose the Virtual Memory button to increase the registry quota.
.

MessageId=0x0257 Facility=System Severity=Error SymbolicName=STATUS_PATH_NOT_COVERED
Language=English
The contacted server does not support the indicated part of the DFS namespace.
.

MessageId=0x0258 Facility=System Severity=Error SymbolicName=STATUS_NO_CALLBACK_ACTIVE
Language=English
A callback return system service cannot be executed when no callback is active.
.

MessageId=0x0259 Facility=System Severity=Error SymbolicName=STATUS_LICENSE_QUOTA_EXCEEDED
Language=English
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 there are already as many connections as the service can accept.
.

MessageId=0x025A Facility=System Severity=Error SymbolicName=STATUS_PWD_TOO_SHORT
Language=English
The password provided is too short to meet the policy of your user account.
Please choose a longer password.
.

MessageId=0x025B Facility=System Severity=Error SymbolicName=STATUS_PWD_TOO_RECENT
Language=English
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
then please contact your administrator immediately to have a new one assigned.
.

MessageId=0x025C Facility=System Severity=Error SymbolicName=STATUS_PWD_HISTORY_CONFLICT
Language=English
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.  Please select a password
that you have not previously used.
.

MessageId=0x025E Facility=System Severity=Error SymbolicName=STATUS_PLUGPLAY_NO_DEVICE
Language=English
You have attempted to load a legacy device driver while its device instance had
been disabled.
.

MessageId=0x025F Facility=System Severity=Error SymbolicName=STATUS_UNSUPPORTED_COMPRESSION
Language=English
The specified compression format is unsupported.
.

MessageId=0x0260 Facility=System Severity=Error SymbolicName=STATUS_INVALID_HW_PROFILE
Language=English
The specified hardware profile configuration is invalid.
.

MessageId=0x0261 Facility=System Severity=Error SymbolicName=STATUS_INVALID_PLUGPLAY_DEVICE_PATH
Language=English
The specified Plug and Play registry device path is invalid.
.

MessageId=0x0262 Facility=System Severity=Error SymbolicName=STATUS_DRIVER_ORDINAL_NOT_FOUND
Language=English
{Driver Entry Point Not Found}
The %s device driver could not locate the ordinal %ld in driver %s.
.

MessageId=0x0263 Facility=System Severity=Error SymbolicName=STATUS_DRIVER_ENTRYPOINT_NOT_FOUND
Language=English
{Driver Entry Point Not Found}
The %s device driver could not locate the entry point %s in driver %s.
.

MessageId=0x0264 Facility=System Severity=Error SymbolicName=STATUS_RESOURCE_NOT_OWNED
Language=English
{Application Error}
The application attempted to release a resource it did not own.  Click on OK to
terminate the application.
.

MessageId=0x0265 Facility=System Severity=Error SymbolicName=STATUS_TOO_MANY_LINKS
Language=English
An attempt was made to create more links on a file than
the file system supports.
.

MessageId=0x0266 Facility=System Severity=Error SymbolicName=STATUS_QUOTA_LIST_INCONSISTENT
Language=English
The specified quota list is internally inconsistent with its descriptor.
.

MessageId=0x0267 Facility=System Severity=Error SymbolicName=STATUS_FILE_IS_OFFLINE
Language=English
The specified file has been relocated to offline storage.
.

MessageId=0x0268 Facility=System Severity=Error SymbolicName=STATUS_EVALUATION_EXPIRATION
Language=English
{Windows NT Evaluation Notification}
The evaluation period for this installation of Windows NT has expired.
This system will shutdown in 1 hour. To restore access to this installation
of Windows NT, please upgrade this installation using a licensed distribution
of this product.
.

MessageId=0x0269 Facility=System Severity=Error SymbolicName=STATUS_ILLEGAL_DLL_RELOCATION
Language=English
{Illegal System DLL Relocation}
The system DLL %s was relocated in memory. The application will not run properly.
The relocation occured because the DLL %s occupied an address range reserved for
Windows NT system DLL's. The vendor supplying the DLL should be contacted for a new DLL.
.

MessageId=0x026A Facility=System Severity=Error SymbolicName=STATUS_LICENSE_VIOLATION
Language=English
{License Violation}
The system has detected tampering with your registered product type. This is a violation
of your software license. Tampering with product type is not permitted.
.

MessageId=0x026B Facility=System Severity=Error SymbolicName=STATUS_DLL_INIT_FAILED_LOGOFF
Language=English
{DLL Initialization Failed}
The application failed to initialize because the window station is shutting down.
.

MessageId=0x026C Facility=System Severity=Error SymbolicName=STATUS_DRIVER_UNABLE_TO_LOAD
Language=English
{Unable to Load Device Driver}
%s device driver could not be loaded.
Error Status was 0x%x
.

MessageId=0x026D Facility=System Severity=Error SymbolicName=STATUS_DFS_UNAVAILABLE
Language=English
DFS is unavailable on the contacted server.
.

MessageId=0x026E Facility=System Severity=Error SymbolicName=STATUS_VOLUME_DISMOUNTED
Language=English
An operation was attempted to a volume after it was dismounted.
.

MessageId=0x026F Facility=System Severity=Error SymbolicName=STATUS_WX86_INTERNAL_ERROR
Language=English
An internal error occurred in the Win32 x86 emulation subsystem.
.

MessageId=0x0270 Facility=System Severity=Error SymbolicName=STATUS_WX86_FLOAT_STACK_CHECK
Language=English
Win32 x86 emulation subsystem Floating-point stack check.
.

MessageId=0x9898 Facility=System Severity=Error SymbolicName=STATUS_WOW_ASSERTION
Language=English
WOW Assertion Error.
.

MessageId=0x0001 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_STRING_BINDING
Language=English
The string binding is invalid.
.

MessageId=0x0002 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_WRONG_KIND_OF_BINDING Language=English
The binding handle is not the correct type.
.

MessageId=0x0003 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_BINDING
Language=English
The binding handle is invalid.
.

MessageId=0x0004 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_PROTSEQ_NOT_SUPPORTED
Language=English
The RPC protocol sequence is not supported.
.

MessageId=0x0005 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_RPC_PROTSEQ
Language=English
The RPC protocol sequence is invalid.
.

MessageId=0x0006 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_STRING_UUID
Language=English
The string UUID is invalid.
.

MessageId=0x0007 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_ENDPOINT_FORMAT
Language=English
The endpoint format is invalid.
.

MessageId=0x0008 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_NET_ADDR
Language=English
The network address is invalid.
.

MessageId=0x0009 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_ENDPOINT_FOUND
Language=English
No endpoint was found.
.

MessageId=0x000A Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_TIMEOUT
Language=English
The timeout value is invalid.
.

MessageId=0x000B Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_OBJECT_NOT_FOUND
Language=English
The object UUID was not found.
.

MessageId=0x000C Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_ALREADY_REGISTERED
Language=English
The object UUID has already been registered.
.

MessageId=0x000D Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_TYPE_ALREADY_REGISTERED
Language=English
The type UUID has already been registered.
.

MessageId=0x000E Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_ALREADY_LISTENING
Language=English
The RPC server is already listening.
.

MessageId=0x000F Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_PROTSEQS_REGISTERED
Language=English
No protocol sequences have been registered.
.

MessageId=0x0010 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NOT_LISTENING
Language=English
The RPC server is not listening.
.

MessageId=0x0011 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNKNOWN_MGR_TYPE
Language=English
The manager type is unknown.
.

MessageId=0x0012 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNKNOWN_IF
Language=English
The interface is unknown.
.

MessageId=0x0013 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_BINDINGS
Language=English
There are no bindings.
.

MessageId=0x0014 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_PROTSEQS
Language=English
There are no protocol sequences.
.

MessageId=0x0015 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_CANT_CREATE_ENDPOINT
Language=English
The endpoint cannot be created.
.

MessageId=0x0016 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_OUT_OF_RESOURCES
Language=English
Not enough resources are available to complete this operation.
.

MessageId=0x0017 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_SERVER_UNAVAILABLE
Language=English
The RPC server is unavailable.
.

MessageId=0x0018 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_SERVER_TOO_BUSY
Language=English
The RPC server is too busy to complete this operation.
.

MessageId=0x0019 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_NETWORK_OPTIONS
Language=English
The network options are invalid.
.

MessageId=0x001A Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_CALL_ACTIVE
Language=English
There is not a remote procedure call active in this thread.
.

MessageId=0x001B Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_CALL_FAILED
Language=English
The remote procedure call failed.
.

MessageId=0x001C Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_CALL_FAILED_DNE
Language=English
The remote procedure call failed and did not execute.
.

MessageId=0x001D Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_PROTOCOL_ERROR
Language=English
An RPC protocol error occurred.
.

MessageId=0x001F Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNSUPPORTED_TRANS_SYN
Language=English
The transfer syntax is not supported by the RPC server.
.

MessageId=0x0021 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNSUPPORTED_TYPE
Language=English
The type UUID is not supported.
.

MessageId=0x0022 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_TAG
Language=English
The tag is invalid.
.

MessageId=0x0023 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_BOUND
Language=English
The array bounds are invalid.
.

MessageId=0x0024 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_ENTRY_NAME
Language=English
The binding does not contain an entry name.
.

MessageId=0x0025 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_NAME_SYNTAX
Language=English
The name syntax is invalid.
.

MessageId=0x0026 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNSUPPORTED_NAME_SYNTAX
Language=English
The name syntax is not supported.
.

MessageId=0x0028 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UUID_NO_ADDRESS
Language=English
No network address is available to use to construct a UUID.
.

MessageId=0x0029 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_DUPLICATE_ENDPOINT
Language=English
The endpoint is a duplicate.
.

MessageId=0x002A Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNKNOWN_AUTHN_TYPE
Language=English
The authentication type is unknown.
.

MessageId=0x002B Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_MAX_CALLS_TOO_SMALL
Language=English
The maximum number of calls is too small.
.

MessageId=0x002C Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_STRING_TOO_LONG
Language=English
The string is too long.
.

MessageId=0x002D Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_PROTSEQ_NOT_FOUND
Language=English
The RPC protocol sequence was not found.
.

MessageId=0x002E Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_PROCNUM_OUT_OF_RANGE
Language=English
The procedure number is out of range.
.

MessageId=0x002F Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_BINDING_HAS_NO_AUTH
Language=English
The binding does not contain any authentication information.
.

MessageId=0x0030 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNKNOWN_AUTHN_SERVICE
Language=English
The authentication service is unknown.
.

MessageId=0x0031 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNKNOWN_AUTHN_LEVEL
Language=English
The authentication level is unknown.
.

MessageId=0x0032 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_AUTH_IDENTITY
Language=English
The security context is invalid.
.

MessageId=0x0033 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNKNOWN_AUTHZ_SERVICE
Language=English
The authorization service is unknown.
.

MessageId=0x0034 Facility=RpcRuntime Severity=Error SymbolicName=EPT_NT_INVALID_ENTRY
Language=English
The entry is invalid.
.

MessageId=0x0035 Facility=RpcRuntime Severity=Error SymbolicName=EPT_NT_CANT_PERFORM_OP
Language=English
The operation cannot be performed.
.

MessageId=0x0036 Facility=RpcRuntime Severity=Error SymbolicName=EPT_NT_NOT_REGISTERED
Language=English
There are no more endpoints available from the endpoint mapper.
.

MessageId=0x0037 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NOTHING_TO_EXPORT
Language=English
No interfaces have been exported.
.

MessageId=0x0038 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INCOMPLETE_NAME
Language=English
The entry name is incomplete.
.

MessageId=0x0039 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_VERS_OPTION
Language=English
The version option is invalid.
.

MessageId=0x003A Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_MORE_MEMBERS
Language=English
There are no more members.
.

MessageId=0x003B Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NOT_ALL_OBJS_UNEXPORTED
Language=English
There is nothing to unexport.
.

MessageId=0x003C Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INTERFACE_NOT_FOUND
Language=English
The interface was not found.
.

MessageId=0x003D Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_ENTRY_ALREADY_EXISTS
Language=English
The entry already exists.
.

MessageId=0x003E Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_ENTRY_NOT_FOUND
Language=English
The entry is not found.
.

MessageId=0x003F Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NAME_SERVICE_UNAVAILABLE
Language=English
The name service is unavailable.
.

MessageId=0x0040 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_NAF_ID
Language=English
The network address family is invalid.
.

MessageId=0x0041 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_CANNOT_SUPPORT
Language=English
The requested operation is not supported.
.

MessageId=0x0042 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_CONTEXT_AVAILABLE
Language=English
No security context is available to allow impersonation.
.

MessageId=0x0043 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INTERNAL_ERROR
Language=English
An internal error occurred in RPC.
.

MessageId=0x0044 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_ZERO_DIVIDE
Language=English
The RPC server attempted an integer divide by zero.
.

MessageId=0x0045 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_ADDRESS_ERROR
Language=English
An addressing error occurred in the RPC server.
.

MessageId=0x0046 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_FP_DIV_ZERO
Language=English
A floating point operation at the RPC server caused a divide by zero.
.

MessageId=0x0047 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_FP_UNDERFLOW
Language=English
A floating point underflow occurred at the RPC server.
.

MessageId=0x0048 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_FP_OVERFLOW
Language=English
A floating point overflow occurred at the RPC server.
.

MessageId=0x0001 Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_NO_MORE_ENTRIES Language=English
The list of RPC servers available for auto-handle binding has been exhausted.
.

MessageId=0x0002 Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_SS_CHAR_TRANS_OPEN_FAIL Language=English
The file designated by DCERPCCHARTRANS cannot be opened.
.

MessageId=0x0003 Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_SS_CHAR_TRANS_SHORT_FILE Language=English
The file containing the character translation table has fewer than
512 bytes.
.

MessageId=0x0004 Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_SS_IN_NULL_CONTEXT Language=English
A null context handle is passed as an [in] parameter.
.

MessageId=0x0005 Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_SS_CONTEXT_MISMATCH Language=English
The context handle does not match any known context handles.
.

MessageId=0x0006 Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_SS_CONTEXT_DAMAGED Language=English
The context handle changed during a call.
.

MessageId=0x0007 Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_SS_HANDLES_MISMATCH Language=English
The binding handles passed to a remote procedure call do not match.
.

MessageId=0x0008 Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_SS_CANNOT_GET_CALL_HANDLE Language=English
The stub is unable to get the call handle.
.

MessageId=0x0009 Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_NULL_REF_POINTER Language=English
A null reference pointer was passed to the stub.
.

MessageId=0x000A Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_ENUM_VALUE_OUT_OF_RANGE Language=English
The enumeration value is out of range.
.

MessageId=0x000B Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_BYTE_COUNT_TOO_SMALL Language=English
The byte count is too small.
.

MessageId=0x000C Facility=RpcStubs Severity=Error SymbolicName=RPC_NT_BAD_STUB_DATA Language=English
The stub received bad data.
.

MessageId=0x0049 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_CALL_IN_PROGRESS Language=English
A remote procedure call is already in progress for this thread.
.

MessageId=0x004A Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_MORE_BINDINGS
Language=English
There are no more bindings.
.


MessageId=0x004B Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_GROUP_MEMBER_NOT_FOUND
Language=English
The group member was not found.
.

MessageId=0x004C Facility=RpcRuntime Severity=Error SymbolicName=EPT_NT_CANT_CREATE
Language=English
The endpoint mapper database could not be created.
.

MessageId=0x004D Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_INVALID_OBJECT
Language=English
The object UUID is the nil UUID.
.

MessageId=0x004F Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_INTERFACES
Language=English
No interfaces have been registered.
.

MessageId=0x0050 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_CALL_CANCELLED
Language=English
The server was altered while processing this call.
.

MessageId=0x0051 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_BINDING_INCOMPLETE
Language=English
The binding handle does not contain all required information.
.

MessageId=0x0052 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_COMM_FAILURE
Language=English
Communications failure.
.

MessageId=0x0053 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_UNSUPPORTED_AUTHN_LEVEL
Language=English
The requested authentication level is not supported.
.

MessageId=0x0054 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NO_PRINC_NAME
Language=English
No principal name registered.
.

MessageId=0x0055 Facility=RpcRuntime Severity=Error SymbolicName=RPC_NT_NOT_RPC_ERROR
Language=English
The error specified is not a valid Windows NT RPC error code.
.

MessageId=0x0056  Facility=RpcRuntime Severity=Informational SymbolicName=RPC_NT_UUID_LOCAL_ONLY
Language=English
A UUID that is valid only on this computer has been allocated.
.

MessageId=0x0057  Facility=RpcRuntime Severity=Error  SymbolicName=RPC_NT_SEC_PKG_ERROR
Language=English
A security package specific error occurred.
.

MessageId=0x0058  Facility=RpcRuntime Severity=Error  SymbolicName=RPC_NT_NOT_CANCELLED
Language=English
Thread is not cancelled.
.

MessageId=0x0059  Facility=RpcStubs Severity=Error  SymbolicName=RPC_NT_INVALID_ES_ACTION
Language=English
Invalid operation on the encoding/decoding handle.
.

MessageId=0x005A  Facility=RpcStubs Severity=Error  SymbolicName=RPC_NT_WRONG_ES_VERSION
Language=English
Incompatible version of the serializing package.
.

MessageId=0x005B  Facility=RpcStubs Severity=Error  SymbolicName=RPC_NT_WRONG_STUB_VERSION
Language=English
Incompatible version of the RPC stub.
.

MessageId=0x005C  Facility=RpcStubs Severity=Error  SymbolicName=RPC_NT_INVALID_PIPE_OBJECT
Language=English
The idl pipe object is invalid or corrupted.
.

MessageId=0x005D  Facility=RpcStubs Severity=Error  SymbolicName=RPC_NT_INVALID_PIPE_OPERATION
Language=English
The operation is invalid for a given idl pipe object.
.

MessageId=0x005E  Facility=RpcStubs Severity=Error  SymbolicName=RPC_NT_WRONG_PIPE_VERSION
Language=English
The idl pipe version is not supported.
.

MessageId=0x00AF  Facility=RpcRuntime Severity=Informational SymbolicName=RPC_NT_SEND_INCOMPLETE
Language=English
Some data remains to be sent in the request buffer.
.


;/*lint -restore */  // Resume checking for different macro definitions // winnt
;// end_ntsecapi
;
;#endif // WIN32_NO_STATUS // winnt
;#endif // _NTSTATUS_