This file is indexed.

/usr/lib/python2.7/dist-packages/impacket/hresult_errors.py is in python-impacket 0.9.15-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
# Copyright (c) 2003-2016 CORE Security Technologies
#
# This software is provided under under a slightly modified version
# of the Apache Software License. See the accompanying LICENSE file
# for more information.
#
# Author: Alberto Solino (beto@coresecurity.com)
#
# Description:
#   HRESULT Errors from [MS-ERREF]. Ideally all the files
#   should grab the error codes from here (big ToDo) 
#

ERROR_MESSAGES = {
        0x00030200: ("STG_S_CONVERTED", "The underlying file was converted to compound file format."),
        0x00030201: ("STG_S_BLOCK", "The storage operation should block until more data is available."),
        0x00030202: ("STG_S_RETRYNOW", "The storage operation should retry immediately."),
        0x00030203: ("STG_S_MONITORING", "The notified event sink will not influence the storage operation."),
        0x00030204: ("STG_S_MULTIPLEOPENS", "Multiple opens prevent consolidated (commit succeeded)."),
        0x00030205: ("STG_S_CONSOLIDATIONFAILED", "Consolidation of the storage file failed (commit succeeded)."),
        0x00030206: ("STG_S_CANNOTCONSOLIDATE", "Consolidation of the storage file is inappropriate (commit succeeded)."),
        0x00040000: ("OLE_S_USEREG", "Use the registry database to provide the requested information."),
        0x00040001: ("OLE_S_STATIC", "Success, but static."),
        0x00040002: ("OLE_S_MAC_CLIPFORMAT", "Macintosh clipboard format."),
        0x00040100: ("DRAGDROP_S_DROP", "Successful drop took place."),
        0x00040101: ("DRAGDROP_S_CANCEL", "Drag-drop operation canceled."),
        0x00040102: ("DRAGDROP_S_USEDEFAULTCURSORS", "Use the default cursor."),
        0x00040130: ("DATA_S_SAMEFORMATETC", "Data has same FORMATETC."),
        0x00040140: ("VIEW_S_ALREADY_FROZEN", "View is already frozen."),
        0x00040170: ("CACHE_S_FORMATETC_NOTSUPPORTED", "FORMATETC not supported."),
        0x00040171: ("CACHE_S_SAMECACHE", "Same cache."),
        0x00040172: ("CACHE_S_SOMECACHES_NOTUPDATED", "Some caches are not updated."),
        0x00040180: ("OLEOBJ_S_INVALIDVERB", "Invalid verb for OLE object."),
        0x00040181: ("OLEOBJ_S_CANNOT_DOVERB_NOW", "Verb number is valid but verb cannot be done now."),
        0x00040182: ("OLEOBJ_S_INVALIDHWND", "Invalid window handle passed."),
        0x000401A0: ("INPLACE_S_TRUNCATED", "Message is too long; some of it had to be truncated before displaying."),
        0x000401C0: ("CONVERT10_S_NO_PRESENTATION", "Unable to convert OLESTREAM to IStorage."),
        0x000401E2: ("MK_S_REDUCED_TO_SELF", "Moniker reduced to itself."),
        0x000401E4: ("MK_S_ME", "Common prefix is this moniker."),
        0x000401E5: ("MK_S_HIM", "Common prefix is input moniker."),
        0x000401E6: ("MK_S_US", "Common prefix is both monikers."),
        0x000401E7: ("MK_S_MONIKERALREADYREGISTERED", "Moniker is already registered in running object table."),
        0x00040200: ("EVENT_S_SOME_SUBSCRIBERS_FAILED", "An event was able to invoke some, but not all, of the subscribers."),
        0x00040202: ("EVENT_S_NOSUBSCRIBERS", "An event was delivered, but there were no subscribers."),
        0x00041300: ("SCHED_S_TASK_READY", "The task is ready to run at its next scheduled time."),
        0x00041301: ("SCHED_S_TASK_RUNNING", "The task is currently running."),
        0x00041302: ("SCHED_S_TASK_DISABLED", "The task will not run at the scheduled times because it has been disabled."),
        0x00041303: ("SCHED_S_TASK_HAS_NOT_RUN", "The task has not yet run."),
        0x00041304: ("SCHED_S_TASK_NO_MORE_RUNS", "There are no more runs scheduled for this task."),
        0x00041305: ("SCHED_S_TASK_NOT_SCHEDULED", "One or more of the properties that are needed to run this task on a schedule have not been set."),
        0x00041306: ("SCHED_S_TASK_TERMINATED", "The last run of the task was terminated by the user."),
        0x00041307: ("SCHED_S_TASK_NO_VALID_TRIGGERS", "Either the task has no triggers, or the existing triggers are disabled or not set."),
        0x00041308: ("SCHED_S_EVENT_TRIGGER", "Event triggers do not have set run times."),
        0x0004131B: ("SCHED_S_SOME_TRIGGERS_FAILED", "The task is registered, but not all specified triggers will start the task."),
        0x0004131C: ("SCHED_S_BATCH_LOGON_PROBLEM", "The task is registered, but it may fail to start. Batch logon privilege needs to be enabled for the task principal."),
        0x0004D000: ("XACT_S_ASYNC", "An asynchronous operation was specified. The operation has begun, but its outcome is not known yet."),
        0x0004D002: ("XACT_S_READONLY", "The method call succeeded because the transaction was read-only."),
        0x0004D003: ("XACT_S_SOMENORETAIN", "The transaction was successfully aborted. However, this is a coordinated transaction, and a number of enlisted resources were aborted outright because they could not support abort-retaining semantics."),
        0x0004D004: ("XACT_S_OKINFORM", "No changes were made during this call, but the sink wants another chance to look if any other sinks make further changes."),
        0x0004D005: ("XACT_S_MADECHANGESCONTENT", "The sink is content and wants the transaction to proceed. Changes were made to one or more resources during this call."),
        0x0004D006: ("XACT_S_MADECHANGESINFORM", "The sink is for the moment and wants the transaction to proceed, but if other changes are made following this return by other event sinks, this sink wants another chance to look."),
        0x0004D007: ("XACT_S_ALLNORETAIN", "The transaction was successfully aborted. However, the abort was nonretaining."),
        0x0004D008: ("XACT_S_ABORTING", "An abort operation was already in progress."),
        0x0004D009: ("XACT_S_SINGLEPHASE", "The resource manager has performed a single-phase commit of the transaction."),
        0x0004D00A: ("XACT_S_LOCALLY_OK", "The local transaction has not aborted."),
        0x0004D010: ("XACT_S_LASTRESOURCEMANAGER", "The resource manager has requested to be the coordinator (last resource manager) for the transaction."),
        0x00080012: ("CO_S_NOTALLINTERFACES", "Not all the requested interfaces were available."),
        0x00080013: ("CO_S_MACHINENAMENOTFOUND", "The specified machine name was not found in the cache."),
        0x00090312: ("SEC_I_CONTINUE_NEEDED", "The function completed successfully, but it must be called again to complete the context."),
        0x00090313: ("SEC_I_COMPLETE_NEEDED", "The function completed successfully, but CompleteToken must be called."),
        0x00090314: ("SEC_I_COMPLETE_AND_CONTINUE", "The function completed successfully, but both CompleteToken and this function must be called to complete the context."),
        0x00090315: ("SEC_I_LOCAL_LOGON", "The logon was completed, but no network authority was available. The logon was made using locally known information."),
        0x00090317: ("SEC_I_CONTEXT_EXPIRED", "The context has expired and can no longer be used."),
        0x00090320: ("SEC_I_INCOMPLETE_CREDENTIALS", "The credentials supplied were not complete and could not be verified. Additional information can be returned from the context."),
        0x00090321: ("SEC_I_RENEGOTIATE", "The context data must be renegotiated with the peer."),
        0x00090323: ("SEC_I_NO_LSA_CONTEXT", "There is no LSA mode context associated with this context."),
        0x0009035C: ("SEC_I_SIGNATURE_NEEDED", "A signature operation must be performed before the user can authenticate."),
        0x00091012: ("CRYPT_I_NEW_PROTECTION_REQUIRED", "The protected data needs to be reprotected."),
        0x000D0000: ("NS_S_CALLPENDING", "The requested operation is pending completion."),
        0x000D0001: ("NS_S_CALLABORTED", "The requested operation was aborted by the client."),
        0x000D0002: ("NS_S_STREAM_TRUNCATED", "The stream was purposefully stopped before completion."),
        0x000D0BC8: ("NS_S_REBUFFERING", "The requested operation has caused the source to rebuffer."),
        0x000D0BC9: ("NS_S_DEGRADING_QUALITY", "The requested operation has caused the source to degrade codec quality."),
        0x000D0BDB: ("NS_S_TRANSCRYPTOR_EOF", "The transcryptor object has reached end of file."),
        0x000D0FE8: ("NS_S_WMP_UI_VERSIONMISMATCH", "An upgrade may be needed for the theme manager to correctly show this skin. Skin reports version: %.1f."),
        0x000D0FE9: ("NS_S_WMP_EXCEPTION", "An error occurred in one of the UI components."),
        0x000D1040: ("NS_S_WMP_LOADED_GIF_IMAGE", "Successfully loaded a GIF file."),
        0x000D1041: ("NS_S_WMP_LOADED_PNG_IMAGE", "Successfully loaded a PNG file."),
        0x000D1042: ("NS_S_WMP_LOADED_BMP_IMAGE", "Successfully loaded a BMP file."),
        0x000D1043: ("NS_S_WMP_LOADED_JPG_IMAGE", "Successfully loaded a JPG file."),
        0x000D104F: ("NS_S_WMG_FORCE_DROP_FRAME", "Drop this frame."),
        0x000D105F: ("NS_S_WMR_ALREADYRENDERED", "The specified stream has already been rendered."),
        0x000D1060: ("NS_S_WMR_PINTYPEPARTIALMATCH", "The specified type partially matches this pin type."),
        0x000D1061: ("NS_S_WMR_PINTYPEFULLMATCH", "The specified type fully matches this pin type."),
        0x000D1066: ("NS_S_WMG_ADVISE_DROP_FRAME", "The timestamp is late compared to the current render position. Advise dropping this frame."),
        0x000D1067: ("NS_S_WMG_ADVISE_DROP_TO_KEYFRAME", "The timestamp is severely late compared to the current render position. Advise dropping everything up to the next key frame."),
        0x000D10DB: ("NS_S_NEED_TO_BUY_BURN_RIGHTS", "No burn rights. You will be prompted to buy burn rights when you try to burn this file to an audio CD."),
        0x000D10FE: ("NS_S_WMPCORE_PLAYLISTCLEARABORT", "Failed to clear playlist because it was aborted by user."),
        0x000D10FF: ("NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT", "Failed to remove item in the playlist since it was aborted by user."),
        0x000D1102: ("NS_S_WMPCORE_PLAYLIST_CREATION_PENDING", "Playlist is being generated asynchronously."),
        0x000D1103: ("NS_S_WMPCORE_MEDIA_VALIDATION_PENDING", "Validation of the media is pending."),
        0x000D1104: ("NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED", "Encountered more than one Repeat block during ASX processing."),
        0x000D1105: ("NS_S_WMPCORE_COMMAND_NOT_AVAILABLE", "Current state of WMP disallows calling this method or property."),
        0x000D1106: ("NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED", "Name for the playlist has been auto generated."),
        0x000D1107: ("NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS", "The imported playlist does not contain all items from the original."),
        0x000D1108: ("NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA", "The M3U playlist has been ignored because it only contains one item."),
        0x000D1109: ("NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING", "The open for the child playlist associated with this media is pending."),
        0x000D110A: ("NS_S_WMPCORE_MORE_NODES_AVAIABLE", "More nodes support the interface requested, but the array for returning them is full."),
        0x000D1135: ("NS_S_WMPBR_SUCCESS", "Backup or Restore successful!."),
        0x000D1136: ("NS_S_WMPBR_PARTIALSUCCESS", "Transfer complete with limitations."),
        0x000D1144: ("NS_S_WMPEFFECT_TRANSPARENT", "Request to the effects control to change transparency status to transparent."),
        0x000D1145: ("NS_S_WMPEFFECT_OPAQUE", "Request to the effects control to change transparency status to opaque."),
        0x000D114E: ("NS_S_OPERATION_PENDING", "The requested application pane is performing an operation and will not be released."),
        0x000D1359: ("NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE", "The file is only available for purchase when you buy the entire album."),
        0x000D135E: ("NS_S_NAVIGATION_COMPLETE_WITH_ERRORS", "There were problems completing the requested navigation. There are identifiers missing in the catalog."),
        0x000D1361: ("NS_S_TRACK_ALREADY_DOWNLOADED", "Track already downloaded."),
        0x000D1519: ("NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS", "The publishing point successfully started, but one or more of the requested data writer plug-ins failed."),
        0x000D2726: ("NS_S_DRM_LICENSE_ACQUIRED", "Status message: The license was acquired."),
        0x000D2727: ("NS_S_DRM_INDIVIDUALIZED", "Status message: The security upgrade has been completed."),
        0x000D2746: ("NS_S_DRM_MONITOR_CANCELLED", "Status message: License monitoring has been canceled."),
        0x000D2747: ("NS_S_DRM_ACQUIRE_CANCELLED", "Status message: License acquisition has been canceled."),
        0x000D276E: ("NS_S_DRM_BURNABLE_TRACK", "The track is burnable and had no playlist burn limit."),
        0x000D276F: ("NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTION", "The track is burnable but has a playlist burn limit."),
        0x000D27DE: ("NS_S_DRM_NEEDS_INDIVIDUALIZATION", "A security upgrade is required to perform the operation on this media file."),
        0x000D2AF8: ("NS_S_REBOOT_RECOMMENDED", "Installation was successful; however, some file cleanup is not complete. For best results, restart your computer."),
        0x000D2AF9: ("NS_S_REBOOT_REQUIRED", "Installation was successful; however, some file cleanup is not complete. To continue, you must restart your computer."),
        0x000D2F09: ("NS_S_EOSRECEDING", "EOS hit during rewinding."),
        0x000D2F0D: ("NS_S_CHANGENOTICE", "Internal."),
        0x001F0001: ("ERROR_FLT_IO_COMPLETE", "The IO was completed by a filter."),
        0x00262307: ("ERROR_GRAPHICS_MODE_NOT_PINNED", "No mode is pinned on the specified VidPN source or target."),
        0x0026231E: ("ERROR_GRAPHICS_NO_PREFERRED_MODE", "Specified mode set does not specify preference for one of its modes."),
        0x0026234B: ("ERROR_GRAPHICS_DATASET_IS_EMPTY", "Specified data set (for example, mode set, frequency range set, descriptor set, and topology) is empty."),
        0x0026234C: ("ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET", "Specified data set (for example, mode set, frequency range set, descriptor set, and topology) does not contain any more elements."),
        0x00262351: ("ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED", "Specified content transformation is not pinned on the specified VidPN present path."),
        0x00300100: ("PLA_S_PROPERTY_IGNORED", "Property value will be ignored."),
        0x00340001: ("ERROR_NDIS_INDICATION_REQUIRED", "The request will be completed later by a Network Driver Interface Specification (NDIS) status indication."),
        0x0DEAD100: ("TRK_S_OUT_OF_SYNC", "The VolumeSequenceNumber of a MOVE_NOTIFICATION request is incorrect."),
        0x0DEAD102: ("TRK_VOLUME_NOT_FOUND", "The VolumeID in a request was not found in the server's ServerVolumeTable."),
        0x0DEAD103: ("TRK_VOLUME_NOT_OWNED", "A notification was sent to the LnkSvrMessage method, but the RequestMachine for the request was not the VolumeOwner for a VolumeID in the request."),
        0x0DEAD107: ("TRK_S_NOTIFICATION_QUOTA_EXCEEDED", "The server received a MOVE_NOTIFICATION request, but the FileTable size limit has already been reached."),
        0x400D004F: ("NS_I_TIGER_START", "The Title Server %1 is running."),
        0x400D0051: ("NS_I_CUB_START", "Content Server %1 (%2) is starting."),
        0x400D0052: ("NS_I_CUB_RUNNING", "Content Server %1 (%2) is running."),
        0x400D0054: ("NS_I_DISK_START", "Disk %1 ( %2 ) on Content Server %3, is running."),
        0x400D0056: ("NS_I_DISK_REBUILD_STARTED", "Started rebuilding disk %1 ( %2 ) on Content Server %3."),
        0x400D0057: ("NS_I_DISK_REBUILD_FINISHED", "Finished rebuilding disk %1 ( %2 ) on Content Server %3."),
        0x400D0058: ("NS_I_DISK_REBUILD_ABORTED", "Aborted rebuilding disk %1 ( %2 ) on Content Server %3."),
        0x400D0059: ("NS_I_LIMIT_FUNNELS", "A NetShow administrator at network location %1 set the data stream limit to %2 streams."),
        0x400D005A: ("NS_I_START_DISK", "A NetShow administrator at network location %1 started disk %2."),
        0x400D005B: ("NS_I_STOP_DISK", "A NetShow administrator at network location %1 stopped disk %2."),
        0x400D005C: ("NS_I_STOP_CUB", "A NetShow administrator at network location %1 stopped Content Server %2."),
        0x400D005D: ("NS_I_KILL_USERSESSION", "A NetShow administrator at network location %1 aborted user session %2 from the system."),
        0x400D005E: ("NS_I_KILL_CONNECTION", "A NetShow administrator at network location %1 aborted obsolete connection %2 from the system."),
        0x400D005F: ("NS_I_REBUILD_DISK", "A NetShow administrator at network location %1 started rebuilding disk %2."),
        0x400D0069: ("MCMADM_I_NO_EVENTS", "Event initialization failed, there will be no MCM events."),
        0x400D006E: ("NS_I_LOGGING_FAILED", "The logging operation failed."),
        0x400D0070: ("NS_I_LIMIT_BANDWIDTH", "A NetShow administrator at network location %1 set the maximum bandwidth limit to %2 bps."),
        0x400D0191: ("NS_I_CUB_UNFAIL_LINK", "Content Server %1 (%2) has established its link to Content Server %3."),
        0x400D0193: ("NS_I_RESTRIPE_START", "Restripe operation has started."),
        0x400D0194: ("NS_I_RESTRIPE_DONE", "Restripe operation has completed."),
        0x400D0196: ("NS_I_RESTRIPE_DISK_OUT", "Content disk %1 (%2) on Content Server %3 has been restriped out."),
        0x400D0197: ("NS_I_RESTRIPE_CUB_OUT", "Content server %1 (%2) has been restriped out."),
        0x400D0198: ("NS_I_DISK_STOP", "Disk %1 ( %2 ) on Content Server %3, has been offlined."),
        0x400D14BE: ("NS_I_PLAYLIST_CHANGE_RECEDING", "The playlist change occurred while receding."),
        0x400D2EFF: ("NS_I_RECONNECTED", "The client is reconnected."),
        0x400D2F01: ("NS_I_NOLOG_STOP", "Forcing a switch to a pending header on start."),
        0x400D2F03: ("NS_I_EXISTING_PACKETIZER", "There is already an existing packetizer plugin for the stream."),
        0x400D2F04: ("NS_I_MANUAL_PROXY", "The proxy setting is manual."),
        0x40262009: ("ERROR_GRAPHICS_DRIVER_MISMATCH", "The kernel driver detected a version mismatch between it and the user mode driver."),
        0x4026242F: ("ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS", "Child device presence was not reliably detected."),
        0x40262437: ("ERROR_GRAPHICS_LEADLINK_START_DEFERRED", "Starting the lead-link adapter has been deferred temporarily."),
        0x40262439: ("ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY", "The display adapter is being polled for children too frequently at the same polling level."),
        0x4026243A: ("ERROR_GRAPHICS_START_DEFERRED", "Starting the adapter has been deferred temporarily."),
        0x8000000A: ("E_PENDING", "The data necessary to complete this operation is not yet available."),
        0x80004001: ("E_NOTIMPL", "Not implemented."),
        0x80004002: ("E_NOINTERFACE", "No such interface supported."),
        0x80004003: ("E_POINTER", "Invalid pointer."),
        0x80004004: ("E_ABORT", "Operation aborted."),
        0x80004005: ("E_FAIL", "Unspecified error."),
        0x80004006: ("CO_E_INIT_TLS", "Thread local storage failure."),
        0x80004007: ("CO_E_INIT_SHARED_ALLOCATOR", "Get shared memory allocator failure."),
        0x80004008: ("CO_E_INIT_MEMORY_ALLOCATOR", "Get memory allocator failure."),
        0x80004009: ("CO_E_INIT_CLASS_CACHE", "Unable to initialize class cache."),
        0x8000400A: ("CO_E_INIT_RPC_CHANNEL", "Unable to initialize remote procedure call (RPC) services."),
        0x8000400B: ("CO_E_INIT_TLS_SET_CHANNEL_CONTROL", "Cannot set thread local storage channel control."),
        0x8000400C: ("CO_E_INIT_TLS_CHANNEL_CONTROL", "Could not allocate thread local storage channel control."),
        0x8000400D: ("CO_E_INIT_UNACCEPTED_USER_ALLOCATOR", "The user-supplied memory allocator is unacceptable."),
        0x8000400E: ("CO_E_INIT_SCM_MUTEX_EXISTS", "The OLE service mutex already exists."),
        0x8000400F: ("CO_E_INIT_SCM_FILE_MAPPING_EXISTS", "The OLE service file mapping already exists."),
        0x80004010: ("CO_E_INIT_SCM_MAP_VIEW_OF_FILE", "Unable to map view of file for OLE service."),
        0x80004011: ("CO_E_INIT_SCM_EXEC_FAILURE", "Failure attempting to launch OLE service."),
        0x80004012: ("CO_E_INIT_ONLY_SINGLE_THREADED", "There was an attempt to call CoInitialize a second time while single-threaded."),
        0x80004013: ("CO_E_CANT_REMOTE", "A Remote activation was necessary but was not allowed."),
        0x80004014: ("CO_E_BAD_SERVER_NAME", "A Remote activation was necessary, but the server name provided was invalid."),
        0x80004015: ("CO_E_WRONG_SERVER_IDENTITY", "The class is configured to run as a security ID different from the caller."),
        0x80004016: ("CO_E_OLE1DDE_DISABLED", "Use of OLE1 services requiring Dynamic Data Exchange (DDE) Windows is disabled."),
        0x80004017: ("CO_E_RUNAS_SYNTAX", "A RunAs specification must be <domain name>\<user name> or simply <user name>."),
        0x80004018: ("CO_E_CREATEPROCESS_FAILURE", "The server process could not be started. The path name may be incorrect."),
        0x80004019: ("CO_E_RUNAS_CREATEPROCESS_FAILURE", "The server process could not be started as the configured identity. The path name may be incorrect or unavailable."),
        0x8000401A: ("CO_E_RUNAS_LOGON_FAILURE", "The server process could not be started because the configured identity is incorrect. Check the user name and password."),
        0x8000401B: ("CO_E_LAUNCH_PERMSSION_DENIED", "The client is not allowed to launch this server."),
        0x8000401C: ("CO_E_START_SERVICE_FAILURE", "The service providing this server could not be started."),
        0x8000401D: ("CO_E_REMOTE_COMMUNICATION_FAILURE", "This computer was unable to communicate with the computer providing the server."),
        0x8000401E: ("CO_E_SERVER_START_TIMEOUT", "The server did not respond after being launched."),
        0x8000401F: ("CO_E_CLSREG_INCONSISTENT", "The registration information for this server is inconsistent or incomplete."),
        0x80004020: ("CO_E_IIDREG_INCONSISTENT", "The registration information for this interface is inconsistent or incomplete."),
        0x80004021: ("CO_E_NOT_SUPPORTED", "The operation attempted is not supported."),
        0x80004022: ("CO_E_RELOAD_DLL", "A DLL must be loaded."),
        0x80004023: ("CO_E_MSI_ERROR", "A Microsoft Software Installer error was encountered."),
        0x80004024: ("CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT", "The specified activation could not occur in the client context as specified."),
        0x80004025: ("CO_E_SERVER_PAUSED", "Activations on the server are paused."),
        0x80004026: ("CO_E_SERVER_NOT_PAUSED", "Activations on the server are not paused."),
        0x80004027: ("CO_E_CLASS_DISABLED", "The component or application containing the component has been disabled."),
        0x80004028: ("CO_E_CLRNOTAVAILABLE", "The common language runtime is not available."),
        0x80004029: ("CO_E_ASYNC_WORK_REJECTED", "The thread-pool rejected the submitted asynchronous work."),
        0x8000402A: ("CO_E_SERVER_INIT_TIMEOUT", "The server started, but it did not finish initializing in a timely fashion."),
        0x8000402B: ("CO_E_NO_SECCTX_IN_ACTIVATE", "Unable to complete the call because there is no COM+ security context inside IObjectControl.Activate."),
        0x80004030: ("CO_E_TRACKER_CONFIG", "The provided tracker configuration is invalid."),
        0x80004031: ("CO_E_THREADPOOL_CONFIG", "The provided thread pool configuration is invalid."),
        0x80004032: ("CO_E_SXS_CONFIG", "The provided side-by-side configuration is invalid."),
        0x80004033: ("CO_E_MALFORMED_SPN", "The server principal name (SPN) obtained during security negotiation is malformed."),
        0x8000FFFF: ("E_UNEXPECTED", "Catastrophic failure."),
        0x80010001: ("RPC_E_CALL_REJECTED", "Call was rejected by callee."),
        0x80010002: ("RPC_E_CALL_CANCELED", "Call was canceled by the message filter."),
        0x80010003: ("RPC_E_CANTPOST_INSENDCALL", "The caller is dispatching an intertask SendMessage call and cannot call out via PostMessage."),
        0x80010004: ("RPC_E_CANTCALLOUT_INASYNCCALL", "The caller is dispatching an asynchronous call and cannot make an outgoing call on behalf of this call."),
        0x80010005: ("RPC_E_CANTCALLOUT_INEXTERNALCALL", "It is illegal to call out while inside message filter."),
        0x80010006: ("RPC_E_CONNECTION_TERMINATED", "The connection terminated or is in a bogus state and can no longer be used. Other connections are still valid."),
        0x80010007: ("RPC_E_SERVER_DIED", "The callee (the server, not the server application) is not available and disappeared; all connections are invalid. The call may have executed."),
        0x80010008: ("RPC_E_CLIENT_DIED", "The caller (client) disappeared while the callee (server) was processing a call."),
        0x80010009: ("RPC_E_INVALID_DATAPACKET", "The data packet with the marshaled parameter data is incorrect."),
        0x8001000A: ("RPC_E_CANTTRANSMIT_CALL", "The call was not transmitted properly; the message queue was full and was not emptied after yielding."),
        0x8001000B: ("RPC_E_CLIENT_CANTMARSHAL_DATA", "The client RPC caller cannot marshal the parameter data due to errors (such as low memory)."),
        0x8001000C: ("RPC_E_CLIENT_CANTUNMARSHAL_DATA", "The client RPC caller cannot unmarshal the return data due to errors (such as low memory)."),
        0x8001000D: ("RPC_E_SERVER_CANTMARSHAL_DATA", "The server RPC callee cannot marshal the return data due to errors (such as low memory)."),
        0x8001000E: ("RPC_E_SERVER_CANTUNMARSHAL_DATA", "The server RPC callee cannot unmarshal the parameter data due to errors (such as low memory)."),
        0x8001000F: ("RPC_E_INVALID_DATA", "Received data is invalid. The data may be server or client data."),
        0x80010010: ("RPC_E_INVALID_PARAMETER", "A particular parameter is invalid and cannot be (un)marshaled."),
        0x80010011: ("RPC_E_CANTCALLOUT_AGAIN", "There is no second outgoing call on same channel in DDE conversation."),
        0x80010012: ("RPC_E_SERVER_DIED_DNE", "The callee (the server, not the server application) is not available and disappeared; all connections are invalid. The call did not execute."),
        0x80010100: ("RPC_E_SYS_CALL_FAILED", "System call failed."),
        0x80010101: ("RPC_E_OUT_OF_RESOURCES", "Could not allocate some required resource (such as memory or events)"),
        0x80010102: ("RPC_E_ATTEMPTED_MULTITHREAD", "Attempted to make calls on more than one thread in single-threaded mode."),
        0x80010103: ("RPC_E_NOT_REGISTERED", "The requested interface is not registered on the server object."),
        0x80010104: ("RPC_E_FAULT", "RPC could not call the server or could not return the results of calling the server."),
        0x80010105: ("RPC_E_SERVERFAULT", "The server threw an exception."),
        0x80010106: ("RPC_E_CHANGED_MODE", "Cannot change thread mode after it is set."),
        0x80010107: ("RPC_E_INVALIDMETHOD", "The method called does not exist on the server."),
        0x80010108: ("RPC_E_DISCONNECTED", "The object invoked has disconnected from its clients."),
        0x80010109: ("RPC_E_RETRY", "The object invoked chose not to process the call now. Try again later."),
        0x8001010A: ("RPC_E_SERVERCALL_RETRYLATER", "The message filter indicated that the application is busy."),
        0x8001010B: ("RPC_E_SERVERCALL_REJECTED", "The message filter rejected the call."),
        0x8001010C: ("RPC_E_INVALID_CALLDATA", "A call control interface was called with invalid data."),
        0x8001010D: ("RPC_E_CANTCALLOUT_ININPUTSYNCCALL", "An outgoing call cannot be made because the application is dispatching an input-synchronous call."),
        0x8001010E: ("RPC_E_WRONG_THREAD", "The application called an interface that was marshaled for a different thread."),
        0x8001010F: ("RPC_E_THREAD_NOT_INIT", "CoInitialize has not been called on the current thread."),
        0x80010110: ("RPC_E_VERSION_MISMATCH", "The version of OLE on the client and server machines does not match."),
        0x80010111: ("RPC_E_INVALID_HEADER", "OLE received a packet with an invalid header."),
        0x80010112: ("RPC_E_INVALID_EXTENSION", "OLE received a packet with an invalid extension."),
        0x80010113: ("RPC_E_INVALID_IPID", "The requested object or interface does not exist."),
        0x80010114: ("RPC_E_INVALID_OBJECT", "The requested object does not exist."),
        0x80010115: ("RPC_S_CALLPENDING", "OLE has sent a request and is waiting for a reply."),
        0x80010116: ("RPC_S_WAITONTIMER", "OLE is waiting before retrying a request."),
        0x80010117: ("RPC_E_CALL_COMPLETE", "Call context cannot be accessed after call completed."),
        0x80010118: ("RPC_E_UNSECURE_CALL", "Impersonate on unsecure calls is not supported."),
        0x80010119: ("RPC_E_TOO_LATE", "Security must be initialized before any interfaces are marshaled or unmarshaled. It cannot be changed after initialized."),
        0x8001011A: ("RPC_E_NO_GOOD_SECURITY_PACKAGES", "No security packages are installed on this machine, the user is not logged on, or there are no compatible security packages between the client and server."),
        0x8001011B: ("RPC_E_ACCESS_DENIED", "Access is denied."),
        0x8001011C: ("RPC_E_REMOTE_DISABLED", "Remote calls are not allowed for this process."),
        0x8001011D: ("RPC_E_INVALID_OBJREF", "The marshaled interface data packet (OBJREF) has an invalid or unknown format."),
        0x8001011E: ("RPC_E_NO_CONTEXT", "No context is associated with this call. This happens for some custom marshaled calls and on the client side of the call."),
        0x8001011F: ("RPC_E_TIMEOUT", "This operation returned because the time-out period expired."),
        0x80010120: ("RPC_E_NO_SYNC", "There are no synchronize objects to wait on."),
        0x80010121: ("RPC_E_FULLSIC_REQUIRED", "Full subject issuer chain Secure Sockets Layer (SSL) principal name expected from the server."),
        0x80010122: ("RPC_E_INVALID_STD_NAME", "Principal name is not a valid Microsoft standard (msstd) name."),
        0x80010123: ("CO_E_FAILEDTOIMPERSONATE", "Unable to impersonate DCOM client."),
        0x80010124: ("CO_E_FAILEDTOGETSECCTX", "Unable to obtain server's security context."),
        0x80010125: ("CO_E_FAILEDTOOPENTHREADTOKEN", "Unable to open the access token of the current thread."),
        0x80010126: ("CO_E_FAILEDTOGETTOKENINFO", "Unable to obtain user information from an access token."),
        0x80010127: ("CO_E_TRUSTEEDOESNTMATCHCLIENT", "The client who called IAccessControl::IsAccessPermitted was not the trustee provided to the method."),
        0x80010128: ("CO_E_FAILEDTOQUERYCLIENTBLANKET", "Unable to obtain the client's security blanket."),
        0x80010129: ("CO_E_FAILEDTOSETDACL", "Unable to set a discretionary access control list (ACL) into a security descriptor."),
        0x8001012A: ("CO_E_ACCESSCHECKFAILED", "The system function AccessCheck returned false."),
        0x8001012B: ("CO_E_NETACCESSAPIFAILED", "Either NetAccessDel or NetAccessAdd returned an error code."),
        0x8001012C: ("CO_E_WRONGTRUSTEENAMESYNTAX", "One of the trustee strings provided by the user did not conform to the <Domain>\<Name> syntax and it was not the *\" string\"."),
        0x8001012D: ("CO_E_INVALIDSID", "One of the security identifiers provided by the user was invalid."),
        0x8001012E: ("CO_E_CONVERSIONFAILED", "Unable to convert a wide character trustee string to a multiple-byte trustee string."),
        0x8001012F: ("CO_E_NOMATCHINGSIDFOUND", "Unable to find a security identifier that corresponds to a trustee string provided by the user."),
        0x80010130: ("CO_E_LOOKUPACCSIDFAILED", "The system function LookupAccountSID failed."),
        0x80010131: ("CO_E_NOMATCHINGNAMEFOUND", "Unable to find a trustee name that corresponds to a security identifier provided by the user."),
        0x80010132: ("CO_E_LOOKUPACCNAMEFAILED", "The system function LookupAccountName failed."),
        0x80010133: ("CO_E_SETSERLHNDLFAILED", "Unable to set or reset a serialization handle."),
        0x80010134: ("CO_E_FAILEDTOGETWINDIR", "Unable to obtain the Windows directory."),
        0x80010135: ("CO_E_PATHTOOLONG", "Path too long."),
        0x80010136: ("CO_E_FAILEDTOGENUUID", "Unable to generate a UUID."),
        0x80010137: ("CO_E_FAILEDTOCREATEFILE", "Unable to create file."),
        0x80010138: ("CO_E_FAILEDTOCLOSEHANDLE", "Unable to close a serialization handle or a file handle."),
        0x80010139: ("CO_E_EXCEEDSYSACLLIMIT", "The number of access control entries (ACEs) in an ACL exceeds the system limit."),
        0x8001013A: ("CO_E_ACESINWRONGORDER", "Not all the DENY_ACCESS ACEs are arranged in front of the GRANT_ACCESS ACEs in the stream."),
        0x8001013B: ("CO_E_INCOMPATIBLESTREAMVERSION", "The version of ACL format in the stream is not supported by this implementation of IAccessControl."),
        0x8001013C: ("CO_E_FAILEDTOOPENPROCESSTOKEN", "Unable to open the access token of the server process."),
        0x8001013D: ("CO_E_DECODEFAILED", "Unable to decode the ACL in the stream provided by the user."),
        0x8001013F: ("CO_E_ACNOTINITIALIZED", "The COM IAccessControl object is not initialized."),
        0x80010140: ("CO_E_CANCEL_DISABLED", "Call Cancellation is disabled."),
        0x8001FFFF: ("RPC_E_UNEXPECTED", "An internal error occurred."),
        0x80020001: ("DISP_E_UNKNOWNINTERFACE", "Unknown interface."),
        0x80020003: ("DISP_E_MEMBERNOTFOUND", "Member not found."),
        0x80020004: ("DISP_E_PARAMNOTFOUND", "Parameter not found."),
        0x80020005: ("DISP_E_TYPEMISMATCH", "Type mismatch."),
        0x80020006: ("DISP_E_UNKNOWNNAME", "Unknown name."),
        0x80020007: ("DISP_E_NONAMEDARGS", "No named arguments."),
        0x80020008: ("DISP_E_BADVARTYPE", "Bad variable type."),
        0x80020009: ("DISP_E_EXCEPTION", "Exception occurred."),
        0x8002000A: ("DISP_E_OVERFLOW", "Out of present range."),
        0x8002000B: ("DISP_E_BADINDEX", "Invalid index."),
        0x8002000C: ("DISP_E_UNKNOWNLCID", "Unknown language."),
        0x8002000D: ("DISP_E_ARRAYISLOCKED", "Memory is locked."),
        0x8002000E: ("DISP_E_BADPARAMCOUNT", "Invalid number of parameters."),
        0x8002000F: ("DISP_E_PARAMNOTOPTIONAL", "Parameter not optional."),
        0x80020010: ("DISP_E_BADCALLEE", "Invalid callee."),
        0x80020011: ("DISP_E_NOTACOLLECTION", "Does not support a collection."),
        0x80020012: ("DISP_E_DIVBYZERO", "Division by zero."),
        0x80020013: ("DISP_E_BUFFERTOOSMALL", "Buffer too small."),
        0x80028016: ("TYPE_E_BUFFERTOOSMALL", "Buffer too small."),
        0x80028017: ("TYPE_E_FIELDNOTFOUND", "Field name not defined in the record."),
        0x80028018: ("TYPE_E_INVDATAREAD", "Old format or invalid type library."),
        0x80028019: ("TYPE_E_UNSUPFORMAT", "Old format or invalid type library."),
        0x8002801C: ("TYPE_E_REGISTRYACCESS", "Error accessing the OLE registry."),
        0x8002801D: ("TYPE_E_LIBNOTREGISTERED", "Library not registered."),
        0x80028027: ("TYPE_E_UNDEFINEDTYPE", "Bound to unknown type."),
        0x80028028: ("TYPE_E_QUALIFIEDNAMEDISALLOWED", "Qualified name disallowed."),
        0x80028029: ("TYPE_E_INVALIDSTATE", "Invalid forward reference, or reference to uncompiled type."),
        0x8002802A: ("TYPE_E_WRONGTYPEKIND", "Type mismatch."),
        0x8002802B: ("TYPE_E_ELEMENTNOTFOUND", "Element not found."),
        0x8002802C: ("TYPE_E_AMBIGUOUSNAME", "Ambiguous name."),
        0x8002802D: ("TYPE_E_NAMECONFLICT", "Name already exists in the library."),
        0x8002802E: ("TYPE_E_UNKNOWNLCID", "Unknown language code identifier (LCID)."),
        0x8002802F: ("TYPE_E_DLLFUNCTIONNOTFOUND", "Function not defined in specified DLL."),
        0x800288BD: ("TYPE_E_BADMODULEKIND", "Wrong module kind for the operation."),
        0x800288C5: ("TYPE_E_SIZETOOBIG", "Size may not exceed 64 KB."),
        0x800288C6: ("TYPE_E_DUPLICATEID", "Duplicate ID in inheritance hierarchy."),
        0x800288CF: ("TYPE_E_INVALIDID", "Incorrect inheritance depth in standard OLE hmember."),
        0x80028CA0: ("TYPE_E_TYPEMISMATCH", "Type mismatch."),
        0x80028CA1: ("TYPE_E_OUTOFBOUNDS", "Invalid number of arguments."),
        0x80028CA2: ("TYPE_E_IOERROR", "I/O error."),
        0x80028CA3: ("TYPE_E_CANTCREATETMPFILE", "Error creating unique .tmp file."),
        0x80029C4A: ("TYPE_E_CANTLOADLIBRARY", "Error loading type library or DLL."),
        0x80029C83: ("TYPE_E_INCONSISTENTPROPFUNCS", "Inconsistent property functions."),
        0x80029C84: ("TYPE_E_CIRCULARTYPE", "Circular dependency between types and modules."),
        0x80030001: ("STG_E_INVALIDFUNCTION", "Unable to perform requested operation."),
        0x80030002: ("STG_E_FILENOTFOUND", "%1 could not be found."),
        0x80030003: ("STG_E_PATHNOTFOUND", "The path %1 could not be found."),
        0x80030004: ("STG_E_TOOMANYOPENFILES", "There are insufficient resources to open another file."),
        0x80030005: ("STG_E_ACCESSDENIED", "Access denied."),
        0x80030006: ("STG_E_INVALIDHANDLE", "Attempted an operation on an invalid object."),
        0x80030008: ("STG_E_INSUFFICIENTMEMORY", "There is insufficient memory available to complete operation."),
        0x80030009: ("STG_E_INVALIDPOINTER", "Invalid pointer error."),
        0x80030012: ("STG_E_NOMOREFILES", "There are no more entries to return."),
        0x80030013: ("STG_E_DISKISWRITEPROTECTED", "Disk is write-protected."),
        0x80030019: ("STG_E_SEEKERROR", "An error occurred during a seek operation."),
        0x8003001D: ("STG_E_WRITEFAULT", "A disk error occurred during a write operation."),
        0x8003001E: ("STG_E_READFAULT", "A disk error occurred during a read operation."),
        0x80030020: ("STG_E_SHAREVIOLATION", "A share violation has occurred."),
        0x80030021: ("STG_E_LOCKVIOLATION", "A lock violation has occurred."),
        0x80030050: ("STG_E_FILEALREADYEXISTS", "%1 already exists."),
        0x80030057: ("STG_E_INVALIDPARAMETER", "Invalid parameter error."),
        0x80030070: ("STG_E_MEDIUMFULL", "There is insufficient disk space to complete operation."),
        0x800300F0: ("STG_E_PROPSETMISMATCHED", "Illegal write of non-simple property to simple property set."),
        0x800300FA: ("STG_E_ABNORMALAPIEXIT", "An application programming interface (API) call exited abnormally."),
        0x800300FB: ("STG_E_INVALIDHEADER", "The file %1 is not a valid compound file."),
        0x800300FC: ("STG_E_INVALIDNAME", "The name %1 is not valid."),
        0x800300FD: ("STG_E_UNKNOWN", "An unexpected error occurred."),
        0x800300FE: ("STG_E_UNIMPLEMENTEDFUNCTION", "That function is not implemented."),
        0x800300FF: ("STG_E_INVALIDFLAG", "Invalid flag error."),
        0x80030100: ("STG_E_INUSE", "Attempted to use an object that is busy."),
        0x80030101: ("STG_E_NOTCURRENT", "The storage has been changed since the last commit."),
        0x80030102: ("STG_E_REVERTED", "Attempted to use an object that has ceased to exist."),
        0x80030103: ("STG_E_CANTSAVE", "Cannot save."),
        0x80030104: ("STG_E_OLDFORMAT", "The compound file %1 was produced with an incompatible version of storage."),
        0x80030105: ("STG_E_OLDDLL", "The compound file %1 was produced with a newer version of storage."),
        0x80030106: ("STG_E_SHAREREQUIRED", "Share.exe or equivalent is required for operation."),
        0x80030107: ("STG_E_NOTFILEBASEDSTORAGE", "Illegal operation called on non-file based storage."),
        0x80030108: ("STG_E_EXTANTMARSHALLINGS", "Illegal operation called on object with extant marshalings."),
        0x80030109: ("STG_E_DOCFILECORRUPT", "The docfile has been corrupted."),
        0x80030110: ("STG_E_BADBASEADDRESS", "OLE32.DLL has been loaded at the wrong address."),
        0x80030111: ("STG_E_DOCFILETOOLARGE", "The compound file is too large for the current implementation."),
        0x80030112: ("STG_E_NOTSIMPLEFORMAT", "The compound file was not created with the STGM_SIMPLE flag."),
        0x80030201: ("STG_E_INCOMPLETE", "The file download was aborted abnormally. The file is incomplete."),
        0x80030202: ("STG_E_TERMINATED", "The file download has been terminated."),
        0x80030305: ("STG_E_STATUS_COPY_PROTECTION_FAILURE", "Generic Copy Protection Error."),
        0x80030306: ("STG_E_CSS_AUTHENTICATION_FAILURE", "Copy Protection Error-DVD CSS Authentication failed."),
        0x80030307: ("STG_E_CSS_KEY_NOT_PRESENT", "Copy Protection Error-The given sector does not have a valid CSS key."),
        0x80030308: ("STG_E_CSS_KEY_NOT_ESTABLISHED", "Copy Protection Error-DVD session key not established."),
        0x80030309: ("STG_E_CSS_SCRAMBLED_SECTOR", "Copy Protection Error-The read failed because the sector is encrypted."),
        0x8003030A: ("STG_E_CSS_REGION_MISMATCH", "Copy Protection Error-The current DVD's region does not correspond to the region setting of the drive."),
        0x8003030B: ("STG_E_RESETS_EXHAUSTED", "Copy Protection Error-The drive's region setting may be permanent or the number of user resets has been exhausted."),
        0x80040000: ("OLE_E_OLEVERB", "Invalid OLEVERB structure."),
        0x80040001: ("OLE_E_ADVF", "Invalid advise flags."),
        0x80040002: ("OLE_E_ENUM_NOMORE", "Cannot enumerate any more because the associated data is missing."),
        0x80040003: ("OLE_E_ADVISENOTSUPPORTED", "This implementation does not take advises."),
        0x80040004: ("OLE_E_NOCONNECTION", "There is no connection for this connection ID."),
        0x80040005: ("OLE_E_NOTRUNNING", "Need to run the object to perform this operation."),
        0x80040006: ("OLE_E_NOCACHE", "There is no cache to operate on."),
        0x80040007: ("OLE_E_BLANK", "Uninitialized object."),
        0x80040008: ("OLE_E_CLASSDIFF", "Linked object's source class has changed."),
        0x80040009: ("OLE_E_CANT_GETMONIKER", "Not able to get the moniker of the object."),
        0x8004000A: ("OLE_E_CANT_BINDTOSOURCE", "Not able to bind to the source."),
        0x8004000B: ("OLE_E_STATIC", "Object is static; operation not allowed."),
        0x8004000C: ("OLE_E_PROMPTSAVECANCELLED", "User canceled out of the Save dialog box."),
        0x8004000D: ("OLE_E_INVALIDRECT", "Invalid rectangle."),
        0x8004000E: ("OLE_E_WRONGCOMPOBJ", "compobj.dll is too old for the ole2.dll initialized."),
        0x8004000F: ("OLE_E_INVALIDHWND", "Invalid window handle."),
        0x80040010: ("OLE_E_NOT_INPLACEACTIVE", "Object is not in any of the inplace active states."),
        0x80040011: ("OLE_E_CANTCONVERT", "Not able to convert object."),
        0x80040012: ("OLE_E_NOSTORAGE", "Not able to perform the operation because object is not given storage yet."),
        0x80040064: ("DV_E_FORMATETC", "Invalid FORMATETC structure."),
        0x80040065: ("DV_E_DVTARGETDEVICE", "Invalid DVTARGETDEVICE structure."),
        0x80040066: ("DV_E_STGMEDIUM", "Invalid STDGMEDIUM structure."),
        0x80040067: ("DV_E_STATDATA", "Invalid STATDATA structure."),
        0x80040068: ("DV_E_LINDEX", "Invalid lindex."),
        0x80040069: ("DV_E_TYMED", "Invalid TYMED structure."),
        0x8004006A: ("DV_E_CLIPFORMAT", "Invalid clipboard format."),
        0x8004006B: ("DV_E_DVASPECT", "Invalid aspects."),
        0x8004006C: ("DV_E_DVTARGETDEVICE_SIZE", "The tdSize parameter of the DVTARGETDEVICE structure is invalid."),
        0x8004006D: ("DV_E_NOIVIEWOBJECT", "Object does not support IViewObject interface."),
        0x80040100: ("DRAGDROP_E_NOTREGISTERED", "Trying to revoke a drop target that has not been registered."),
        0x80040101: ("DRAGDROP_E_ALREADYREGISTERED", "This window has already been registered as a drop target."),
        0x80040102: ("DRAGDROP_E_INVALIDHWND", "Invalid window handle."),
        0x80040110: ("CLASS_E_NOAGGREGATION", "Class does not support aggregation (or class object is remote)."),
        0x80040111: ("CLASS_E_CLASSNOTAVAILABLE", "ClassFactory cannot supply requested class."),
        0x80040112: ("CLASS_E_NOTLICENSED", "Class is not licensed for use."),
        0x80040140: ("VIEW_E_DRAW", "Error drawing view."),
        0x80040150: ("REGDB_E_READREGDB", "Could not read key from registry."),
        0x80040151: ("REGDB_E_WRITEREGDB", "Could not write key to registry."),
        0x80040152: ("REGDB_E_KEYMISSING", "Could not find the key in the registry."),
        0x80040153: ("REGDB_E_INVALIDVALUE", "Invalid value for registry."),
        0x80040154: ("REGDB_E_CLASSNOTREG", "Class not registered."),
        0x80040155: ("REGDB_E_IIDNOTREG", "Interface not registered."),
        0x80040156: ("REGDB_E_BADTHREADINGMODEL", "Threading model entry is not valid."),
        0x80040160: ("CAT_E_CATIDNOEXIST", "CATID does not exist."),
        0x80040161: ("CAT_E_NODESCRIPTION", "Description not found."),
        0x80040164: ("CS_E_PACKAGE_NOTFOUND", "No package in the software installation data in Active Directory meets this criteria."),
        0x80040165: ("CS_E_NOT_DELETABLE", "Deleting this will break the referential integrity of the software installation data in Active Directory."),
        0x80040166: ("CS_E_CLASS_NOTFOUND", "The CLSID was not found in the software installation data in Active Directory."),
        0x80040167: ("CS_E_INVALID_VERSION", "The software installation data in Active Directory is corrupt."),
        0x80040168: ("CS_E_NO_CLASSSTORE", "There is no software installation data in Active Directory."),
        0x80040169: ("CS_E_OBJECT_NOTFOUND", "There is no software installation data object in Active Directory."),
        0x8004016A: ("CS_E_OBJECT_ALREADY_EXISTS", "The software installation data object in Active Directory already exists."),
        0x8004016B: ("CS_E_INVALID_PATH", "The path to the software installation data in Active Directory is not correct."),
        0x8004016C: ("CS_E_NETWORK_ERROR", "A network error interrupted the operation."),
        0x8004016D: ("CS_E_ADMIN_LIMIT_EXCEEDED", "The size of this object exceeds the maximum size set by the administrator."),
        0x8004016E: ("CS_E_SCHEMA_MISMATCH", "The schema for the software installation data in Active Directory does not match the required schema."),
        0x8004016F: ("CS_E_INTERNAL_ERROR", "An error occurred in the software installation data in Active Directory."),
        0x80040170: ("CACHE_E_NOCACHE_UPDATED", "Cache not updated."),
        0x80040180: ("OLEOBJ_E_NOVERBS", "No verbs for OLE object."),
        0x80040181: ("OLEOBJ_E_INVALIDVERB", "Invalid verb for OLE object."),
        0x800401A0: ("INPLACE_E_NOTUNDOABLE", "Undo is not available."),
        0x800401A1: ("INPLACE_E_NOTOOLSPACE", "Space for tools is not available."),
        0x800401C0: ("CONVERT10_E_OLESTREAM_GET", "OLESTREAM Get method failed."),
        0x800401C1: ("CONVERT10_E_OLESTREAM_PUT", "OLESTREAM Put method failed."),
        0x800401C2: ("CONVERT10_E_OLESTREAM_FMT", "Contents of the OLESTREAM not in correct format."),
        0x800401C3: ("CONVERT10_E_OLESTREAM_BITMAP_TO_DIB", "There was an error in a Windows GDI call while converting the bitmap to a device-independent bitmap (DIB)."),
        0x800401C4: ("CONVERT10_E_STG_FMT", "Contents of the IStorage not in correct format."),
        0x800401C5: ("CONVERT10_E_STG_NO_STD_STREAM", "Contents of IStorage is missing one of the standard streams."),
        0x800401C6: ("CONVERT10_E_STG_DIB_TO_BITMAP", "There was an error in a Windows Graphics Device Interface (GDI) call while converting the DIB to a bitmap."),
        0x800401D0: ("CLIPBRD_E_CANT_OPEN", "OpenClipboard failed."),
        0x800401D1: ("CLIPBRD_E_CANT_EMPTY", "EmptyClipboard failed."),
        0x800401D2: ("CLIPBRD_E_CANT_SET", "SetClipboard failed."),
        0x800401D3: ("CLIPBRD_E_BAD_DATA", "Data on clipboard is invalid."),
        0x800401D4: ("CLIPBRD_E_CANT_CLOSE", "CloseClipboard failed."),
        0x800401E0: ("MK_E_CONNECTMANUALLY", "Moniker needs to be connected manually."),
        0x800401E1: ("MK_E_EXCEEDEDDEADLINE", "Operation exceeded deadline."),
        0x800401E2: ("MK_E_NEEDGENERIC", "Moniker needs to be generic."),
        0x800401E3: ("MK_E_UNAVAILABLE", "Operation unavailable."),
        0x800401E4: ("MK_E_SYNTAX", "Invalid syntax."),
        0x800401E5: ("MK_E_NOOBJECT", "No object for moniker."),
        0x800401E6: ("MK_E_INVALIDEXTENSION", "Bad extension for file."),
        0x800401E7: ("MK_E_INTERMEDIATEINTERFACENOTSUPPORTED", "Intermediate operation failed."),
        0x800401E8: ("MK_E_NOTBINDABLE", "Moniker is not bindable."),
        0x800401E9: ("MK_E_NOTBOUND", "Moniker is not bound."),
        0x800401EA: ("MK_E_CANTOPENFILE", "Moniker cannot open file."),
        0x800401EB: ("MK_E_MUSTBOTHERUSER", "User input required for operation to succeed."),
        0x800401EC: ("MK_E_NOINVERSE", "Moniker class has no inverse."),
        0x800401ED: ("MK_E_NOSTORAGE", "Moniker does not refer to storage."),
        0x800401EE: ("MK_E_NOPREFIX", "No common prefix."),
        0x800401EF: ("MK_E_ENUMERATION_FAILED", "Moniker could not be enumerated."),
        0x800401F0: ("CO_E_NOTINITIALIZED", "CoInitialize has not been called."),
        0x800401F1: ("CO_E_ALREADYINITIALIZED", "CoInitialize has already been called."),
        0x800401F2: ("CO_E_CANTDETERMINECLASS", "Class of object cannot be determined."),
        0x800401F3: ("CO_E_CLASSSTRING", "Invalid class string."),
        0x800401F4: ("CO_E_IIDSTRING", "Invalid interface string."),
        0x800401F5: ("CO_E_APPNOTFOUND", "Application not found."),
        0x800401F6: ("CO_E_APPSINGLEUSE", "Application cannot be run more than once."),
        0x800401F7: ("CO_E_ERRORINAPP", "Some error in application."),
        0x800401F8: ("CO_E_DLLNOTFOUND", "DLL for class not found."),
        0x800401F9: ("CO_E_ERRORINDLL", "Error in the DLL."),
        0x800401FA: ("CO_E_WRONGOSFORAPP", "Wrong operating system or operating system version for application."),
        0x800401FB: ("CO_E_OBJNOTREG", "Object is not registered."),
        0x800401FC: ("CO_E_OBJISREG", "Object is already registered."),
        0x800401FD: ("CO_E_OBJNOTCONNECTED", "Object is not connected to server."),
        0x800401FE: ("CO_E_APPDIDNTREG", "Application was launched, but it did not register a class factory."),
        0x800401FF: ("CO_E_RELEASED", "Object has been released."),
        0x80040201: ("EVENT_E_ALL_SUBSCRIBERS_FAILED", "An event was unable to invoke any of the subscribers."),
        0x80040203: ("EVENT_E_QUERYSYNTAX", "A syntax error occurred trying to evaluate a query string."),
        0x80040204: ("EVENT_E_QUERYFIELD", "An invalid field name was used in a query string."),
        0x80040205: ("EVENT_E_INTERNALEXCEPTION", "An unexpected exception was raised."),
        0x80040206: ("EVENT_E_INTERNALERROR", "An unexpected internal error was detected."),
        0x80040207: ("EVENT_E_INVALID_PER_USER_SID", "The owner security identifier (SID) on a per-user subscription does not exist."),
        0x80040208: ("EVENT_E_USER_EXCEPTION", "A user-supplied component or subscriber raised an exception."),
        0x80040209: ("EVENT_E_TOO_MANY_METHODS", "An interface has too many methods to fire events from."),
        0x8004020A: ("EVENT_E_MISSING_EVENTCLASS", "A subscription cannot be stored unless its event class already exists."),
        0x8004020B: ("EVENT_E_NOT_ALL_REMOVED", "Not all the objects requested could be removed."),
        0x8004020C: ("EVENT_E_COMPLUS_NOT_INSTALLED", "COM+ is required for this operation, but it is not installed."),
        0x8004020D: ("EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT", "Cannot modify or delete an object that was not added using the COM+ Administrative SDK."),
        0x8004020E: ("EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT", "Cannot modify or delete an object that was added using the COM+ Administrative SDK."),
        0x8004020F: ("EVENT_E_INVALID_EVENT_CLASS_PARTITION", "The event class for this subscription is in an invalid partition."),
        0x80040210: ("EVENT_E_PER_USER_SID_NOT_LOGGED_ON", "The owner of the PerUser subscription is not logged on to the system specified."),
        0x80041309: ("SCHED_E_TRIGGER_NOT_FOUND", "Trigger not found."),
        0x8004130A: ("SCHED_E_TASK_NOT_READY", "One or more of the properties that are needed to run this task have not been set."),
        0x8004130B: ("SCHED_E_TASK_NOT_RUNNING", "There is no running instance of the task."),
        0x8004130C: ("SCHED_E_SERVICE_NOT_INSTALLED", "The Task Scheduler service is not installed on this computer."),
        0x8004130D: ("SCHED_E_CANNOT_OPEN_TASK", "The task object could not be opened."),
        0x8004130E: ("SCHED_E_INVALID_TASK", "The object is either an invalid task object or is not a task object."),
        0x8004130F: ("SCHED_E_ACCOUNT_INFORMATION_NOT_SET", "No account information could be found in the Task Scheduler security database for the task indicated."),
        0x80041310: ("SCHED_E_ACCOUNT_NAME_NOT_FOUND", "Unable to establish existence of the account specified."),
        0x80041311: ("SCHED_E_ACCOUNT_DBASE_CORRUPT", "Corruption was detected in the Task Scheduler security database; the database has been reset."),
        0x80041312: ("SCHED_E_NO_SECURITY_SERVICES", "Task Scheduler security services are available only on Windows NT."),
        0x80041313: ("SCHED_E_UNKNOWN_OBJECT_VERSION", "The task object version is either unsupported or invalid."),
        0x80041314: ("SCHED_E_UNSUPPORTED_ACCOUNT_OPTION", "The task has been configured with an unsupported combination of account settings and run-time options."),
        0x80041315: ("SCHED_E_SERVICE_NOT_RUNNING", "The Task Scheduler service is not running."),
        0x80041316: ("SCHED_E_UNEXPECTEDNODE", "The task XML contains an unexpected node."),
        0x80041317: ("SCHED_E_NAMESPACE", "The task XML contains an element or attribute from an unexpected namespace."),
        0x80041318: ("SCHED_E_INVALIDVALUE", "The task XML contains a value that is incorrectly formatted or out of range."),
        0x80041319: ("SCHED_E_MISSINGNODE", "The task XML is missing a required element or attribute."),
        0x8004131A: ("SCHED_E_MALFORMEDXML", "The task XML is malformed."),
        0x8004131D: ("SCHED_E_TOO_MANY_NODES", "The task XML contains too many nodes of the same type."),
        0x8004131E: ("SCHED_E_PAST_END_BOUNDARY", "The task cannot be started after the trigger's end boundary."),
        0x8004131F: ("SCHED_E_ALREADY_RUNNING", "An instance of this task is already running."),
        0x80041320: ("SCHED_E_USER_NOT_LOGGED_ON", "The task will not run because the user is not logged on."),
        0x80041321: ("SCHED_E_INVALID_TASK_HASH", "The task image is corrupt or has been tampered with."),
        0x80041322: ("SCHED_E_SERVICE_NOT_AVAILABLE", "The Task Scheduler service is not available."),
        0x80041323: ("SCHED_E_SERVICE_TOO_BUSY", "The Task Scheduler service is too busy to handle your request. Try again later."),
        0x80041324: ("SCHED_E_TASK_ATTEMPTED", "The Task Scheduler service attempted to run the task, but the task did not run due to one of the constraints in the task definition."),
        0x8004D000: ("XACT_E_ALREADYOTHERSINGLEPHASE", "Another single phase resource manager has already been enlisted in this transaction."),
        0x8004D001: ("XACT_E_CANTRETAIN", "A retaining commit or abort is not supported."),
        0x8004D002: ("XACT_E_COMMITFAILED", "The transaction failed to commit for an unknown reason. The transaction was aborted."),
        0x8004D003: ("XACT_E_COMMITPREVENTED", "Cannot call commit on this transaction object because the calling application did not initiate the transaction."),
        0x8004D004: ("XACT_E_HEURISTICABORT", "Instead of committing, the resource heuristically aborted."),
        0x8004D005: ("XACT_E_HEURISTICCOMMIT", "Instead of aborting, the resource heuristically committed."),
        0x8004D006: ("XACT_E_HEURISTICDAMAGE", "Some of the states of the resource were committed while others were aborted, likely because of heuristic decisions."),
        0x8004D007: ("XACT_E_HEURISTICDANGER", "Some of the states of the resource may have been committed while others may have been aborted, likely because of heuristic decisions."),
        0x8004D008: ("XACT_E_ISOLATIONLEVEL", "The requested isolation level is not valid or supported."),
        0x8004D009: ("XACT_E_NOASYNC", "The transaction manager does not support an asynchronous operation for this method."),
        0x8004D00A: ("XACT_E_NOENLIST", "Unable to enlist in the transaction."),
        0x8004D00B: ("XACT_E_NOISORETAIN", "The requested semantics of retention of isolation across retaining commit and abort boundaries cannot be supported by this transaction implementation, or isoFlags was not equal to 0."),
        0x8004D00C: ("XACT_E_NORESOURCE", "There is no resource presently associated with this enlistment."),
        0x8004D00D: ("XACT_E_NOTCURRENT", "The transaction failed to commit due to the failure of optimistic concurrency control in at least one of the resource managers."),
        0x8004D00E: ("XACT_E_NOTRANSACTION", "The transaction has already been implicitly or explicitly committed or aborted."),
        0x8004D00F: ("XACT_E_NOTSUPPORTED", "An invalid combination of flags was specified."),
        0x8004D010: ("XACT_E_UNKNOWNRMGRID", "The resource manager ID is not associated with this transaction or the transaction manager."),
        0x8004D011: ("XACT_E_WRONGSTATE", "This method was called in the wrong state."),
        0x8004D012: ("XACT_E_WRONGUOW", "The indicated unit of work does not match the unit of work expected by the resource manager."),
        0x8004D013: ("XACT_E_XTIONEXISTS", "An enlistment in a transaction already exists."),
        0x8004D014: ("XACT_E_NOIMPORTOBJECT", "An import object for the transaction could not be found."),
        0x8004D015: ("XACT_E_INVALIDCOOKIE", "The transaction cookie is invalid."),
        0x8004D016: ("XACT_E_INDOUBT", "The transaction status is in doubt. A communication failure occurred, or a transaction manager or resource manager has failed."),
        0x8004D017: ("XACT_E_NOTIMEOUT", "A time-out was specified, but time-outs are not supported."),
        0x8004D018: ("XACT_E_ALREADYINPROGRESS", "The requested operation is already in progress for the transaction."),
        0x8004D019: ("XACT_E_ABORTED", "The transaction has already been aborted."),
        0x8004D01A: ("XACT_E_LOGFULL", "The Transaction Manager returned a log full error."),
        0x8004D01B: ("XACT_E_TMNOTAVAILABLE", "The transaction manager is not available."),
        0x8004D01C: ("XACT_E_CONNECTION_DOWN", "A connection with the transaction manager was lost."),
        0x8004D01D: ("XACT_E_CONNECTION_DENIED", "A request to establish a connection with the transaction manager was denied."),
        0x8004D01E: ("XACT_E_REENLISTTIMEOUT", "Resource manager reenlistment to determine transaction status timed out."),
        0x8004D01F: ("XACT_E_TIP_CONNECT_FAILED", "The transaction manager failed to establish a connection with another Transaction Internet Protocol (TIP) transaction manager."),
        0x8004D020: ("XACT_E_TIP_PROTOCOL_ERROR", "The transaction manager encountered a protocol error with another TIP transaction manager."),
        0x8004D021: ("XACT_E_TIP_PULL_FAILED", "The transaction manager could not propagate a transaction from another TIP transaction manager."),
        0x8004D022: ("XACT_E_DEST_TMNOTAVAILABLE", "The transaction manager on the destination machine is not available."),
        0x8004D023: ("XACT_E_TIP_DISABLED", "The transaction manager has disabled its support for TIP."),
        0x8004D024: ("XACT_E_NETWORK_TX_DISABLED", "The transaction manager has disabled its support for remote or network transactions."),
        0x8004D025: ("XACT_E_PARTNER_NETWORK_TX_DISABLED", "The partner transaction manager has disabled its support for remote or network transactions."),
        0x8004D026: ("XACT_E_XA_TX_DISABLED", "The transaction manager has disabled its support for XA transactions."),
        0x8004D027: ("XACT_E_UNABLE_TO_READ_DTC_CONFIG", "Microsoft Distributed Transaction Coordinator (MSDTC) was unable to read its configuration information."),
        0x8004D028: ("XACT_E_UNABLE_TO_LOAD_DTC_PROXY", "MSDTC was unable to load the DTC proxy DLL."),
        0x8004D029: ("XACT_E_ABORTING", "The local transaction has aborted."),
        0x8004D080: ("XACT_E_CLERKNOTFOUND", "The specified CRM clerk was not found. It may have completed before it could be held."),
        0x8004D081: ("XACT_E_CLERKEXISTS", "The specified CRM clerk does not exist."),
        0x8004D082: ("XACT_E_RECOVERYINPROGRESS", "Recovery of the CRM log file is still in progress."),
        0x8004D083: ("XACT_E_TRANSACTIONCLOSED", "The transaction has completed, and the log records have been discarded from the log file. They are no longer available."),
        0x8004D084: ("XACT_E_INVALIDLSN", "lsnToRead is outside of the current limits of the log"),
        0x8004D085: ("XACT_E_REPLAYREQUEST", "The COM+ Compensating Resource Manager has records it wishes to replay."),
        0x8004D100: ("XACT_E_CONNECTION_REQUEST_DENIED", "The request to connect to the specified transaction coordinator was denied."),
        0x8004D101: ("XACT_E_TOOMANY_ENLISTMENTS", "The maximum number of enlistments for the specified transaction has been reached."),
        0x8004D102: ("XACT_E_DUPLICATE_GUID", "A resource manager with the same identifier is already registered with the specified transaction coordinator."),
        0x8004D103: ("XACT_E_NOTSINGLEPHASE", "The prepare request given was not eligible for single-phase optimizations."),
        0x8004D104: ("XACT_E_RECOVERYALREADYDONE", "RecoveryComplete has already been called for the given resource manager."),
        0x8004D105: ("XACT_E_PROTOCOL", "The interface call made was incorrect for the current state of the protocol."),
        0x8004D106: ("XACT_E_RM_FAILURE", "The xa_open call failed for the XA resource."),
        0x8004D107: ("XACT_E_RECOVERY_FAILED", "The xa_recover call failed for the XA resource."),
        0x8004D108: ("XACT_E_LU_NOT_FOUND", "The logical unit of work specified cannot be found."),
        0x8004D109: ("XACT_E_DUPLICATE_LU", "The specified logical unit of work already exists."),
        0x8004D10A: ("XACT_E_LU_NOT_CONNECTED", "Subordinate creation failed. The specified logical unit of work was not connected."),
        0x8004D10B: ("XACT_E_DUPLICATE_TRANSID", "A transaction with the given identifier already exists."),
        0x8004D10C: ("XACT_E_LU_BUSY", "The resource is in use."),
        0x8004D10D: ("XACT_E_LU_NO_RECOVERY_PROCESS", "The LU Recovery process is down."),
        0x8004D10E: ("XACT_E_LU_DOWN", "The remote session was lost."),
        0x8004D10F: ("XACT_E_LU_RECOVERING", "The resource is currently recovering."),
        0x8004D110: ("XACT_E_LU_RECOVERY_MISMATCH", "There was a mismatch in driving recovery."),
        0x8004D111: ("XACT_E_RM_UNAVAILABLE", "An error occurred with the XA resource."),
        0x8004E002: ("CONTEXT_E_ABORTED", "The root transaction wanted to commit, but the transaction aborted."),
        0x8004E003: ("CONTEXT_E_ABORTING", "The COM+ component on which the method call was made has a transaction that has already aborted or is in the process of aborting."),
        0x8004E004: ("CONTEXT_E_NOCONTEXT", "There is no Microsoft Transaction Server (MTS) object context."),
        0x8004E005: ("CONTEXT_E_WOULD_DEADLOCK", "The component is configured to use synchronization, and this method call would cause a deadlock to occur."),
        0x8004E006: ("CONTEXT_E_SYNCH_TIMEOUT", "The component is configured to use synchronization, and a thread has timed out waiting to enter the context."),
        0x8004E007: ("CONTEXT_E_OLDREF", "You made a method call on a COM+ component that has a transaction that has already committed or aborted."),
        0x8004E00C: ("CONTEXT_E_ROLENOTFOUND", "The specified role was not configured for the application."),
        0x8004E00F: ("CONTEXT_E_TMNOTAVAILABLE", "COM+ was unable to talk to the MSDTC."),
        0x8004E021: ("CO_E_ACTIVATIONFAILED", "An unexpected error occurred during COM+ activation."),
        0x8004E022: ("CO_E_ACTIVATIONFAILED_EVENTLOGGED", "COM+ activation failed. Check the event log for more information."),
        0x8004E023: ("CO_E_ACTIVATIONFAILED_CATALOGERROR", "COM+ activation failed due to a catalog or configuration error."),
        0x8004E024: ("CO_E_ACTIVATIONFAILED_TIMEOUT", "COM+ activation failed because the activation could not be completed in the specified amount of time."),
        0x8004E025: ("CO_E_INITIALIZATIONFAILED", "COM+ activation failed because an initialization function failed. Check the event log for more information."),
        0x8004E026: ("CONTEXT_E_NOJIT", "The requested operation requires that just-in-time (JIT) be in the current context, and it is not."),
        0x8004E027: ("CONTEXT_E_NOTRANSACTION", "The requested operation requires that the current context have a transaction, and it does not."),
        0x8004E028: ("CO_E_THREADINGMODEL_CHANGED", "The components threading model has changed after install into a COM+ application. Re-install component."),
        0x8004E029: ("CO_E_NOIISINTRINSICS", "Internet Information Services (IIS) intrinsics not available. Start your work with IIS."),
        0x8004E02A: ("CO_E_NOCOOKIES", "An attempt to write a cookie failed."),
        0x8004E02B: ("CO_E_DBERROR", "An attempt to use a database generated a database-specific error."),
        0x8004E02C: ("CO_E_NOTPOOLED", "The COM+ component you created must use object pooling to work."),
        0x8004E02D: ("CO_E_NOTCONSTRUCTED", "The COM+ component you created must use object construction to work correctly."),
        0x8004E02E: ("CO_E_NOSYNCHRONIZATION", "The COM+ component requires synchronization, and it is not configured for it."),
        0x8004E02F: ("CO_E_ISOLEVELMISMATCH", "The TxIsolation Level property for the COM+ component being created is stronger than the TxIsolationLevel for the root."),
        0x8004E030: ("CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED", "The component attempted to make a cross-context call between invocations of EnterTransactionScope and ExitTransactionScope. This is not allowed. Cross-context calls cannot be made while inside a transaction scope."),
        0x8004E031: ("CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED", "The component made a call to EnterTransactionScope, but did not make a corresponding call to ExitTransactionScope before returning."),
        0x80070005: ("E_ACCESSDENIED", "General access denied error."),
        0x8007000E: ("E_OUTOFMEMORY", "The server does not have enough memory for the new channel."),
        0x80070032: ("ERROR_NOT_SUPPORTED", "The server cannot support a client request for a dynamic virtual channel."),
        0x80070057: ("E_INVALIDARG", "One or more arguments are invalid."),
        0x80080001: ("CO_E_CLASS_CREATE_FAILED", "Attempt to create a class object failed."),
        0x80080002: ("CO_E_SCM_ERROR", "OLE service could not bind object."),
        0x80080003: ("CO_E_SCM_RPC_FAILURE", "RPC communication failed with OLE service."),
        0x80080004: ("CO_E_BAD_PATH", "Bad path to object."),
        0x80080005: ("CO_E_SERVER_EXEC_FAILURE", "Server execution failed."),
        0x80080006: ("CO_E_OBJSRV_RPC_FAILURE", "OLE service could not communicate with the object server."),
        0x80080007: ("MK_E_NO_NORMALIZED", "Moniker path could not be normalized."),
        0x80080008: ("CO_E_SERVER_STOPPING", "Object server is stopping when OLE service contacts it."),
        0x80080009: ("MEM_E_INVALID_ROOT", "An invalid root block pointer was specified."),
        0x80080010: ("MEM_E_INVALID_LINK", "An allocation chain contained an invalid link pointer."),
        0x80080011: ("MEM_E_INVALID_SIZE", "The requested allocation size was too large."),
        0x80080015: ("CO_E_MISSING_DISPLAYNAME", "The activation requires a display name to be present under the class identifier (CLSID) key."),
        0x80080016: ("CO_E_RUNAS_VALUE_MUST_BE_AAA", "The activation requires that the RunAs value for the application is Activate As Activator."),
        0x80080017: ("CO_E_ELEVATION_DISABLED", "The class is not configured to support elevated activation."),
        0x80090001: ("NTE_BAD_UID", "Bad UID."),
        0x80090002: ("NTE_BAD_HASH", "Bad hash."),
        0x80090003: ("NTE_BAD_KEY", "Bad key."),
        0x80090004: ("NTE_BAD_LEN", "Bad length."),
        0x80090005: ("NTE_BAD_DATA", "Bad data."),
        0x80090006: ("NTE_BAD_SIGNATURE", "Invalid signature."),
        0x80090007: ("NTE_BAD_VER", "Bad version of provider."),
        0x80090008: ("NTE_BAD_ALGID", "Invalid algorithm specified."),
        0x80090009: ("NTE_BAD_FLAGS", "Invalid flags specified."),
        0x8009000A: ("NTE_BAD_TYPE", "Invalid type specified."),
        0x8009000B: ("NTE_BAD_KEY_STATE", "Key not valid for use in specified state."),
        0x8009000C: ("NTE_BAD_HASH_STATE", "Hash not valid for use in specified state."),
        0x8009000D: ("NTE_NO_KEY", "Key does not exist."),
        0x8009000E: ("NTE_NO_MEMORY", "Insufficient memory available for the operation."),
        0x8009000F: ("NTE_EXISTS", "Object already exists."),
        0x80090010: ("NTE_PERM", "Access denied."),
        0x80090011: ("NTE_NOT_FOUND", "Object was not found."),
        0x80090012: ("NTE_DOUBLE_ENCRYPT", "Data already encrypted."),
        0x80090013: ("NTE_BAD_PROVIDER", "Invalid provider specified."),
        0x80090014: ("NTE_BAD_PROV_TYPE", "Invalid provider type specified."),
        0x80090015: ("NTE_BAD_PUBLIC_KEY", "Provider's public key is invalid."),
        0x80090016: ("NTE_BAD_KEYSET", "Key set does not exist."),
        0x80090017: ("NTE_PROV_TYPE_NOT_DEF", "Provider type not defined."),
        0x80090018: ("NTE_PROV_TYPE_ENTRY_BAD", "The provider type, as registered, is invalid."),
        0x80090019: ("NTE_KEYSET_NOT_DEF", "The key set is not defined."),
        0x8009001A: ("NTE_KEYSET_ENTRY_BAD", "The key set, as registered, is invalid."),
        0x8009001B: ("NTE_PROV_TYPE_NO_MATCH", "Provider type does not match registered value."),
        0x8009001C: ("NTE_SIGNATURE_FILE_BAD", "The digital signature file is corrupt."),
        0x8009001D: ("NTE_PROVIDER_DLL_FAIL", "Provider DLL failed to initialize correctly."),
        0x8009001E: ("NTE_PROV_DLL_NOT_FOUND", "Provider DLL could not be found."),
        0x8009001F: ("NTE_BAD_KEYSET_PARAM", "The keyset parameter is invalid."),
        0x80090020: ("NTE_FAIL", "An internal error occurred."),
        0x80090021: ("NTE_SYS_ERR", "A base error occurred."),
        0x80090022: ("NTE_SILENT_CONTEXT", "Provider could not perform the action because the context was acquired as silent."),
        0x80090023: ("NTE_TOKEN_KEYSET_STORAGE_FULL", "The security token does not have storage space available for an additional container."),
        0x80090024: ("NTE_TEMPORARY_PROFILE", "The profile for the user is a temporary profile."),
        0x80090025: ("NTE_FIXEDPARAMETER", "The key parameters could not be set because the configuration service provider (CSP) uses fixed parameters."),
        0x80090026: ("NTE_INVALID_HANDLE", "The supplied handle is invalid."),
        0x80090027: ("NTE_INVALID_PARAMETER", "The parameter is incorrect."),
        0x80090028: ("NTE_BUFFER_TOO_SMALL", "The buffer supplied to a function was too small."),
        0x80090029: ("NTE_NOT_SUPPORTED", "The requested operation is not supported."),
        0x8009002A: ("NTE_NO_MORE_ITEMS", "No more data is available."),
        0x8009002B: ("NTE_BUFFERS_OVERLAP", "The supplied buffers overlap incorrectly."),
        0x8009002C: ("NTE_DECRYPTION_FAILURE", "The specified data could not be decrypted."),
        0x8009002D: ("NTE_INTERNAL_ERROR", "An internal consistency check failed."),
        0x8009002E: ("NTE_UI_REQUIRED", "This operation requires input from the user."),
        0x8009002F: ("NTE_HMAC_NOT_SUPPORTED", "The cryptographic provider does not support Hash Message Authentication Code (HMAC)."),
        0x80090300: ("SEC_E_INSUFFICIENT_MEMORY", "Not enough memory is available to complete this request."),
        0x80090301: ("SEC_E_INVALID_HANDLE", "The handle specified is invalid."),
        0x80090302: ("SEC_E_UNSUPPORTED_FUNCTION", "The function requested is not supported."),
        0x80090303: ("SEC_E_TARGET_UNKNOWN", "The specified target is unknown or unreachable."),
        0x80090304: ("SEC_E_INTERNAL_ERROR", "The Local Security Authority (LSA) cannot be contacted."),
        0x80090305: ("SEC_E_SECPKG_NOT_FOUND", "The requested security package does not exist."),
        0x80090306: ("SEC_E_NOT_OWNER", "The caller is not the owner of the desired credentials."),
        0x80090307: ("SEC_E_CANNOT_INSTALL", "The security package failed to initialize and cannot be installed."),
        0x80090308: ("SEC_E_INVALID_TOKEN", "The token supplied to the function is invalid."),
        0x80090309: ("SEC_E_CANNOT_PACK", "The security package is not able to marshal the logon buffer, so the logon attempt has failed."),
        0x8009030A: ("SEC_E_QOP_NOT_SUPPORTED", "The per-message quality of protection is not supported by the security package."),
        0x8009030B: ("SEC_E_NO_IMPERSONATION", "The security context does not allow impersonation of the client."),
        0x8009030C: ("SEC_E_LOGON_DENIED", "The logon attempt failed."),
        0x8009030D: ("SEC_E_UNKNOWN_CREDENTIALS", "The credentials supplied to the package were not recognized."),
        0x8009030E: ("SEC_E_NO_CREDENTIALS", "No credentials are available in the security package."),
        0x8009030F: ("SEC_E_MESSAGE_ALTERED", "The message or signature supplied for verification has been altered."),
        0x80090310: ("SEC_E_OUT_OF_SEQUENCE", "The message supplied for verification is out of sequence."),
        0x80090311: ("SEC_E_NO_AUTHENTICATING_AUTHORITY", "No authority could be contacted for authentication."),
        0x80090316: ("SEC_E_BAD_PKGID", "The requested security package does not exist."),
        0x80090317: ("SEC_E_CONTEXT_EXPIRED", "The context has expired and can no longer be used."),
        0x80090318: ("SEC_E_INCOMPLETE_MESSAGE", "The supplied message is incomplete. The signature was not verified."),
        0x80090320: ("SEC_E_INCOMPLETE_CREDENTIALS", "The credentials supplied were not complete and could not be verified. The context could not be initialized."),
        0x80090321: ("SEC_E_BUFFER_TOO_SMALL", "The buffers supplied to a function was too small."),
        0x80090322: ("SEC_E_WRONG_PRINCIPAL", "The target principal name is incorrect."),
        0x80090324: ("SEC_E_TIME_SKEW", "The clocks on the client and server machines are skewed."),
        0x80090325: ("SEC_E_UNTRUSTED_ROOT", "The certificate chain was issued by an authority that is not trusted."),
        0x80090326: ("SEC_E_ILLEGAL_MESSAGE", "The message received was unexpected or badly formatted."),
        0x80090327: ("SEC_E_CERT_UNKNOWN", "An unknown error occurred while processing the certificate."),
        0x80090328: ("SEC_E_CERT_EXPIRED", "The received certificate has expired."),
        0x80090329: ("SEC_E_ENCRYPT_FAILURE", "The specified data could not be encrypted."),
        0x80090330: ("SEC_E_DECRYPT_FAILURE", "The specified data could not be decrypted."),
        0x80090331: ("SEC_E_ALGORITHM_MISMATCH", "The client and server cannot communicate because they do not possess a common algorithm."),
        0x80090332: ("SEC_E_SECURITY_QOS_FAILED", "The security context could not be established due to a failure in the requested quality of service (for example, mutual authentication or delegation)."),
        0x80090333: ("SEC_E_UNFINISHED_CONTEXT_DELETED", "A security context was deleted before the context was completed. This is considered a logon failure."),
        0x80090334: ("SEC_E_NO_TGT_REPLY", "The client is trying to negotiate a context and the server requires user-to-user but did not send a ticket granting ticket (TGT) reply."),
        0x80090335: ("SEC_E_NO_IP_ADDRESSES", "Unable to accomplish the requested task because the local machine does not have an IP addresses."),
        0x80090336: ("SEC_E_WRONG_CREDENTIAL_HANDLE", "The supplied credential handle does not match the credential associated with the security context."),
        0x80090337: ("SEC_E_CRYPTO_SYSTEM_INVALID", "The cryptographic system or checksum function is invalid because a required function is unavailable."),
        0x80090338: ("SEC_E_MAX_REFERRALS_EXCEEDED", "The number of maximum ticket referrals has been exceeded."),
        0x80090339: ("SEC_E_MUST_BE_KDC", "The local machine must be a Kerberos domain controller (KDC), and it is not."),
        0x8009033A: ("SEC_E_STRONG_CRYPTO_NOT_SUPPORTED", "The other end of the security negotiation requires strong cryptographics, but it is not supported on the local machine."),
        0x8009033B: ("SEC_E_TOO_MANY_PRINCIPALS", "The KDC reply contained more than one principal name."),
        0x8009033C: ("SEC_E_NO_PA_DATA", "Expected to find PA data for a hint of what etype to use, but it was not found."),
        0x8009033D: ("SEC_E_PKINIT_NAME_MISMATCH", "The client certificate does not contain a valid user principal name (UPN), or does not match the client name in the logon request. Contact your administrator."),
        0x8009033E: ("SEC_E_SMARTCARD_LOGON_REQUIRED", "Smart card logon is required and was not used."),
        0x8009033F: ("SEC_E_SHUTDOWN_IN_PROGRESS", "A system shutdown is in progress."),
        0x80090340: ("SEC_E_KDC_INVALID_REQUEST", "An invalid request was sent to the KDC."),
        0x80090341: ("SEC_E_KDC_UNABLE_TO_REFER", "The KDC was unable to generate a referral for the service requested."),
        0x80090342: ("SEC_E_KDC_UNKNOWN_ETYPE", "The encryption type requested is not supported by the KDC."),
        0x80090343: ("SEC_E_UNSUPPORTED_PREAUTH", "An unsupported pre-authentication mechanism was presented to the Kerberos package."),
        0x80090345: ("SEC_E_DELEGATION_REQUIRED", "The requested operation cannot be completed. The computer must be trusted for delegation, and the current user account must be configured to allow delegation."),
        0x80090346: ("SEC_E_BAD_BINDINGS", "Client's supplied Security Support Provider Interface (SSPI) channel bindings were incorrect."),
        0x80090347: ("SEC_E_MULTIPLE_ACCOUNTS", "The received certificate was mapped to multiple accounts."),
        0x80090348: ("SEC_E_NO_KERB_KEY", "No Kerberos key was found."),
        0x80090349: ("SEC_E_CERT_WRONG_USAGE", "The certificate is not valid for the requested usage."),
        0x80090350: ("SEC_E_DOWNGRADE_DETECTED", "The system detected a possible attempt to compromise security. Ensure that you can contact the server that authenticated you."),
        0x80090351: ("SEC_E_SMARTCARD_CERT_REVOKED", "The smart card certificate used for authentication has been revoked. Contact your system administrator. The event log may contain additional information."),
        0x80090352: ("SEC_E_ISSUING_CA_UNTRUSTED", "An untrusted certification authority (CA) was detected while processing the smart card certificate used for authentication. Contact your system administrator."),
        0x80090353: ("SEC_E_REVOCATION_OFFLINE_C", "The revocation status of the smart card certificate used for authentication could not be determined. Contact your system administrator."),
        0x80090354: ("SEC_E_PKINIT_CLIENT_FAILURE", "The smart card certificate used for authentication was not trusted. Contact your system administrator."),
        0x80090355: ("SEC_E_SMARTCARD_CERT_EXPIRED", "The smart card certificate used for authentication has expired. Contact your system administrator."),
        0x80090356: ("SEC_E_NO_S4U_PROT_SUPPORT", "The Kerberos subsystem encountered an error. A service for user protocol requests was made against a domain controller that does not support services for users."),
        0x80090357: ("SEC_E_CROSSREALM_DELEGATION_FAILURE", "An attempt was made by this server to make a Kerberos-constrained delegation request for a target outside the server's realm. This is not supported and indicates a misconfiguration on this server's allowed-to-delegate-to list. Contact your administrator."),
        0x80090358: ("SEC_E_REVOCATION_OFFLINE_KDC", "The revocation status of the domain controller certificate used for smart card authentication could not be determined. The system event log contains additional information. Contact your system administrator."),
        0x80090359: ("SEC_E_ISSUING_CA_UNTRUSTED_KDC", "An untrusted CA was detected while processing the domain controller certificate used for authentication. The system event log contains additional information. Contact your system administrator."),
        0x8009035A: ("SEC_E_KDC_CERT_EXPIRED", "The domain controller certificate used for smart card logon has expired. Contact your system administrator with the contents of your system event log."),
        0x8009035B: ("SEC_E_KDC_CERT_REVOKED", "The domain controller certificate used for smart card logon has been revoked. Contact your system administrator with the contents of your system event log."),
        0x8009035D: ("SEC_E_INVALID_PARAMETER", "One or more of the parameters passed to the function were invalid."),
        0x8009035E: ("SEC_E_DELEGATION_POLICY", "The client policy does not allow credential delegation to the target server."),
        0x8009035F: ("SEC_E_POLICY_NLTM_ONLY", "The client policy does not allow credential delegation to the target server with NLTM only authentication."),
        0x80091001: ("CRYPT_E_MSG_ERROR", "An error occurred while performing an operation on a cryptographic message."),
        0x80091002: ("CRYPT_E_UNKNOWN_ALGO", "Unknown cryptographic algorithm."),
        0x80091003: ("CRYPT_E_OID_FORMAT", "The object identifier is poorly formatted."),
        0x80091004: ("CRYPT_E_INVALID_MSG_TYPE", "Invalid cryptographic message type."),
        0x80091005: ("CRYPT_E_UNEXPECTED_ENCODING", "Unexpected cryptographic message encoding."),
        0x80091006: ("CRYPT_E_AUTH_ATTR_MISSING", "The cryptographic message does not contain an expected authenticated attribute."),
        0x80091007: ("CRYPT_E_HASH_VALUE", "The hash value is not correct."),
        0x80091008: ("CRYPT_E_INVALID_INDEX", "The index value is not valid."),
        0x80091009: ("CRYPT_E_ALREADY_DECRYPTED", "The content of the cryptographic message has already been decrypted."),
        0x8009100A: ("CRYPT_E_NOT_DECRYPTED", "The content of the cryptographic message has not been decrypted yet."),
        0x8009100B: ("CRYPT_E_RECIPIENT_NOT_FOUND", "The enveloped-data message does not contain the specified recipient."),
        0x8009100C: ("CRYPT_E_CONTROL_TYPE", "Invalid control type."),
        0x8009100D: ("CRYPT_E_ISSUER_SERIALNUMBER", "Invalid issuer or serial number."),
        0x8009100E: ("CRYPT_E_SIGNER_NOT_FOUND", "Cannot find the original signer."),
        0x8009100F: ("CRYPT_E_ATTRIBUTES_MISSING", "The cryptographic message does not contain all of the requested attributes."),
        0x80091010: ("CRYPT_E_STREAM_MSG_NOT_READY", "The streamed cryptographic message is not ready to return data."),
        0x80091011: ("CRYPT_E_STREAM_INSUFFICIENT_DATA", "The streamed cryptographic message requires more data to complete the decode operation."),
        0x80092001: ("CRYPT_E_BAD_LEN", "The length specified for the output data was insufficient."),
        0x80092002: ("CRYPT_E_BAD_ENCODE", "An error occurred during the encode or decode operation."),
        0x80092003: ("CRYPT_E_FILE_ERROR", "An error occurred while reading or writing to a file."),
        0x80092004: ("CRYPT_E_NOT_FOUND", "Cannot find object or property."),
        0x80092005: ("CRYPT_E_EXISTS", "The object or property already exists."),
        0x80092006: ("CRYPT_E_NO_PROVIDER", "No provider was specified for the store or object."),
        0x80092007: ("CRYPT_E_SELF_SIGNED", "The specified certificate is self-signed."),
        0x80092008: ("CRYPT_E_DELETED_PREV", "The previous certificate or certificate revocation list (CRL) context was deleted."),
        0x80092009: ("CRYPT_E_NO_MATCH", "Cannot find the requested object."),
        0x8009200A: ("CRYPT_E_UNEXPECTED_MSG_TYPE", "The certificate does not have a property that references a private key."),
        0x8009200B: ("CRYPT_E_NO_KEY_PROPERTY", "Cannot find the certificate and private key for decryption."),
        0x8009200C: ("CRYPT_E_NO_DECRYPT_CERT", "Cannot find the certificate and private key to use for decryption."),
        0x8009200D: ("CRYPT_E_BAD_MSG", "Not a cryptographic message or the cryptographic message is not formatted correctly."),
        0x8009200E: ("CRYPT_E_NO_SIGNER", "The signed cryptographic message does not have a signer for the specified signer index."),
        0x8009200F: ("CRYPT_E_PENDING_CLOSE", "Final closure is pending until additional frees or closes."),
        0x80092010: ("CRYPT_E_REVOKED", "The certificate is revoked."),
        0x80092011: ("CRYPT_E_NO_REVOCATION_DLL", "No DLL or exported function was found to verify revocation."),
        0x80092012: ("CRYPT_E_NO_REVOCATION_CHECK", "The revocation function was unable to check revocation for the certificate."),
        0x80092013: ("CRYPT_E_REVOCATION_OFFLINE", "The revocation function was unable to check revocation because the revocation server was offline."),
        0x80092014: ("CRYPT_E_NOT_IN_REVOCATION_DATABASE", "The certificate is not in the revocation server's database."),
        0x80092020: ("CRYPT_E_INVALID_NUMERIC_STRING", "The string contains a non-numeric character."),
        0x80092021: ("CRYPT_E_INVALID_PRINTABLE_STRING", "The string contains a nonprintable character."),
        0x80092022: ("CRYPT_E_INVALID_IA5_STRING", "The string contains a character not in the 7-bit ASCII character set."),
        0x80092023: ("CRYPT_E_INVALID_X500_STRING", "The string contains an invalid X500 name attribute key, object identifier (OID), value, or delimiter."),
        0x80092024: ("CRYPT_E_NOT_CHAR_STRING", "The dwValueType for the CERT_NAME_VALUE is not one of the character strings. Most likely it is either a CERT_RDN_ENCODED_BLOB or CERT_TDN_OCTED_STRING."),
        0x80092025: ("CRYPT_E_FILERESIZED", "The Put operation cannot continue. The file needs to be resized. However, there is already a signature present. A complete signing operation must be done."),
        0x80092026: ("CRYPT_E_SECURITY_SETTINGS", "The cryptographic operation failed due to a local security option setting."),
        0x80092027: ("CRYPT_E_NO_VERIFY_USAGE_DLL", "No DLL or exported function was found to verify subject usage."),
        0x80092028: ("CRYPT_E_NO_VERIFY_USAGE_CHECK", "The called function was unable to perform a usage check on the subject."),
        0x80092029: ("CRYPT_E_VERIFY_USAGE_OFFLINE", "The called function was unable to complete the usage check because the server was offline."),
        0x8009202A: ("CRYPT_E_NOT_IN_CTL", "The subject was not found in a certificate trust list (CTL)."),
        0x8009202B: ("CRYPT_E_NO_TRUSTED_SIGNER", "None of the signers of the cryptographic message or certificate trust list is trusted."),
        0x8009202C: ("CRYPT_E_MISSING_PUBKEY_PARA", "The public key's algorithm parameters are missing."),
        0x80093000: ("CRYPT_E_OSS_ERROR", "OSS Certificate encode/decode error code base."),
        0x80093001: ("OSS_MORE_BUF", "OSS ASN.1 Error: Output Buffer is too small."),
        0x80093002: ("OSS_NEGATIVE_UINTEGER", "OSS ASN.1 Error: Signed integer is encoded as a unsigned integer."),
        0x80093003: ("OSS_PDU_RANGE", "OSS ASN.1 Error: Unknown ASN.1 data type."),
        0x80093004: ("OSS_MORE_INPUT", "OSS ASN.1 Error: Output buffer is too small; the decoded data has been truncated."),
        0x80093005: ("OSS_DATA_ERROR", "OSS ASN.1 Error: Invalid data."),
        0x80093006: ("OSS_BAD_ARG", "OSS ASN.1 Error: Invalid argument."),
        0x80093007: ("OSS_BAD_VERSION", "OSS ASN.1 Error: Encode/Decode version mismatch."),
        0x80093008: ("OSS_OUT_MEMORY", "OSS ASN.1 Error: Out of memory."),
        0x80093009: ("OSS_PDU_MISMATCH", "OSS ASN.1 Error: Encode/Decode error."),
        0x8009300A: ("OSS_LIMITED", "OSS ASN.1 Error: Internal error."),
        0x8009300B: ("OSS_BAD_PTR", "OSS ASN.1 Error: Invalid data."),
        0x8009300C: ("OSS_BAD_TIME", "OSS ASN.1 Error: Invalid data."),
        0x8009300D: ("OSS_INDEFINITE_NOT_SUPPORTED", "OSS ASN.1 Error: Unsupported BER indefinite-length encoding."),
        0x8009300E: ("OSS_MEM_ERROR", "OSS ASN.1 Error: Access violation."),
        0x8009300F: ("OSS_BAD_TABLE", "OSS ASN.1 Error: Invalid data."),
        0x80093010: ("OSS_TOO_LONG", "OSS ASN.1 Error: Invalid data."),
        0x80093011: ("OSS_CONSTRAINT_VIOLATED", "OSS ASN.1 Error: Invalid data."),
        0x80093012: ("OSS_FATAL_ERROR", "OSS ASN.1 Error: Internal error."),
        0x80093013: ("OSS_ACCESS_SERIALIZATION_ERROR", "OSS ASN.1 Error: Multithreading conflict."),
        0x80093014: ("OSS_NULL_TBL", "OSS ASN.1 Error: Invalid data."),
        0x80093015: ("OSS_NULL_FCN", "OSS ASN.1 Error: Invalid data."),
        0x80093016: ("OSS_BAD_ENCRULES", "OSS ASN.1 Error: Invalid data."),
        0x80093017: ("OSS_UNAVAIL_ENCRULES", "OSS ASN.1 Error: Encode/Decode function not implemented."),
        0x80093018: ("OSS_CANT_OPEN_TRACE_WINDOW", "OSS ASN.1 Error: Trace file error."),
        0x80093019: ("OSS_UNIMPLEMENTED", "OSS ASN.1 Error: Function not implemented."),
        0x8009301A: ("OSS_OID_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x8009301B: ("OSS_CANT_OPEN_TRACE_FILE", "OSS ASN.1 Error: Trace file error."),
        0x8009301C: ("OSS_TRACE_FILE_ALREADY_OPEN", "OSS ASN.1 Error: Trace file error."),
        0x8009301D: ("OSS_TABLE_MISMATCH", "OSS ASN.1 Error: Invalid data."),
        0x8009301E: ("OSS_TYPE_NOT_SUPPORTED", "OSS ASN.1 Error: Invalid data."),
        0x8009301F: ("OSS_REAL_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x80093020: ("OSS_REAL_CODE_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x80093021: ("OSS_OUT_OF_RANGE", "OSS ASN.1 Error: Program link error."),
        0x80093022: ("OSS_COPIER_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x80093023: ("OSS_CONSTRAINT_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x80093024: ("OSS_COMPARATOR_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x80093025: ("OSS_COMPARATOR_CODE_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x80093026: ("OSS_MEM_MGR_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x80093027: ("OSS_PDV_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x80093028: ("OSS_PDV_CODE_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x80093029: ("OSS_API_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x8009302A: ("OSS_BERDER_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x8009302B: ("OSS_PER_DLL_NOT_LINKED", "OSS ASN.1 Error: Program link error."),
        0x8009302C: ("OSS_OPEN_TYPE_ERROR", "OSS ASN.1 Error: Program link error."),
        0x8009302D: ("OSS_MUTEX_NOT_CREATED", "OSS ASN.1 Error: System resource error."),
        0x8009302E: ("OSS_CANT_CLOSE_TRACE_FILE", "OSS ASN.1 Error: Trace file error."),
        0x80093100: ("CRYPT_E_ASN1_ERROR", "ASN1 Certificate encode/decode error code base."),
        0x80093101: ("CRYPT_E_ASN1_INTERNAL", "ASN1 internal encode or decode error."),
        0x80093102: ("CRYPT_E_ASN1_EOD", "ASN1 unexpected end of data."),
        0x80093103: ("CRYPT_E_ASN1_CORRUPT", "ASN1 corrupted data."),
        0x80093104: ("CRYPT_E_ASN1_LARGE", "ASN1 value too large."),
        0x80093105: ("CRYPT_E_ASN1_CONSTRAINT", "ASN1 constraint violated."),
        0x80093106: ("CRYPT_E_ASN1_MEMORY", "ASN1 out of memory."),
        0x80093107: ("CRYPT_E_ASN1_OVERFLOW", "ASN1 buffer overflow."),
        0x80093108: ("CRYPT_E_ASN1_BADPDU", "ASN1 function not supported for this protocol data unit (PDU)."),
        0x80093109: ("CRYPT_E_ASN1_BADARGS", "ASN1 bad arguments to function call."),
        0x8009310A: ("CRYPT_E_ASN1_BADREAL", "ASN1 bad real value."),
        0x8009310B: ("CRYPT_E_ASN1_BADTAG", "ASN1 bad tag value met."),
        0x8009310C: ("CRYPT_E_ASN1_CHOICE", "ASN1 bad choice value."),
        0x8009310D: ("CRYPT_E_ASN1_RULE", "ASN1 bad encoding rule."),
        0x8009310E: ("CRYPT_E_ASN1_UTF8", "ASN1 bad Unicode (UTF8)."),
        0x80093133: ("CRYPT_E_ASN1_PDU_TYPE", "ASN1 bad PDU type."),
        0x80093134: ("CRYPT_E_ASN1_NYI", "ASN1 not yet implemented."),
        0x80093201: ("CRYPT_E_ASN1_EXTENDED", "ASN1 skipped unknown extensions."),
        0x80093202: ("CRYPT_E_ASN1_NOEOD", "ASN1 end of data expected."),
        0x80094001: ("CERTSRV_E_BAD_REQUESTSUBJECT", "The request subject name is invalid or too long."),
        0x80094002: ("CERTSRV_E_NO_REQUEST", "The request does not exist."),
        0x80094003: ("CERTSRV_E_BAD_REQUESTSTATUS", "The request's current status does not allow this operation."),
        0x80094004: ("CERTSRV_E_PROPERTY_EMPTY", "The requested property value is empty."),
        0x80094005: ("CERTSRV_E_INVALID_CA_CERTIFICATE", "The CA's certificate contains invalid data."),
        0x80094006: ("CERTSRV_E_SERVER_SUSPENDED", "Certificate service has been suspended for a database restore operation."),
        0x80094007: ("CERTSRV_E_ENCODING_LENGTH", "The certificate contains an encoded length that is potentially incompatible with older enrollment software."),
        0x80094008: ("CERTSRV_E_ROLECONFLICT", "The operation is denied. The user has multiple roles assigned, and the CA is configured to enforce role separation."),
        0x80094009: ("CERTSRV_E_RESTRICTEDOFFICER", "The operation is denied. It can only be performed by a certificate manager that is allowed to manage certificates for the current requester."),
        0x8009400A: ("CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED", "Cannot archive private key. The CA is not configured for key archival."),
        0x8009400B: ("CERTSRV_E_NO_VALID_KRA", "Cannot archive private key. The CA could not verify one or more key recovery certificates."),
        0x8009400C: ("CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL", "The request is incorrectly formatted. The encrypted private key must be in an unauthenticated attribute in an outermost signature."),
        0x8009400D: ("CERTSRV_E_NO_CAADMIN_DEFINED", "At least one security principal must have the permission to manage this CA."),
        0x8009400E: ("CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE", "The request contains an invalid renewal certificate attribute."),
        0x8009400F: ("CERTSRV_E_NO_DB_SESSIONS", "An attempt was made to open a CA database session, but there are already too many active sessions. The server may need to be configured to allow additional sessions."),
        0x80094010: ("CERTSRV_E_ALIGNMENT_FAULT", "A memory reference caused a data alignment fault."),
        0x80094011: ("CERTSRV_E_ENROLL_DENIED", "The permissions on this CA do not allow the current user to enroll for certificates."),
        0x80094012: ("CERTSRV_E_TEMPLATE_DENIED", "The permissions on the certificate template do not allow the current user to enroll for this type of certificate."),
        0x80094013: ("CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE", "The contacted domain controller cannot support signed Lightweight Directory Access Protocol (LDAP) traffic. Update the domain controller or configure Certificate Services to use SSL for Active Directory access."),
        0x80094800: ("CERTSRV_E_UNSUPPORTED_CERT_TYPE", "The requested certificate template is not supported by this CA."),
        0x80094801: ("CERTSRV_E_NO_CERT_TYPE", "The request contains no certificate template information."),
        0x80094802: ("CERTSRV_E_TEMPLATE_CONFLICT", "The request contains conflicting template information."),
        0x80094803: ("CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED", "The request is missing a required Subject Alternate name extension."),
        0x80094804: ("CERTSRV_E_ARCHIVED_KEY_REQUIRED", "The request is missing a required private key for archival by the server."),
        0x80094805: ("CERTSRV_E_SMIME_REQUIRED", "The request is missing a required SMIME capabilities extension."),
        0x80094806: ("CERTSRV_E_BAD_RENEWAL_SUBJECT", "The request was made on behalf of a subject other than the caller. The certificate template must be configured to require at least one signature to authorize the request."),
        0x80094807: ("CERTSRV_E_BAD_TEMPLATE_VERSION", "The request template version is newer than the supported template version."),
        0x80094808: ("CERTSRV_E_TEMPLATE_POLICY_REQUIRED", "The template is missing a required signature policy attribute."),
        0x80094809: ("CERTSRV_E_SIGNATURE_POLICY_REQUIRED", "The request is missing required signature policy information."),
        0x8009480A: ("CERTSRV_E_SIGNATURE_COUNT", "The request is missing one or more required signatures."),
        0x8009480B: ("CERTSRV_E_SIGNATURE_REJECTED", "One or more signatures did not include the required application or issuance policies. The request is missing one or more required valid signatures."),
        0x8009480C: ("CERTSRV_E_ISSUANCE_POLICY_REQUIRED", "The request is missing one or more required signature issuance policies."),
        0x8009480D: ("CERTSRV_E_SUBJECT_UPN_REQUIRED", "The UPN is unavailable and cannot be added to the Subject Alternate name."),
        0x8009480E: ("CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED", "The Active Directory GUID is unavailable and cannot be added to the Subject Alternate name."),
        0x8009480F: ("CERTSRV_E_SUBJECT_DNS_REQUIRED", "The Domain Name System (DNS) name is unavailable and cannot be added to the Subject Alternate name."),
        0x80094810: ("CERTSRV_E_ARCHIVED_KEY_UNEXPECTED", "The request includes a private key for archival by the server, but key archival is not enabled for the specified certificate template."),
        0x80094811: ("CERTSRV_E_KEY_LENGTH", "The public key does not meet the minimum size required by the specified certificate template."),
        0x80094812: ("CERTSRV_E_SUBJECT_EMAIL_REQUIRED", "The email name is unavailable and cannot be added to the Subject or Subject Alternate name."),
        0x80094813: ("CERTSRV_E_UNKNOWN_CERT_TYPE", "One or more certificate templates to be enabled on this CA could not be found."),
        0x80094814: ("CERTSRV_E_CERT_TYPE_OVERLAP", "The certificate template renewal period is longer than the certificate validity period. The template should be reconfigured or the CA certificate renewed."),
        0x80094815: ("CERTSRV_E_TOO_MANY_SIGNATURES", "The certificate template requires too many return authorization (RA) signatures. Only one RA signature is allowed."),
        0x80094816: ("CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY", "The key used in a renewal request does not match one of the certificates being renewed."),
        0x80094817: ("CERTSRV_E_INVALID_EK", "The endorsement key certificate is not valid."),
        0x8009481A: ("CERTSRV_E_KEY_ATTESTATION", "Key attestation did not succeed."),
        0x80095000: ("XENROLL_E_KEY_NOT_EXPORTABLE", "The key is not exportable."),
        0x80095001: ("XENROLL_E_CANNOT_ADD_ROOT_CERT", "You cannot add the root CA certificate into your local store."),
        0x80095002: ("XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND", "The key archival hash attribute was not found in the response."),
        0x80095003: ("XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH", "An unexpected key archival hash attribute was found in the response."),
        0x80095004: ("XENROLL_E_RESPONSE_KA_HASH_MISMATCH", "There is a key archival hash mismatch between the request and the response."),
        0x80095005: ("XENROLL_E_KEYSPEC_SMIME_MISMATCH", "Signing certificate cannot include SMIME extension."),
        0x80096001: ("TRUST_E_SYSTEM_ERROR", "A system-level error occurred while verifying trust."),
        0x80096002: ("TRUST_E_NO_SIGNER_CERT", "The certificate for the signer of the message is invalid or not found."),
        0x80096003: ("TRUST_E_COUNTER_SIGNER", "One of the counter signatures was invalid."),
        0x80096004: ("TRUST_E_CERT_SIGNATURE", "The signature of the certificate cannot be verified."),
        0x80096005: ("TRUST_E_TIME_STAMP", "The time-stamp signature or certificate could not be verified or is malformed."),
        0x80096010: ("TRUST_E_BAD_DIGEST", "The digital signature of the object did not verify."),
        0x80096019: ("TRUST_E_BASIC_CONSTRAINTS", "A certificate's basic constraint extension has not been observed."),
        0x8009601E: ("TRUST_E_FINANCIAL_CRITERIA", "The certificate does not meet or contain the Authenticode financial extensions."),
        0x80097001: ("MSSIPOTF_E_OUTOFMEMRANGE", "Tried to reference a part of the file outside the proper range."),
        0x80097002: ("MSSIPOTF_E_CANTGETOBJECT", "Could not retrieve an object from the file."),
        0x80097003: ("MSSIPOTF_E_NOHEADTABLE", "Could not find the head table in the file."),
        0x80097004: ("MSSIPOTF_E_BAD_MAGICNUMBER", "The magic number in the head table is incorrect."),
        0x80097005: ("MSSIPOTF_E_BAD_OFFSET_TABLE", "The offset table has incorrect values."),
        0x80097006: ("MSSIPOTF_E_TABLE_TAGORDER", "Duplicate table tags or the tags are out of alphabetical order."),
        0x80097007: ("MSSIPOTF_E_TABLE_LONGWORD", "A table does not start on a long word boundary."),
        0x80097008: ("MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT", "First table does not appear after header information."),
        0x80097009: ("MSSIPOTF_E_TABLES_OVERLAP", "Two or more tables overlap."),
        0x8009700A: ("MSSIPOTF_E_TABLE_PADBYTES", "Too many pad bytes between tables, or pad bytes are not 0."),
        0x8009700B: ("MSSIPOTF_E_FILETOOSMALL", "File is too small to contain the last table."),
        0x8009700C: ("MSSIPOTF_E_TABLE_CHECKSUM", "A table checksum is incorrect."),
        0x8009700D: ("MSSIPOTF_E_FILE_CHECKSUM", "The file checksum is incorrect."),
        0x80097010: ("MSSIPOTF_E_FAILED_POLICY", "The signature does not have the correct attributes for the policy."),
        0x80097011: ("MSSIPOTF_E_FAILED_HINTS_CHECK", "The file did not pass the hints check."),
        0x80097012: ("MSSIPOTF_E_NOT_OPENTYPE", "The file is not an OpenType file."),
        0x80097013: ("MSSIPOTF_E_FILE", "Failed on a file operation (such as open, map, read, or write)."),
        0x80097014: ("MSSIPOTF_E_CRYPT", "A call to a CryptoAPI function failed."),
        0x80097015: ("MSSIPOTF_E_BADVERSION", "There is a bad version number in the file."),
        0x80097016: ("MSSIPOTF_E_DSIG_STRUCTURE", "The structure of the DSIG table is incorrect."),
        0x80097017: ("MSSIPOTF_E_PCONST_CHECK", "A check failed in a partially constant table."),
        0x80097018: ("MSSIPOTF_E_STRUCTURE", "Some kind of structural error."),
        0x80097019: ("ERROR_CRED_REQUIRES_CONFIRMATION", "The requested credential requires confirmation."),
        0x800B0001: ("TRUST_E_PROVIDER_UNKNOWN", "Unknown trust provider."),
        0x800B0002: ("TRUST_E_ACTION_UNKNOWN", "The trust verification action specified is not supported by the specified trust provider."),
        0x800B0003: ("TRUST_E_SUBJECT_FORM_UNKNOWN", "The form specified for the subject is not one supported or known by the specified trust provider."),
        0x800B0004: ("TRUST_E_SUBJECT_NOT_TRUSTED", "The subject is not trusted for the specified action."),
        0x800B0005: ("DIGSIG_E_ENCODE", "Error due to problem in ASN.1 encoding process."),
        0x800B0006: ("DIGSIG_E_DECODE", "Error due to problem in ASN.1 decoding process."),
        0x800B0007: ("DIGSIG_E_EXTENSIBILITY", "Reading/writing extensions where attributes are appropriate, and vice versa."),
        0x800B0008: ("DIGSIG_E_CRYPTO", "Unspecified cryptographic failure."),
        0x800B0009: ("PERSIST_E_SIZEDEFINITE", "The size of the data could not be determined."),
        0x800B000A: ("PERSIST_E_SIZEINDEFINITE", "The size of the indefinite-sized data could not be determined."),
        0x800B000B: ("PERSIST_E_NOTSELFSIZING", "This object does not read and write self-sizing data."),
        0x800B0100: ("TRUST_E_NOSIGNATURE", "No signature was present in the subject."),
        0x800B0101: ("CERT_E_EXPIRED", "A required certificate is not within its validity period when verifying against the current system clock or the time stamp in the signed file."),
        0x800B0102: ("CERT_E_VALIDITYPERIODNESTING", "The validity periods of the certification chain do not nest correctly."),
        0x800B0103: ("CERT_E_ROLE", "A certificate that can only be used as an end entity is being used as a CA or vice versa."),
        0x800B0104: ("CERT_E_PATHLENCONST", "A path length constraint in the certification chain has been violated."),
        0x800B0105: ("CERT_E_CRITICAL", "A certificate contains an unknown extension that is marked \"critical\"."),
        0x800B0106: ("CERT_E_PURPOSE", "A certificate is being used for a purpose other than the ones specified by its CA."),
        0x800B0107: ("CERT_E_ISSUERCHAINING", "A parent of a given certificate did not issue that child certificate."),
        0x800B0108: ("CERT_E_MALFORMED", "A certificate is missing or has an empty value for an important field, such as a subject or issuer name."),
        0x800B0109: ("CERT_E_UNTRUSTEDROOT", "A certificate chain processed, but terminated in a root certificate that is not trusted by the trust provider."),
        0x800B010A: ("CERT_E_CHAINING", "A certificate chain could not be built to a trusted root authority."),
        0x800B010B: ("TRUST_E_FAIL", "Generic trust failure."),
        0x800B010C: ("CERT_E_REVOKED", "A certificate was explicitly revoked by its issuer."),
        0x800B010D: ("CERT_E_UNTRUSTEDTESTROOT", "The certification path terminates with the test root that is not trusted with the current policy settings."),
        0x800B010E: ("CERT_E_REVOCATION_FAILURE", "The revocation process could not continue-the certificates could not be checked."),
        0x800B010F: ("CERT_E_CN_NO_MATCH", "The certificate's CN name does not match the passed value."),
        0x800B0110: ("CERT_E_WRONG_USAGE", "The certificate is not valid for the requested usage."),
        0x800B0111: ("TRUST_E_EXPLICIT_DISTRUST", "The certificate was explicitly marked as untrusted by the user."),
        0x800B0112: ("CERT_E_UNTRUSTEDCA", "A certification chain processed correctly, but one of the CA certificates is not trusted by the policy provider."),
        0x800B0113: ("CERT_E_INVALID_POLICY", "The certificate has invalid policy."),
        0x800B0114: ("CERT_E_INVALID_NAME", "The certificate has an invalid name. The name is not included in the permitted list or is explicitly excluded."),
        0x800D0003: ("NS_W_SERVER_BANDWIDTH_LIMIT", "The maximum filebitrate value specified is greater than the server's configured maximum bandwidth."),
        0x800D0004: ("NS_W_FILE_BANDWIDTH_LIMIT", "The maximum bandwidth value specified is less than the maximum filebitrate."),
        0x800D0060: ("NS_W_UNKNOWN_EVENT", "Unknown %1 event encountered."),
        0x800D0199: ("NS_I_CATATONIC_FAILURE", "Disk %1 ( %2 ) on Content Server %3, will be failed because it is catatonic."),
        0x800D019A: ("NS_I_CATATONIC_AUTO_UNFAIL", "Disk %1 ( %2 ) on Content Server %3, auto online from catatonic state."),
        0x800F0000: ("SPAPI_E_EXPECTED_SECTION_NAME", "A non-empty line was encountered in the INF before the start of a section."),
        0x800F0001: ("SPAPI_E_BAD_SECTION_NAME_LINE", "A section name marker in the information file (INF) is not complete or does not exist on a line by itself."),
        0x800F0002: ("SPAPI_E_SECTION_NAME_TOO_LONG", "An INF section was encountered whose name exceeds the maximum section name length."),
        0x800F0003: ("SPAPI_E_GENERAL_SYNTAX", "The syntax of the INF is invalid."),
        0x800F0100: ("SPAPI_E_WRONG_INF_STYLE", "The style of the INF is different than what was requested."),
        0x800F0101: ("SPAPI_E_SECTION_NOT_FOUND", "The required section was not found in the INF."),
        0x800F0102: ("SPAPI_E_LINE_NOT_FOUND", "The required line was not found in the INF."),
        0x800F0103: ("SPAPI_E_NO_BACKUP", "The files affected by the installation of this file queue have not been backed up for uninstall."),
        0x800F0200: ("SPAPI_E_NO_ASSOCIATED_CLASS", "The INF or the device information set or element does not have an associated install class."),
        0x800F0201: ("SPAPI_E_CLASS_MISMATCH", "The INF or the device information set or element does not match the specified install class."),
        0x800F0202: ("SPAPI_E_DUPLICATE_FOUND", "An existing device was found that is a duplicate of the device being manually installed."),
        0x800F0203: ("SPAPI_E_NO_DRIVER_SELECTED", "There is no driver selected for the device information set or element."),
        0x800F0204: ("SPAPI_E_KEY_DOES_NOT_EXIST", "The requested device registry key does not exist."),
        0x800F0205: ("SPAPI_E_INVALID_DEVINST_NAME", "The device instance name is invalid."),
        0x800F0206: ("SPAPI_E_INVALID_CLASS", "The install class is not present or is invalid."),
        0x800F0207: ("SPAPI_E_DEVINST_ALREADY_EXISTS", "The device instance cannot be created because it already exists."),
        0x800F0208: ("SPAPI_E_DEVINFO_NOT_REGISTERED", "The operation cannot be performed on a device information element that has not been registered."),
        0x800F0209: ("SPAPI_E_INVALID_REG_PROPERTY", "The device property code is invalid."),
        0x800F020A: ("SPAPI_E_NO_INF", "The INF from which a driver list is to be built does not exist."),
        0x800F020B: ("SPAPI_E_NO_SUCH_DEVINST", "The device instance does not exist in the hardware tree."),
        0x800F020C: ("SPAPI_E_CANT_LOAD_CLASS_ICON", "The icon representing this install class cannot be loaded."),
        0x800F020D: ("SPAPI_E_INVALID_CLASS_INSTALLER", "The class installer registry entry is invalid."),
        0x800F020E: ("SPAPI_E_DI_DO_DEFAULT", "The class installer has indicated that the default action should be performed for this installation request."),
        0x800F020F: ("SPAPI_E_DI_NOFILECOPY", "The operation does not require any files to be copied."),
        0x800F0210: ("SPAPI_E_INVALID_HWPROFILE", "The specified hardware profile does not exist."),
        0x800F0211: ("SPAPI_E_NO_DEVICE_SELECTED", "There is no device information element currently selected for this device information set."),
        0x800F0212: ("SPAPI_E_DEVINFO_LIST_LOCKED", "The operation cannot be performed because the device information set is locked."),
        0x800F0213: ("SPAPI_E_DEVINFO_DATA_LOCKED", "The operation cannot be performed because the device information element is locked."),
        0x800F0214: ("SPAPI_E_DI_BAD_PATH", "The specified path does not contain any applicable device INFs."),
        0x800F0215: ("SPAPI_E_NO_CLASSINSTALL_PARAMS", "No class installer parameters have been set for the device information set or element."),
        0x800F0216: ("SPAPI_E_FILEQUEUE_LOCKED", "The operation cannot be performed because the file queue is locked."),
        0x800F0217: ("SPAPI_E_BAD_SERVICE_INSTALLSECT", "A service installation section in this INF is invalid."),
        0x800F0218: ("SPAPI_E_NO_CLASS_DRIVER_LIST", "There is no class driver list for the device information element."),
        0x800F0219: ("SPAPI_E_NO_ASSOCIATED_SERVICE", "The installation failed because a function driver was not specified for this device instance."),
        0x800F021A: ("SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE", "There is presently no default device interface designated for this interface class."),
        0x800F021B: ("SPAPI_E_DEVICE_INTERFACE_ACTIVE", "The operation cannot be performed because the device interface is currently active."),
        0x800F021C: ("SPAPI_E_DEVICE_INTERFACE_REMOVED", "The operation cannot be performed because the device interface has been removed from the system."),
        0x800F021D: ("SPAPI_E_BAD_INTERFACE_INSTALLSECT", "An interface installation section in this INF is invalid."),
        0x800F021E: ("SPAPI_E_NO_SUCH_INTERFACE_CLASS", "This interface class does not exist in the system."),
        0x800F021F: ("SPAPI_E_INVALID_REFERENCE_STRING", "The reference string supplied for this interface device is invalid."),
        0x800F0220: ("SPAPI_E_INVALID_MACHINENAME", "The specified machine name does not conform to Universal Naming Convention (UNCs)."),
        0x800F0221: ("SPAPI_E_REMOTE_COMM_FAILURE", "A general remote communication error occurred."),
        0x800F0222: ("SPAPI_E_MACHINE_UNAVAILABLE", "The machine selected for remote communication is not available at this time."),
        0x800F0223: ("SPAPI_E_NO_CONFIGMGR_SERVICES", "The Plug and Play service is not available on the remote machine."),
        0x800F0224: ("SPAPI_E_INVALID_PROPPAGE_PROVIDER", "The property page provider registry entry is invalid."),
        0x800F0225: ("SPAPI_E_NO_SUCH_DEVICE_INTERFACE", "The requested device interface is not present in the system."),
        0x800F0226: ("SPAPI_E_DI_POSTPROCESSING_REQUIRED", "The device's co-installer has additional work to perform after installation is complete."),
        0x800F0227: ("SPAPI_E_INVALID_COINSTALLER", "The device's co-installer is invalid."),
        0x800F0228: ("SPAPI_E_NO_COMPAT_DRIVERS", "There are no compatible drivers for this device."),
        0x800F0229: ("SPAPI_E_NO_DEVICE_ICON", "There is no icon that represents this device or device type."),
        0x800F022A: ("SPAPI_E_INVALID_INF_LOGCONFIG", "A logical configuration specified in this INF is invalid."),
        0x800F022B: ("SPAPI_E_DI_DONT_INSTALL", "The class installer has denied the request to install or upgrade this device."),
        0x800F022C: ("SPAPI_E_INVALID_FILTER_DRIVER", "One of the filter drivers installed for this device is invalid."),
        0x800F022D: ("SPAPI_E_NON_WINDOWS_NT_DRIVER", "The driver selected for this device does not support Windows XP."),
        0x800F022E: ("SPAPI_E_NON_WINDOWS_DRIVER", "The driver selected for this device does not support Windows."),
        0x800F022F: ("SPAPI_E_NO_CATALOG_FOR_OEM_INF", "The third-party INF does not contain digital signature information."),
        0x800F0230: ("SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE", "An invalid attempt was made to use a device installation file queue for verification of digital signatures relative to other platforms."),
        0x800F0231: ("SPAPI_E_NOT_DISABLEABLE", "The device cannot be disabled."),
        0x800F0232: ("SPAPI_E_CANT_REMOVE_DEVINST", "The device could not be dynamically removed."),
        0x800F0233: ("SPAPI_E_INVALID_TARGET", "Cannot copy to specified target."),
        0x800F0234: ("SPAPI_E_DRIVER_NONNATIVE", "Driver is not intended for this platform."),
        0x800F0235: ("SPAPI_E_IN_WOW64", "Operation not allowed in WOW64."),
        0x800F0236: ("SPAPI_E_SET_SYSTEM_RESTORE_POINT", "The operation involving unsigned file copying was rolled back, so that a system restore point could be set."),
        0x800F0237: ("SPAPI_E_INCORRECTLY_COPIED_INF", "An INF was copied into the Windows INF directory in an improper manner."),
        0x800F0238: ("SPAPI_E_SCE_DISABLED", "The Security Configuration Editor (SCE) APIs have been disabled on this embedded product."),
        0x800F0239: ("SPAPI_E_UNKNOWN_EXCEPTION", "An unknown exception was encountered."),
        0x800F023A: ("SPAPI_E_PNP_REGISTRY_ERROR", "A problem was encountered when accessing the Plug and Play registry database."),
        0x800F023B: ("SPAPI_E_REMOTE_REQUEST_UNSUPPORTED", "The requested operation is not supported for a remote machine."),
        0x800F023C: ("SPAPI_E_NOT_AN_INSTALLED_OEM_INF", "The specified file is not an installed original equipment manufacturer (OEM) INF."),
        0x800F023D: ("SPAPI_E_INF_IN_USE_BY_DEVICES", "One or more devices are presently installed using the specified INF."),
        0x800F023E: ("SPAPI_E_DI_FUNCTION_OBSOLETE", "The requested device install operation is obsolete."),
        0x800F023F: ("SPAPI_E_NO_AUTHENTICODE_CATALOG", "A file could not be verified because it does not have an associated catalog signed via Authenticode."),
        0x800F0240: ("SPAPI_E_AUTHENTICODE_DISALLOWED", "Authenticode signature verification is not supported for the specified INF."),
        0x800F0241: ("SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER", "The INF was signed with an Authenticode catalog from a trusted publisher."),
        0x800F0242: ("SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED", "The publisher of an Authenticode-signed catalog has not yet been established as trusted."),
        0x800F0243: ("SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED", "The publisher of an Authenticode-signed catalog was not established as trusted."),
        0x800F0244: ("SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH", "The software was tested for compliance with Windows logo requirements on a different version of Windows and may not be compatible with this version."),
        0x800F0245: ("SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE", "The file may be validated only by a catalog signed via Authenticode."),
        0x800F0246: ("SPAPI_E_DEVICE_INSTALLER_NOT_READY", "One of the installers for this device cannot perform the installation at this time."),
        0x800F0247: ("SPAPI_E_DRIVER_STORE_ADD_FAILED", "A problem was encountered while attempting to add the driver to the store."),
        0x800F0248: ("SPAPI_E_DEVICE_INSTALL_BLOCKED", "The installation of this device is forbidden by system policy. Contact your system administrator."),
        0x800F0249: ("SPAPI_E_DRIVER_INSTALL_BLOCKED", "The installation of this driver is forbidden by system policy. Contact your system administrator."),
        0x800F024A: ("SPAPI_E_WRONG_INF_TYPE", "The specified INF is the wrong type for this operation."),
        0x800F024B: ("SPAPI_E_FILE_HASH_NOT_IN_CATALOG", "The hash for the file is not present in the specified catalog file. The file is likely corrupt or the victim of tampering."),
        0x800F024C: ("SPAPI_E_DRIVER_STORE_DELETE_FAILED", "A problem was encountered while attempting to delete the driver from the store."),
        0x800F0300: ("SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW", "An unrecoverable stack overflow was encountered."),
        0x800F1000: ("SPAPI_E_ERROR_NOT_INSTALLED", "No installed components were detected."),
        0x80100001: ("SCARD_F_INTERNAL_ERROR", "An internal consistency check failed."),
        0x80100002: ("SCARD_E_CANCELLED", "The action was canceled by an SCardCancel request."),
        0x80100003: ("SCARD_E_INVALID_HANDLE", "The supplied handle was invalid."),
        0x80100004: ("SCARD_E_INVALID_PARAMETER", "One or more of the supplied parameters could not be properly interpreted."),
        0x80100005: ("SCARD_E_INVALID_TARGET", "Registry startup information is missing or invalid."),
        0x80100006: ("SCARD_E_NO_MEMORY", "Not enough memory available to complete this command."),
        0x80100007: ("SCARD_F_WAITED_TOO_LONG", "An internal consistency timer has expired."),
        0x80100008: ("SCARD_E_INSUFFICIENT_BUFFER", "The data buffer to receive returned data is too small for the returned data."),
        0x80100009: ("SCARD_E_UNKNOWN_READER", "The specified reader name is not recognized."),
        0x8010000A: ("SCARD_E_TIMEOUT", "The user-specified time-out value has expired."),
        0x8010000B: ("SCARD_E_SHARING_VIOLATION", "The smart card cannot be accessed because of other connections outstanding."),
        0x8010000C: ("SCARD_E_NO_SMARTCARD", "The operation requires a smart card, but no smart card is currently in the device."),
        0x8010000D: ("SCARD_E_UNKNOWN_CARD", "The specified smart card name is not recognized."),
        0x8010000E: ("SCARD_E_CANT_DISPOSE", "The system could not dispose of the media in the requested manner."),
        0x8010000F: ("SCARD_E_PROTO_MISMATCH", "The requested protocols are incompatible with the protocol currently in use with the smart card."),
        0x80100010: ("SCARD_E_NOT_READY", "The reader or smart card is not ready to accept commands."),
        0x80100011: ("SCARD_E_INVALID_VALUE", "One or more of the supplied parameters values could not be properly interpreted."),
        0x80100012: ("SCARD_E_SYSTEM_CANCELLED", "The action was canceled by the system, presumably to log off or shut down."),
        0x80100013: ("SCARD_F_COMM_ERROR", "An internal communications error has been detected."),
        0x80100014: ("SCARD_F_UNKNOWN_ERROR", "An internal error has been detected, but the source is unknown."),
        0x80100015: ("SCARD_E_INVALID_ATR", "An automatic terminal recognition (ATR) obtained from the registry is not a valid ATR string."),
        0x80100016: ("SCARD_E_NOT_TRANSACTED", "An attempt was made to end a nonexistent transaction."),
        0x80100017: ("SCARD_E_READER_UNAVAILABLE", "The specified reader is not currently available for use."),
        0x80100018: ("SCARD_P_SHUTDOWN", "The operation has been aborted to allow the server application to exit."),
        0x80100019: ("SCARD_E_PCI_TOO_SMALL", "The peripheral component interconnect (PCI) Receive buffer was too small."),
        0x8010001A: ("SCARD_E_READER_UNSUPPORTED", "The reader driver does not meet minimal requirements for support."),
        0x8010001B: ("SCARD_E_DUPLICATE_READER", "The reader driver did not produce a unique reader name."),
        0x8010001C: ("SCARD_E_CARD_UNSUPPORTED", "The smart card does not meet minimal requirements for support."),
        0x8010001D: ("SCARD_E_NO_SERVICE", "The smart card resource manager is not running."),
        0x8010001E: ("SCARD_E_SERVICE_STOPPED", "The smart card resource manager has shut down."),
        0x8010001F: ("SCARD_E_UNEXPECTED", "An unexpected card error has occurred."),
        0x80100020: ("SCARD_E_ICC_INSTALLATION", "No primary provider can be found for the smart card."),
        0x80100021: ("SCARD_E_ICC_CREATEORDER", "The requested order of object creation is not supported."),
        0x80100022: ("SCARD_E_UNSUPPORTED_FEATURE", "This smart card does not support the requested feature."),
        0x80100023: ("SCARD_E_DIR_NOT_FOUND", "The identified directory does not exist in the smart card."),
        0x80100024: ("SCARD_E_FILE_NOT_FOUND", "The identified file does not exist in the smart card."),
        0x80100025: ("SCARD_E_NO_DIR", "The supplied path does not represent a smart card directory."),
        0x80100026: ("SCARD_E_NO_FILE", "The supplied path does not represent a smart card file."),
        0x80100027: ("SCARD_E_NO_ACCESS", "Access is denied to this file."),
        0x80100028: ("SCARD_E_WRITE_TOO_MANY", "The smart card does not have enough memory to store the information."),
        0x80100029: ("SCARD_E_BAD_SEEK", "There was an error trying to set the smart card file object pointer."),
        0x8010002A: ("SCARD_E_INVALID_CHV", "The supplied PIN is incorrect."),
        0x8010002B: ("SCARD_E_UNKNOWN_RES_MNG", "An unrecognized error code was returned from a layered component."),
        0x8010002C: ("SCARD_E_NO_SUCH_CERTIFICATE", "The requested certificate does not exist."),
        0x8010002D: ("SCARD_E_CERTIFICATE_UNAVAILABLE", "The requested certificate could not be obtained."),
        0x8010002E: ("SCARD_E_NO_READERS_AVAILABLE", "Cannot find a smart card reader."),
        0x8010002F: ("SCARD_E_COMM_DATA_LOST", "A communications error with the smart card has been detected. Retry the operation."),
        0x80100030: ("SCARD_E_NO_KEY_CONTAINER", "The requested key container does not exist on the smart card."),
        0x80100031: ("SCARD_E_SERVER_TOO_BUSY", "The smart card resource manager is too busy to complete this operation."),
        0x80100065: ("SCARD_W_UNSUPPORTED_CARD", "The reader cannot communicate with the smart card, due to ATR configuration conflicts."),
        0x80100066: ("SCARD_W_UNRESPONSIVE_CARD", "The smart card is not responding to a reset."),
        0x80100067: ("SCARD_W_UNPOWERED_CARD", "Power has been removed from the smart card, so that further communication is not possible."),
        0x80100068: ("SCARD_W_RESET_CARD", "The smart card has been reset, so any shared state information is invalid."),
        0x80100069: ("SCARD_W_REMOVED_CARD", "The smart card has been removed, so that further communication is not possible."),
        0x8010006A: ("SCARD_W_SECURITY_VIOLATION", "Access was denied because of a security violation."),
        0x8010006B: ("SCARD_W_WRONG_CHV", "The card cannot be accessed because the wrong PIN was presented."),
        0x8010006C: ("SCARD_W_CHV_BLOCKED", "The card cannot be accessed because the maximum number of PIN entry attempts has been reached."),
        0x8010006D: ("SCARD_W_EOF", "The end of the smart card file has been reached."),
        0x8010006E: ("SCARD_W_CANCELLED_BY_USER", "The action was canceled by the user."),
        0x8010006F: ("SCARD_W_CARD_NOT_AUTHENTICATED", "No PIN was presented to the smart card."),
        0x80110401: ("COMADMIN_E_OBJECTERRORS", "Errors occurred accessing one or more objects-the ErrorInfo collection may have more detail."),
        0x80110402: ("COMADMIN_E_OBJECTINVALID", "One or more of the object's properties are missing or invalid."),
        0x80110403: ("COMADMIN_E_KEYMISSING", "The object was not found in the catalog."),
        0x80110404: ("COMADMIN_E_ALREADYINSTALLED", "The object is already registered."),
        0x80110407: ("COMADMIN_E_APP_FILE_WRITEFAIL", "An error occurred writing to the application file."),
        0x80110408: ("COMADMIN_E_APP_FILE_READFAIL", "An error occurred reading the application file."),
        0x80110409: ("COMADMIN_E_APP_FILE_VERSION", "Invalid version number in application file."),
        0x8011040A: ("COMADMIN_E_BADPATH", "The file path is invalid."),
        0x8011040B: ("COMADMIN_E_APPLICATIONEXISTS", "The application is already installed."),
        0x8011040C: ("COMADMIN_E_ROLEEXISTS", "The role already exists."),
        0x8011040D: ("COMADMIN_E_CANTCOPYFILE", "An error occurred copying the file."),
        0x8011040F: ("COMADMIN_E_NOUSER", "One or more users are not valid."),
        0x80110410: ("COMADMIN_E_INVALIDUSERIDS", "One or more users in the application file are not valid."),
        0x80110411: ("COMADMIN_E_NOREGISTRYCLSID", "The component's CLSID is missing or corrupt."),
        0x80110412: ("COMADMIN_E_BADREGISTRYPROGID", "The component's programmatic ID is missing or corrupt."),
        0x80110413: ("COMADMIN_E_AUTHENTICATIONLEVEL", "Unable to set required authentication level for update request."),
        0x80110414: ("COMADMIN_E_USERPASSWDNOTVALID", "The identity or password set on the application is not valid."),
        0x80110418: ("COMADMIN_E_CLSIDORIIDMISMATCH", "Application file CLSIDs or instance identifiers (IIDs) do not match corresponding DLLs."),
        0x80110419: ("COMADMIN_E_REMOTEINTERFACE", "Interface information is either missing or changed."),
        0x8011041A: ("COMADMIN_E_DLLREGISTERSERVER", "DllRegisterServer failed on component install."),
        0x8011041B: ("COMADMIN_E_NOSERVERSHARE", "No server file share available."),
        0x8011041D: ("COMADMIN_E_DLLLOADFAILED", "DLL could not be loaded."),
        0x8011041E: ("COMADMIN_E_BADREGISTRYLIBID", "The registered TypeLib ID is not valid."),
        0x8011041F: ("COMADMIN_E_APPDIRNOTFOUND", "Application install directory not found."),
        0x80110423: ("COMADMIN_E_REGISTRARFAILED", "Errors occurred while in the component registrar."),
        0x80110424: ("COMADMIN_E_COMPFILE_DOESNOTEXIST", "The file does not exist."),
        0x80110425: ("COMADMIN_E_COMPFILE_LOADDLLFAIL", "The DLL could not be loaded."),
        0x80110426: ("COMADMIN_E_COMPFILE_GETCLASSOBJ", "GetClassObject failed in the DLL."),
        0x80110427: ("COMADMIN_E_COMPFILE_CLASSNOTAVAIL", "The DLL does not support the components listed in the TypeLib."),
        0x80110428: ("COMADMIN_E_COMPFILE_BADTLB", "The TypeLib could not be loaded."),
        0x80110429: ("COMADMIN_E_COMPFILE_NOTINSTALLABLE", "The file does not contain components or component information."),
        0x8011042A: ("COMADMIN_E_NOTCHANGEABLE", "Changes to this object and its subobjects have been disabled."),
        0x8011042B: ("COMADMIN_E_NOTDELETEABLE", "The delete function has been disabled for this object."),
        0x8011042C: ("COMADMIN_E_SESSION", "The server catalog version is not supported."),
        0x8011042D: ("COMADMIN_E_COMP_MOVE_LOCKED", "The component move was disallowed because the source or destination application is either a system application or currently locked against changes."),
        0x8011042E: ("COMADMIN_E_COMP_MOVE_BAD_DEST", "The component move failed because the destination application no longer exists."),
        0x80110430: ("COMADMIN_E_REGISTERTLB", "The system was unable to register the TypeLib."),
        0x80110433: ("COMADMIN_E_SYSTEMAPP", "This operation cannot be performed on the system application."),
        0x80110434: ("COMADMIN_E_COMPFILE_NOREGISTRAR", "The component registrar referenced in this file is not available."),
        0x80110435: ("COMADMIN_E_COREQCOMPINSTALLED", "A component in the same DLL is already installed."),
        0x80110436: ("COMADMIN_E_SERVICENOTINSTALLED", "The service is not installed."),
        0x80110437: ("COMADMIN_E_PROPERTYSAVEFAILED", "One or more property settings are either invalid or in conflict with each other."),
        0x80110438: ("COMADMIN_E_OBJECTEXISTS", "The object you are attempting to add or rename already exists."),
        0x80110439: ("COMADMIN_E_COMPONENTEXISTS", "The component already exists."),
        0x8011043B: ("COMADMIN_E_REGFILE_CORRUPT", "The registration file is corrupt."),
        0x8011043C: ("COMADMIN_E_PROPERTY_OVERFLOW", "The property value is too large."),
        0x8011043E: ("COMADMIN_E_NOTINREGISTRY", "Object was not found in registry."),
        0x8011043F: ("COMADMIN_E_OBJECTNOTPOOLABLE", "This object cannot be pooled."),
        0x80110446: ("COMADMIN_E_APPLID_MATCHES_CLSID", "A CLSID with the same GUID as the new application ID is already installed on this machine."),
        0x80110447: ("COMADMIN_E_ROLE_DOES_NOT_EXIST", "A role assigned to a component, interface, or method did not exist in the application."),
        0x80110448: ("COMADMIN_E_START_APP_NEEDS_COMPONENTS", "You must have components in an application to start the application."),
        0x80110449: ("COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM", "This operation is not enabled on this platform."),
        0x8011044A: ("COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY", "Application proxy is not exportable."),
        0x8011044B: ("COMADMIN_E_CAN_NOT_START_APP", "Failed to start application because it is either a library application or an application proxy."),
        0x8011044C: ("COMADMIN_E_CAN_NOT_EXPORT_SYS_APP", "System application is not exportable."),
        0x8011044D: ("COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT", "Cannot subscribe to this component (the component may have been imported)."),
        0x8011044E: ("COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER", "An event class cannot also be a subscriber component."),
        0x8011044F: ("COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE", "Library applications and application proxies are incompatible."),
        0x80110450: ("COMADMIN_E_BASE_PARTITION_ONLY", "This function is valid for the base partition only."),
        0x80110451: ("COMADMIN_E_START_APP_DISABLED", "You cannot start an application that has been disabled."),
        0x80110457: ("COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME", "The specified partition name is already in use on this computer."),
        0x80110458: ("COMADMIN_E_CAT_INVALID_PARTITION_NAME", "The specified partition name is invalid. Check that the name contains at least one visible character."),
        0x80110459: ("COMADMIN_E_CAT_PARTITION_IN_USE", "The partition cannot be deleted because it is the default partition for one or more users."),
        0x8011045A: ("COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES", "The partition cannot be exported because one or more components in the partition have the same file name."),
        0x8011045B: ("COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED", "Applications that contain one or more imported components cannot be installed into a nonbase partition."),
        0x8011045C: ("COMADMIN_E_AMBIGUOUS_APPLICATION_NAME", "The application name is not unique and cannot be resolved to an application ID."),
        0x8011045D: ("COMADMIN_E_AMBIGUOUS_PARTITION_NAME", "The partition name is not unique and cannot be resolved to a partition ID."),
        0x80110472: ("COMADMIN_E_REGDB_NOTINITIALIZED", "The COM+ registry database has not been initialized."),
        0x80110473: ("COMADMIN_E_REGDB_NOTOPEN", "The COM+ registry database is not open."),
        0x80110474: ("COMADMIN_E_REGDB_SYSTEMERR", "The COM+ registry database detected a system error."),
        0x80110475: ("COMADMIN_E_REGDB_ALREADYRUNNING", "The COM+ registry database is already running."),
        0x80110480: ("COMADMIN_E_MIG_VERSIONNOTSUPPORTED", "This version of the COM+ registry database cannot be migrated."),
        0x80110481: ("COMADMIN_E_MIG_SCHEMANOTFOUND", "The schema version to be migrated could not be found in the COM+ registry database."),
        0x80110482: ("COMADMIN_E_CAT_BITNESSMISMATCH", "There was a type mismatch between binaries."),
        0x80110483: ("COMADMIN_E_CAT_UNACCEPTABLEBITNESS", "A binary of unknown or invalid type was provided."),
        0x80110484: ("COMADMIN_E_CAT_WRONGAPPBITNESS", "There was a type mismatch between a binary and an application."),
        0x80110485: ("COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED", "The application cannot be paused or resumed."),
        0x80110486: ("COMADMIN_E_CAT_SERVERFAULT", "The COM+ catalog server threw an exception during execution."),
        0x80110600: ("COMQC_E_APPLICATION_NOT_QUEUED", "Only COM+ applications marked \"queued\" can be invoked using the \"queue\" moniker."),
        0x80110601: ("COMQC_E_NO_QUEUEABLE_INTERFACES", "At least one interface must be marked \"queued\" to create a queued component instance with the \"queue\" moniker."),
        0x80110602: ("COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE", "Message Queuing is required for the requested operation and is not installed."),
        0x80110603: ("COMQC_E_NO_IPERSISTSTREAM", "Unable to marshal an interface that does not support IPersistStream."),
        0x80110604: ("COMQC_E_BAD_MESSAGE", "The message is improperly formatted or was damaged in transit."),
        0x80110605: ("COMQC_E_UNAUTHENTICATED", "An unauthenticated message was received by an application that accepts only authenticated messages."),
        0x80110606: ("COMQC_E_UNTRUSTED_ENQUEUER", "The message was requeued or moved by a user not in the QC Trusted User \"role\"."),
        0x80110701: ("MSDTC_E_DUPLICATE_RESOURCE", "Cannot create a duplicate resource of type Distributed Transaction Coordinator."),
        0x80110808: ("COMADMIN_E_OBJECT_PARENT_MISSING", "One of the objects being inserted or updated does not belong to a valid parent collection."),
        0x80110809: ("COMADMIN_E_OBJECT_DOES_NOT_EXIST", "One of the specified objects cannot be found."),
        0x8011080A: ("COMADMIN_E_APP_NOT_RUNNING", "The specified application is not currently running."),
        0x8011080B: ("COMADMIN_E_INVALID_PARTITION", "The partitions specified are not valid."),
        0x8011080D: ("COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE", "COM+ applications that run as Windows NT service may not be pooled or recycled."),
        0x8011080E: ("COMADMIN_E_USER_IN_SET", "One or more users are already assigned to a local partition set."),
        0x8011080F: ("COMADMIN_E_CANTRECYCLELIBRARYAPPS", "Library applications may not be recycled."),
        0x80110811: ("COMADMIN_E_CANTRECYCLESERVICEAPPS", "Applications running as Windows NT services may not be recycled."),
        0x80110812: ("COMADMIN_E_PROCESSALREADYRECYCLED", "The process has already been recycled."),
        0x80110813: ("COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED", "A paused process may not be recycled."),
        0x80110814: ("COMADMIN_E_CANTMAKEINPROCSERVICE", "Library applications may not be Windows NT services."),
        0x80110815: ("COMADMIN_E_PROGIDINUSEBYCLSID", "The ProgID provided to the copy operation is invalid. The ProgID is in use by another registered CLSID."),
        0x80110816: ("COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET", "The partition specified as the default is not a member of the partition set."),
        0x80110817: ("COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED", "A recycled process may not be paused."),
        0x80110818: ("COMADMIN_E_PARTITION_ACCESSDENIED", "Access to the specified partition is denied."),
        0x80110819: ("COMADMIN_E_PARTITION_MSI_ONLY", "Only application files (*.msi files) can be installed into partitions."),
        0x8011081A: ("COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT", "Applications containing one or more legacy components may not be exported to 1.0 format."),
        0x8011081B: ("COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS", "Legacy components may not exist in nonbase partitions."),
        0x8011081C: ("COMADMIN_E_COMP_MOVE_SOURCE", "A component cannot be moved (or copied) from the System Application, an application proxy, or a nonchangeable application."),
        0x8011081D: ("COMADMIN_E_COMP_MOVE_DEST", "A component cannot be moved (or copied) to the System Application, an application proxy or a nonchangeable application."),
        0x8011081E: ("COMADMIN_E_COMP_MOVE_PRIVATE", "A private component cannot be moved (or copied) to a library application or to the base partition."),
        0x8011081F: ("COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET", "The Base Application Partition exists in all partition sets and cannot be removed."),
        0x80110820: ("COMADMIN_E_CANNOT_ALIAS_EVENTCLASS", "Alas, Event Class components cannot be aliased."),
        0x80110821: ("COMADMIN_E_PRIVATE_ACCESSDENIED", "Access is denied because the component is private."),
        0x80110822: ("COMADMIN_E_SAFERINVALID", "The specified SAFER level is invalid."),
        0x80110823: ("COMADMIN_E_REGISTRY_ACCESSDENIED", "The specified user cannot write to the system registry."),
        0x80110824: ("COMADMIN_E_PARTITIONS_DISABLED", "COM+ partitions are currently disabled."),
        0x801F0001: ("ERROR_FLT_NO_HANDLER_DEFINED", "A handler was not defined by the filter for this operation."),
        0x801F0002: ("ERROR_FLT_CONTEXT_ALREADY_DEFINED", "A context is already defined for this object."),
        0x801F0003: ("ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST", "Asynchronous requests are not valid for this operation."),
        0x801F0004: ("ERROR_FLT_DISALLOW_FAST_IO", "Disallow the Fast IO path for this operation."),
        0x801F0005: ("ERROR_FLT_INVALID_NAME_REQUEST", "An invalid name request was made. The name requested cannot be retrieved at this time."),
        0x801F0006: ("ERROR_FLT_NOT_SAFE_TO_POST_OPERATION", "Posting this operation to a worker thread for further processing is not safe at this time because it could lead to a system deadlock."),
        0x801F0007: ("ERROR_FLT_NOT_INITIALIZED", "The Filter Manager was not initialized when a filter tried to register. Be sure that the Filter Manager is being loaded as a driver."),
        0x801F0008: ("ERROR_FLT_FILTER_NOT_READY", "The filter is not ready for attachment to volumes because it has not finished initializing (FltStartFiltering has not been called)."),
        0x801F0009: ("ERROR_FLT_POST_OPERATION_CLEANUP", "The filter must clean up any operation-specific context at this time because it is being removed from the system before the operation is completed by the lower drivers."),
        0x801F000A: ("ERROR_FLT_INTERNAL_ERROR", "The Filter Manager had an internal error from which it cannot recover; therefore, the operation has been failed. This is usually the result of a filter returning an invalid value from a preoperation callback."),
        0x801F000B: ("ERROR_FLT_DELETING_OBJECT", "The object specified for this action is in the process of being deleted; therefore, the action requested cannot be completed at this time."),
        0x801F000C: ("ERROR_FLT_MUST_BE_NONPAGED_POOL", "Nonpaged pool must be used for this type of context."),
        0x801F000D: ("ERROR_FLT_DUPLICATE_ENTRY", "A duplicate handler definition has been provided for an operation."),
        0x801F000E: ("ERROR_FLT_CBDQ_DISABLED", "The callback data queue has been disabled."),
        0x801F000F: ("ERROR_FLT_DO_NOT_ATTACH", "Do not attach the filter to the volume at this time."),
        0x801F0010: ("ERROR_FLT_DO_NOT_DETACH", "Do not detach the filter from the volume at this time."),
        0x801F0011: ("ERROR_FLT_INSTANCE_ALTITUDE_COLLISION", "An instance already exists at this altitude on the volume specified."),
        0x801F0012: ("ERROR_FLT_INSTANCE_NAME_COLLISION", "An instance already exists with this name on the volume specified."),
        0x801F0013: ("ERROR_FLT_FILTER_NOT_FOUND", "The system could not find the filter specified."),
        0x801F0014: ("ERROR_FLT_VOLUME_NOT_FOUND", "The system could not find the volume specified."),
        0x801F0015: ("ERROR_FLT_INSTANCE_NOT_FOUND", "The system could not find the instance specified."),
        0x801F0016: ("ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND", "No registered context allocation definition was found for the given request."),
        0x801F0017: ("ERROR_FLT_INVALID_CONTEXT_REGISTRATION", "An invalid parameter was specified during context registration."),
        0x801F0018: ("ERROR_FLT_NAME_CACHE_MISS", "The name requested was not found in the Filter Manager name cache and could not be retrieved from the file system."),
        0x801F0019: ("ERROR_FLT_NO_DEVICE_OBJECT", "The requested device object does not exist for the given volume."),
        0x801F001A: ("ERROR_FLT_VOLUME_ALREADY_MOUNTED", "The specified volume is already mounted."),
        0x801F001B: ("ERROR_FLT_ALREADY_ENLISTED", "The specified Transaction Context is already enlisted in a transaction."),
        0x801F001C: ("ERROR_FLT_CONTEXT_ALREADY_LINKED", "The specified context is already attached to another object."),
        0x801F0020: ("ERROR_FLT_NO_WAITER_FOR_REPLY", "No waiter is present for the filter's reply to this message."),
        0x80260001: ("ERROR_HUNG_DISPLAY_DRIVER_THREAD", "{Display Driver Stopped Responding} The %hs display driver has stopped working normally. Save your work and reboot the system to restore full display functionality. The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft."),
        0x80261001: ("ERROR_MONITOR_NO_DESCRIPTOR", "Monitor descriptor could not be obtained."),
        0x80261002: ("ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT", "Format of the obtained monitor descriptor is not supported by this release."),
        0x80263001: ("DWM_E_COMPOSITIONDISABLED", "{Desktop Composition is Disabled} The operation could not be completed because desktop composition is disabled."),
        0x80263002: ("DWM_E_REMOTING_NOT_SUPPORTED", "{Some Desktop Composition APIs Are Not Supported While Remoting} Some desktop composition APIs are not supported while remoting. The operation is not supported while running in a remote session."),
        0x80263003: ("DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE", "{No DWM Redirection Surface is Available} The Desktop Window Manager (DWM) was unable to provide a redirection surface to complete the DirectX present."),
        0x80263004: ("DWM_E_NOT_QUEUING_PRESENTS", "{DWM Is Not Queuing Presents for the Specified Window} The window specified is not currently using queued presents."),
        0x80280000: ("TPM_E_ERROR_MASK", "This is an error mask to convert Trusted Platform Module (TPM) hardware errors to Win32 errors."),
        0x80280001: ("TPM_E_AUTHFAIL", "Authentication failed."),
        0x80280002: ("TPM_E_BADINDEX", "The index to a Platform Configuration Register (PCR), DIR, or other register is incorrect."),
        0x80280003: ("TPM_E_BAD_PARAMETER", "One or more parameters are bad."),
        0x80280004: ("TPM_E_AUDITFAILURE", "An operation completed successfully but the auditing of that operation failed."),
        0x80280005: ("TPM_E_CLEAR_DISABLED", "The clear disable flag is set and all clear operations now require physical access."),
        0x80280006: ("TPM_E_DEACTIVATED", "The TPM is deactivated."),
        0x80280007: ("TPM_E_DISABLED", "The TPM is disabled."),
        0x80280008: ("TPM_E_DISABLED_CMD", "The target command has been disabled."),
        0x80280009: ("TPM_E_FAIL", "The operation failed."),
        0x8028000A: ("TPM_E_BAD_ORDINAL", "The ordinal was unknown or inconsistent."),
        0x8028000B: ("TPM_E_INSTALL_DISABLED", "The ability to install an owner is disabled."),
        0x8028000C: ("TPM_E_INVALID_KEYHANDLE", "The key handle cannot be interpreted."),
        0x8028000D: ("TPM_E_KEYNOTFOUND", "The key handle points to an invalid key."),
        0x8028000E: ("TPM_E_INAPPROPRIATE_ENC", "Unacceptable encryption scheme."),
        0x8028000F: ("TPM_E_MIGRATEFAIL", "Migration authorization failed."),
        0x80280010: ("TPM_E_INVALID_PCR_INFO", "PCR information could not be interpreted."),
        0x80280011: ("TPM_E_NOSPACE", "No room to load key."),
        0x80280012: ("TPM_E_NOSRK", "There is no storage root key (SRK) set."),
        0x80280013: ("TPM_E_NOTSEALED_BLOB", "An encrypted blob is invalid or was not created by this TPM."),
        0x80280014: ("TPM_E_OWNER_SET", "There is already an owner."),
        0x80280015: ("TPM_E_RESOURCES", "The TPM has insufficient internal resources to perform the requested action."),
        0x80280016: ("TPM_E_SHORTRANDOM", "A random string was too short."),
        0x80280017: ("TPM_E_SIZE", "The TPM does not have the space to perform the operation."),
        0x80280018: ("TPM_E_WRONGPCRVAL", "The named PCR value does not match the current PCR value."),
        0x80280019: ("TPM_E_BAD_PARAM_SIZE", "The paramSize argument to the command has the incorrect value."),
        0x8028001A: ("TPM_E_SHA_THREAD", "There is no existing SHA-1 thread."),
        0x8028001B: ("TPM_E_SHA_ERROR", "The calculation is unable to proceed because the existing SHA-1 thread has already encountered an error."),
        0x8028001C: ("TPM_E_FAILEDSELFTEST", "Self-test has failed and the TPM has shut down."),
        0x8028001D: ("TPM_E_AUTH2FAIL", "The authorization for the second key in a two-key function failed authorization."),
        0x8028001E: ("TPM_E_BADTAG", "The tag value sent to for a command is invalid."),
        0x8028001F: ("TPM_E_IOERROR", "An I/O error occurred transmitting information to the TPM."),
        0x80280020: ("TPM_E_ENCRYPT_ERROR", "The encryption process had a problem."),
        0x80280021: ("TPM_E_DECRYPT_ERROR", "The decryption process did not complete."),
        0x80280022: ("TPM_E_INVALID_AUTHHANDLE", "An invalid handle was used."),
        0x80280023: ("TPM_E_NO_ENDORSEMENT", "The TPM does not have an endorsement key (EK) installed."),
        0x80280024: ("TPM_E_INVALID_KEYUSAGE", "The usage of a key is not allowed."),
        0x80280025: ("TPM_E_WRONG_ENTITYTYPE", "The submitted entity type is not allowed."),
        0x80280026: ("TPM_E_INVALID_POSTINIT", "The command was received in the wrong sequence relative to TPM_Init and a subsequent TPM_Startup."),
        0x80280027: ("TPM_E_INAPPROPRIATE_SIG", "Signed data cannot include additional DER information."),
        0x80280028: ("TPM_E_BAD_KEY_PROPERTY", "The key properties in TPM_KEY_PARMs are not supported by this TPM."),
        0x80280029: ("TPM_E_BAD_MIGRATION", "The migration properties of this key are incorrect."),
        0x8028002A: ("TPM_E_BAD_SCHEME", "The signature or encryption scheme for this key is incorrect or not permitted in this situation."),
        0x8028002B: ("TPM_E_BAD_DATASIZE", "The size of the data (or blob) parameter is bad or inconsistent with the referenced key."),
        0x8028002C: ("TPM_E_BAD_MODE", "A mode parameter is bad, such as capArea or subCapArea for TPM_GetCapability, physicalPresence parameter for TPM_PhysicalPresence, or migrationType for TPM_CreateMigrationBlob."),
        0x8028002D: ("TPM_E_BAD_PRESENCE", "Either the physicalPresence or physicalPresenceLock bits have the wrong value."),
        0x8028002E: ("TPM_E_BAD_VERSION", "The TPM cannot perform this version of the capability."),
        0x8028002F: ("TPM_E_NO_WRAP_TRANSPORT", "The TPM does not allow for wrapped transport sessions."),
        0x80280030: ("TPM_E_AUDITFAIL_UNSUCCESSFUL", "TPM audit construction failed and the underlying command was returning a failure code also."),
        0x80280031: ("TPM_E_AUDITFAIL_SUCCESSFUL", "TPM audit construction failed and the underlying command was returning success."),
        0x80280032: ("TPM_E_NOTRESETABLE", "Attempt to reset a PCR that does not have the resettable attribute."),
        0x80280033: ("TPM_E_NOTLOCAL", "Attempt to reset a PCR register that requires locality and the locality modifier not part of command transport."),
        0x80280034: ("TPM_E_BAD_TYPE", "Make identity blob not properly typed."),
        0x80280035: ("TPM_E_INVALID_RESOURCE", "When saving context identified resource type does not match actual resource."),
        0x80280036: ("TPM_E_NOTFIPS", "The TPM is attempting to execute a command only available when in Federal Information Processing Standards (FIPS) mode."),
        0x80280037: ("TPM_E_INVALID_FAMILY", "The command is attempting to use an invalid family ID."),
        0x80280038: ("TPM_E_NO_NV_PERMISSION", "The permission to manipulate the NV storage is not available."),
        0x80280039: ("TPM_E_REQUIRES_SIGN", "The operation requires a signed command."),
        0x8028003A: ("TPM_E_KEY_NOTSUPPORTED", "Wrong operation to load an NV key."),
        0x8028003B: ("TPM_E_AUTH_CONFLICT", "NV_LoadKey blob requires both owner and blob authorization."),
        0x8028003C: ("TPM_E_AREA_LOCKED", "The NV area is locked and not writable."),
        0x8028003D: ("TPM_E_BAD_LOCALITY", "The locality is incorrect for the attempted operation."),
        0x8028003E: ("TPM_E_READ_ONLY", "The NV area is read-only and cannot be written to."),
        0x8028003F: ("TPM_E_PER_NOWRITE", "There is no protection on the write to the NV area."),
        0x80280040: ("TPM_E_FAMILYCOUNT", "The family count value does not match."),
        0x80280041: ("TPM_E_WRITE_LOCKED", "The NV area has already been written to."),
        0x80280042: ("TPM_E_BAD_ATTRIBUTES", "The NV area attributes conflict."),
        0x80280043: ("TPM_E_INVALID_STRUCTURE", "The structure tag and version are invalid or inconsistent."),
        0x80280044: ("TPM_E_KEY_OWNER_CONTROL", "The key is under control of the TPM owner and can only be evicted by the TPM owner."),
        0x80280045: ("TPM_E_BAD_COUNTER", "The counter handle is incorrect."),
        0x80280046: ("TPM_E_NOT_FULLWRITE", "The write is not a complete write of the area."),
        0x80280047: ("TPM_E_CONTEXT_GAP", "The gap between saved context counts is too large."),
        0x80280048: ("TPM_E_MAXNVWRITES", "The maximum number of NV writes without an owner has been exceeded."),
        0x80280049: ("TPM_E_NOOPERATOR", "No operator AuthData value is set."),
        0x8028004A: ("TPM_E_RESOURCEMISSING", "The resource pointed to by context is not loaded."),
        0x8028004B: ("TPM_E_DELEGATE_LOCK", "The delegate administration is locked."),
        0x8028004C: ("TPM_E_DELEGATE_FAMILY", "Attempt to manage a family other then the delegated family."),
        0x8028004D: ("TPM_E_DELEGATE_ADMIN", "Delegation table management not enabled."),
        0x8028004E: ("TPM_E_TRANSPORT_NOTEXCLUSIVE", "There was a command executed outside an exclusive transport session."),
        0x8028004F: ("TPM_E_OWNER_CONTROL", "Attempt to context save an owner evict controlled key."),
        0x80280050: ("TPM_E_DAA_RESOURCES", "The DAA command has no resources available to execute the command."),
        0x80280051: ("TPM_E_DAA_INPUT_DATA0", "The consistency check on DAA parameter inputData0 has failed."),
        0x80280052: ("TPM_E_DAA_INPUT_DATA1", "The consistency check on DAA parameter inputData1 has failed."),
        0x80280053: ("TPM_E_DAA_ISSUER_SETTINGS", "The consistency check on DAA_issuerSettings has failed."),
        0x80280054: ("TPM_E_DAA_TPM_SETTINGS", "The consistency check on DAA_tpmSpecific has failed."),
        0x80280055: ("TPM_E_DAA_STAGE", "The atomic process indicated by the submitted DAA command is not the expected process."),
        0x80280056: ("TPM_E_DAA_ISSUER_VALIDITY", "The issuer's validity check has detected an inconsistency."),
        0x80280057: ("TPM_E_DAA_WRONG_W", "The consistency check on w has failed."),
        0x80280058: ("TPM_E_BAD_HANDLE", "The handle is incorrect."),
        0x80280059: ("TPM_E_BAD_DELEGATE", "Delegation is not correct."),
        0x8028005A: ("TPM_E_BADCONTEXT", "The context blob is invalid."),
        0x8028005B: ("TPM_E_TOOMANYCONTEXTS", "Too many contexts held by the TPM."),
        0x8028005C: ("TPM_E_MA_TICKET_SIGNATURE", "Migration authority signature validation failure."),
        0x8028005D: ("TPM_E_MA_DESTINATION", "Migration destination not authenticated."),
        0x8028005E: ("TPM_E_MA_SOURCE", "Migration source incorrect."),
        0x8028005F: ("TPM_E_MA_AUTHORITY", "Incorrect migration authority."),
        0x80280061: ("TPM_E_PERMANENTEK", "Attempt to revoke the EK and the EK is not revocable."),
        0x80280062: ("TPM_E_BAD_SIGNATURE", "Bad signature of CMK ticket."),
        0x80280063: ("TPM_E_NOCONTEXTSPACE", "There is no room in the context list for additional contexts."),
        0x80280400: ("TPM_E_COMMAND_BLOCKED", "The command was blocked."),
        0x80280401: ("TPM_E_INVALID_HANDLE", "The specified handle was not found."),
        0x80280402: ("TPM_E_DUPLICATE_VHANDLE", "The TPM returned a duplicate handle and the command needs to be resubmitted."),
        0x80280403: ("TPM_E_EMBEDDED_COMMAND_BLOCKED", "The command within the transport was blocked."),
        0x80280404: ("TPM_E_EMBEDDED_COMMAND_UNSUPPORTED", "The command within the transport is not supported."),
        0x80280800: ("TPM_E_RETRY", "The TPM is too busy to respond to the command immediately, but the command could be resubmitted at a later time."),
        0x80280801: ("TPM_E_NEEDS_SELFTEST", "SelfTestFull has not been run."),
        0x80280802: ("TPM_E_DOING_SELFTEST", "The TPM is currently executing a full self-test."),
        0x80280803: ("TPM_E_DEFEND_LOCK_RUNNING", "The TPM is defending against dictionary attacks and is in a time-out period."),
        0x80284001: ("TBS_E_INTERNAL_ERROR", "An internal software error has been detected."),
        0x80284002: ("TBS_E_BAD_PARAMETER", "One or more input parameters are bad."),
        0x80284003: ("TBS_E_INVALID_OUTPUT_POINTER", "A specified output pointer is bad."),
        0x80284004: ("TBS_E_INVALID_CONTEXT", "The specified context handle does not refer to a valid context."),
        0x80284005: ("TBS_E_INSUFFICIENT_BUFFER", "A specified output buffer is too small."),
        0x80284006: ("TBS_E_IOERROR", "An error occurred while communicating with the TPM."),
        0x80284007: ("TBS_E_INVALID_CONTEXT_PARAM", "One or more context parameters are invalid."),
        0x80284008: ("TBS_E_SERVICE_NOT_RUNNING", "The TPM Base Services (TBS) is not running and could not be started."),
        0x80284009: ("TBS_E_TOO_MANY_TBS_CONTEXTS", "A new context could not be created because there are too many open contexts."),
        0x8028400A: ("TBS_E_TOO_MANY_RESOURCES", "A new virtual resource could not be created because there are too many open virtual resources."),
        0x8028400B: ("TBS_E_SERVICE_START_PENDING", "The TBS service has been started but is not yet running."),
        0x8028400C: ("TBS_E_PPI_NOT_SUPPORTED", "The physical presence interface is not supported."),
        0x8028400D: ("TBS_E_COMMAND_CANCELED", "The command was canceled."),
        0x8028400E: ("TBS_E_BUFFER_TOO_LARGE", "The input or output buffer is too large."),
        0x80290100: ("TPMAPI_E_INVALID_STATE", "The command buffer is not in the correct state."),
        0x80290101: ("TPMAPI_E_NOT_ENOUGH_DATA", "The command buffer does not contain enough data to satisfy the request."),
        0x80290102: ("TPMAPI_E_TOO_MUCH_DATA", "The command buffer cannot contain any more data."),
        0x80290103: ("TPMAPI_E_INVALID_OUTPUT_POINTER", "One or more output parameters was null or invalid."),
        0x80290104: ("TPMAPI_E_INVALID_PARAMETER", "One or more input parameters are invalid."),
        0x80290105: ("TPMAPI_E_OUT_OF_MEMORY", "Not enough memory was available to satisfy the request."),
        0x80290106: ("TPMAPI_E_BUFFER_TOO_SMALL", "The specified buffer was too small."),
        0x80290107: ("TPMAPI_E_INTERNAL_ERROR", "An internal error was detected."),
        0x80290108: ("TPMAPI_E_ACCESS_DENIED", "The caller does not have the appropriate rights to perform the requested operation."),
        0x80290109: ("TPMAPI_E_AUTHORIZATION_FAILED", "The specified authorization information was invalid."),
        0x8029010A: ("TPMAPI_E_INVALID_CONTEXT_HANDLE", "The specified context handle was not valid."),
        0x8029010B: ("TPMAPI_E_TBS_COMMUNICATION_ERROR", "An error occurred while communicating with the TBS."),
        0x8029010C: ("TPMAPI_E_TPM_COMMAND_ERROR", "The TPM returned an unexpected result."),
        0x8029010D: ("TPMAPI_E_MESSAGE_TOO_LARGE", "The message was too large for the encoding scheme."),
        0x8029010E: ("TPMAPI_E_INVALID_ENCODING", "The encoding in the binary large object (BLOB) was not recognized."),
        0x8029010F: ("TPMAPI_E_INVALID_KEY_SIZE", "The key size is not valid."),
        0x80290110: ("TPMAPI_E_ENCRYPTION_FAILED", "The encryption operation failed."),
        0x80290111: ("TPMAPI_E_INVALID_KEY_PARAMS", "The key parameters structure was not valid."),
        0x80290112: ("TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB", "The requested supplied data does not appear to be a valid migration authorization BLOB."),
        0x80290113: ("TPMAPI_E_INVALID_PCR_INDEX", "The specified PCR index was invalid."),
        0x80290114: ("TPMAPI_E_INVALID_DELEGATE_BLOB", "The data given does not appear to be a valid delegate BLOB."),
        0x80290115: ("TPMAPI_E_INVALID_CONTEXT_PARAMS", "One or more of the specified context parameters was not valid."),
        0x80290116: ("TPMAPI_E_INVALID_KEY_BLOB", "The data given does not appear to be a valid key BLOB."),
        0x80290117: ("TPMAPI_E_INVALID_PCR_DATA", "The specified PCR data was invalid."),
        0x80290118: ("TPMAPI_E_INVALID_OWNER_AUTH", "The format of the owner authorization data was invalid."),
        0x80290200: ("TBSIMP_E_BUFFER_TOO_SMALL", "The specified buffer was too small."),
        0x80290201: ("TBSIMP_E_CLEANUP_FAILED", "The context could not be cleaned up."),
        0x80290202: ("TBSIMP_E_INVALID_CONTEXT_HANDLE", "The specified context handle is invalid."),
        0x80290203: ("TBSIMP_E_INVALID_CONTEXT_PARAM", "An invalid context parameter was specified."),
        0x80290204: ("TBSIMP_E_TPM_ERROR", "An error occurred while communicating with the TPM."),
        0x80290205: ("TBSIMP_E_HASH_BAD_KEY", "No entry with the specified key was found."),
        0x80290206: ("TBSIMP_E_DUPLICATE_VHANDLE", "The specified virtual handle matches a virtual handle already in use."),
        0x80290207: ("TBSIMP_E_INVALID_OUTPUT_POINTER", "The pointer to the returned handle location was null or invalid."),
        0x80290208: ("TBSIMP_E_INVALID_PARAMETER", "One or more parameters are invalid."),
        0x80290209: ("TBSIMP_E_RPC_INIT_FAILED", "The RPC subsystem could not be initialized."),
        0x8029020A: ("TBSIMP_E_SCHEDULER_NOT_RUNNING", "The TBS scheduler is not running."),
        0x8029020B: ("TBSIMP_E_COMMAND_CANCELED", "The command was canceled."),
        0x8029020C: ("TBSIMP_E_OUT_OF_MEMORY", "There was not enough memory to fulfill the request."),
        0x8029020D: ("TBSIMP_E_LIST_NO_MORE_ITEMS", "The specified list is empty, or the iteration has reached the end of the list."),
        0x8029020E: ("TBSIMP_E_LIST_NOT_FOUND", "The specified item was not found in the list."),
        0x8029020F: ("TBSIMP_E_NOT_ENOUGH_SPACE", "The TPM does not have enough space to load the requested resource."),
        0x80290210: ("TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS", "There are too many TPM contexts in use."),
        0x80290211: ("TBSIMP_E_COMMAND_FAILED", "The TPM command failed."),
        0x80290212: ("TBSIMP_E_UNKNOWN_ORDINAL", "The TBS does not recognize the specified ordinal."),
        0x80290213: ("TBSIMP_E_RESOURCE_EXPIRED", "The requested resource is no longer available."),
        0x80290214: ("TBSIMP_E_INVALID_RESOURCE", "The resource type did not match."),
        0x80290215: ("TBSIMP_E_NOTHING_TO_UNLOAD", "No resources can be unloaded."),
        0x80290216: ("TBSIMP_E_HASH_TABLE_FULL", "No new entries can be added to the hash table."),
        0x80290217: ("TBSIMP_E_TOO_MANY_TBS_CONTEXTS", "A new TBS context could not be created because there are too many open contexts."),
        0x80290218: ("TBSIMP_E_TOO_MANY_RESOURCES", "A new virtual resource could not be created because there are too many open virtual resources."),
        0x80290219: ("TBSIMP_E_PPI_NOT_SUPPORTED", "The physical presence interface is not supported."),
        0x8029021A: ("TBSIMP_E_TPM_INCOMPATIBLE", "TBS is not compatible with the version of TPM found on the system."),
        0x80290300: ("TPM_E_PPI_ACPI_FAILURE", "A general error was detected when attempting to acquire the BIOS response to a physical presence command."),
        0x80290301: ("TPM_E_PPI_USER_ABORT", "The user failed to confirm the TPM operation request."),
        0x80290302: ("TPM_E_PPI_BIOS_FAILURE", "The BIOS failure prevented the successful execution of the requested TPM operation (for example, invalid TPM operation request, BIOS communication error with the TPM)."),
        0x80290303: ("TPM_E_PPI_NOT_SUPPORTED", "The BIOS does not support the physical presence interface."),
        0x80300002: ("PLA_E_DCS_NOT_FOUND", "A Data Collector Set was not found."),
        0x80300045: ("PLA_E_TOO_MANY_FOLDERS", "Unable to start Data Collector Set because there are too many folders."),
        0x80300070: ("PLA_E_NO_MIN_DISK", "Not enough free disk space to start Data Collector Set."),
        0x803000AA: ("PLA_E_DCS_IN_USE", "Data Collector Set is in use."),
        0x803000B7: ("PLA_E_DCS_ALREADY_EXISTS", "Data Collector Set already exists."),
        0x80300101: ("PLA_E_PROPERTY_CONFLICT", "Property value conflict."),
        0x80300102: ("PLA_E_DCS_SINGLETON_REQUIRED", "The current configuration for this Data Collector Set requires that it contain exactly one Data Collector."),
        0x80300103: ("PLA_E_CREDENTIALS_REQUIRED", "A user account is required to commit the current Data Collector Set properties."),
        0x80300104: ("PLA_E_DCS_NOT_RUNNING", "Data Collector Set is not running."),
        0x80300105: ("PLA_E_CONFLICT_INCL_EXCL_API", "A conflict was detected in the list of include and exclude APIs. Do not specify the same API in both the include list and the exclude list."),
        0x80300106: ("PLA_E_NETWORK_EXE_NOT_VALID", "The executable path specified refers to a network share or UNC path."),
        0x80300107: ("PLA_E_EXE_ALREADY_CONFIGURED", "The executable path specified is already configured for API tracing."),
        0x80300108: ("PLA_E_EXE_PATH_NOT_VALID", "The executable path specified does not exist. Verify that the specified path is correct."),
        0x80300109: ("PLA_E_DC_ALREADY_EXISTS", "Data Collector already exists."),
        0x8030010A: ("PLA_E_DCS_START_WAIT_TIMEOUT", "The wait for the Data Collector Set start notification has timed out."),
        0x8030010B: ("PLA_E_DC_START_WAIT_TIMEOUT", "The wait for the Data Collector to start has timed out."),
        0x8030010C: ("PLA_E_REPORT_WAIT_TIMEOUT", "The wait for the report generation tool to finish has timed out."),
        0x8030010D: ("PLA_E_NO_DUPLICATES", "Duplicate items are not allowed."),
        0x8030010E: ("PLA_E_EXE_FULL_PATH_REQUIRED", "When specifying the executable to trace, you must specify a full path to the executable and not just a file name."),
        0x8030010F: ("PLA_E_INVALID_SESSION_NAME", "The session name provided is invalid."),
        0x80300110: ("PLA_E_PLA_CHANNEL_NOT_ENABLED", "The Event Log channel Microsoft-Windows-Diagnosis-PLA/Operational must be enabled to perform this operation."),
        0x80300111: ("PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED", "The Event Log channel Microsoft-Windows-TaskScheduler must be enabled to perform this operation."),
        0x80310000: ("FVE_E_LOCKED_VOLUME", "The volume must be unlocked before it can be used."),
        0x80310001: ("FVE_E_NOT_ENCRYPTED", "The volume is fully decrypted and no key is available."),
        0x80310002: ("FVE_E_NO_TPM_BIOS", "The firmware does not support using a TPM during boot."),
        0x80310003: ("FVE_E_NO_MBR_METRIC", "The firmware does not use a TPM to perform initial program load (IPL) measurement."),
        0x80310004: ("FVE_E_NO_BOOTSECTOR_METRIC", "The master boot record (MBR) is not TPM-aware."),
        0x80310005: ("FVE_E_NO_BOOTMGR_METRIC", "The BOOTMGR is not being measured by the TPM."),
        0x80310006: ("FVE_E_WRONG_BOOTMGR", "The BOOTMGR component does not perform expected TPM measurements."),
        0x80310007: ("FVE_E_SECURE_KEY_REQUIRED", "No secure key protection mechanism has been defined."),
        0x80310008: ("FVE_E_NOT_ACTIVATED", "This volume has not been provisioned for encryption."),
        0x80310009: ("FVE_E_ACTION_NOT_ALLOWED", "Requested action was denied by the full-volume encryption (FVE) control engine."),
        0x8031000A: ("FVE_E_AD_SCHEMA_NOT_INSTALLED", "The Active Directory forest does not contain the required attributes and classes to host FVE or TPM information."),
        0x8031000B: ("FVE_E_AD_INVALID_DATATYPE", "The type of data obtained from Active Directory was not expected."),
        0x8031000C: ("FVE_E_AD_INVALID_DATASIZE", "The size of the data obtained from Active Directory was not expected."),
        0x8031000D: ("FVE_E_AD_NO_VALUES", "The attribute read from Active Directory has no (zero) values."),
        0x8031000E: ("FVE_E_AD_ATTR_NOT_SET", "The attribute was not set."),
        0x8031000F: ("FVE_E_AD_GUID_NOT_FOUND", "The specified GUID could not be found."),
        0x80310010: ("FVE_E_BAD_INFORMATION", "The control block for the encrypted volume is not valid."),
        0x80310011: ("FVE_E_TOO_SMALL", "Not enough free space remaining on volume to allow encryption."),
        0x80310012: ("FVE_E_SYSTEM_VOLUME", "The volume cannot be encrypted because it is required to boot the operating system."),
        0x80310013: ("FVE_E_FAILED_WRONG_FS", "The volume cannot be encrypted because the file system is not supported."),
        0x80310014: ("FVE_E_FAILED_BAD_FS", "The file system is inconsistent. Run CHKDSK."),
        0x80310015: ("FVE_E_NOT_SUPPORTED", "This volume cannot be encrypted."),
        0x80310016: ("FVE_E_BAD_DATA", "Data supplied is malformed."),
        0x80310017: ("FVE_E_VOLUME_NOT_BOUND", "Volume is not bound to the system."),
        0x80310018: ("FVE_E_TPM_NOT_OWNED", "TPM must be owned before a volume can be bound to it."),
        0x80310019: ("FVE_E_NOT_DATA_VOLUME", "The volume specified is not a data volume."),
        0x8031001A: ("FVE_E_AD_INSUFFICIENT_BUFFER", "The buffer supplied to a function was insufficient to contain the returned data."),
        0x8031001B: ("FVE_E_CONV_READ", "A read operation failed while converting the volume."),
        0x8031001C: ("FVE_E_CONV_WRITE", "A write operation failed while converting the volume."),
        0x8031001D: ("FVE_E_KEY_REQUIRED", "One or more key protection mechanisms are required for this volume."),
        0x8031001E: ("FVE_E_CLUSTERING_NOT_SUPPORTED", "Cluster configurations are not supported."),
        0x8031001F: ("FVE_E_VOLUME_BOUND_ALREADY", "The volume is already bound to the system."),
        0x80310020: ("FVE_E_OS_NOT_PROTECTED", "The boot OS volume is not being protected via FVE."),
        0x80310021: ("FVE_E_PROTECTION_DISABLED", "All protection mechanisms are effectively disabled (clear key exists)."),
        0x80310022: ("FVE_E_RECOVERY_KEY_REQUIRED", "A recovery key protection mechanism is required."),
        0x80310023: ("FVE_E_FOREIGN_VOLUME", "This volume cannot be bound to a TPM."),
        0x80310024: ("FVE_E_OVERLAPPED_UPDATE", "The control block for the encrypted volume was updated by another thread. Try again."),
        0x80310025: ("FVE_E_TPM_SRK_AUTH_NOT_ZERO", "The SRK authentication of the TPM is not zero and, therefore, is not compatible."),
        0x80310026: ("FVE_E_FAILED_SECTOR_SIZE", "The volume encryption algorithm cannot be used on this sector size."),
        0x80310027: ("FVE_E_FAILED_AUTHENTICATION", "BitLocker recovery authentication failed."),
        0x80310028: ("FVE_E_NOT_OS_VOLUME", "The volume specified is not the boot OS volume."),
        0x80310029: ("FVE_E_AUTOUNLOCK_ENABLED", "Auto-unlock information for data volumes is present on the boot OS volume."),
        0x8031002A: ("FVE_E_WRONG_BOOTSECTOR", "The system partition boot sector does not perform TPM measurements."),
        0x8031002B: ("FVE_E_WRONG_SYSTEM_FS", "The system partition file system must be NTFS."),
        0x8031002C: ("FVE_E_POLICY_PASSWORD_REQUIRED", "Group policy requires a recovery password before encryption may begin."),
        0x8031002D: ("FVE_E_CANNOT_SET_FVEK_ENCRYPTED", "The volume encryption algorithm and key cannot be set on an encrypted volume."),
        0x8031002E: ("FVE_E_CANNOT_ENCRYPT_NO_KEY", "A key must be specified before encryption may begin."),
        0x80310030: ("FVE_E_BOOTABLE_CDDVD", "A bootable CD/DVD is in the system. Remove the CD/DVD and reboot the system."),
        0x80310031: ("FVE_E_PROTECTOR_EXISTS", "An instance of this key protector already exists on the volume."),
        0x80310032: ("FVE_E_RELATIVE_PATH", "The file cannot be saved to a relative path."),
        0x80320001: ("FWP_E_CALLOUT_NOT_FOUND", "The callout does not exist."),
        0x80320002: ("FWP_E_CONDITION_NOT_FOUND", "The filter condition does not exist."),
        0x80320003: ("FWP_E_FILTER_NOT_FOUND", "The filter does not exist."),
        0x80320004: ("FWP_E_LAYER_NOT_FOUND", "The layer does not exist."),
        0x80320005: ("FWP_E_PROVIDER_NOT_FOUND", "The provider does not exist."),
        0x80320006: ("FWP_E_PROVIDER_CONTEXT_NOT_FOUND", "The provider context does not exist."),
        0x80320007: ("FWP_E_SUBLAYER_NOT_FOUND", "The sublayer does not exist."),
        0x80320008: ("FWP_E_NOT_FOUND", "The object does not exist."),
        0x80320009: ("FWP_E_ALREADY_EXISTS", "An object with that GUID or LUID already exists."),
        0x8032000A: ("FWP_E_IN_USE", "The object is referenced by other objects and, therefore, cannot be deleted."),
        0x8032000B: ("FWP_E_DYNAMIC_SESSION_IN_PROGRESS", "The call is not allowed from within a dynamic session."),
        0x8032000C: ("FWP_E_WRONG_SESSION", "The call was made from the wrong session and, therefore, cannot be completed."),
        0x8032000D: ("FWP_E_NO_TXN_IN_PROGRESS", "The call must be made from within an explicit transaction."),
        0x8032000E: ("FWP_E_TXN_IN_PROGRESS", "The call is not allowed from within an explicit transaction."),
        0x8032000F: ("FWP_E_TXN_ABORTED", "The explicit transaction has been forcibly canceled."),
        0x80320010: ("FWP_E_SESSION_ABORTED", "The session has been canceled."),
        0x80320011: ("FWP_E_INCOMPATIBLE_TXN", "The call is not allowed from within a read-only transaction."),
        0x80320012: ("FWP_E_TIMEOUT", "The call timed out while waiting to acquire the transaction lock."),
        0x80320013: ("FWP_E_NET_EVENTS_DISABLED", "Collection of network diagnostic events is disabled."),
        0x80320014: ("FWP_E_INCOMPATIBLE_LAYER", "The operation is not supported by the specified layer."),
        0x80320015: ("FWP_E_KM_CLIENTS_ONLY", "The call is allowed for kernel-mode callers only."),
        0x80320016: ("FWP_E_LIFETIME_MISMATCH", "The call tried to associate two objects with incompatible lifetimes."),
        0x80320017: ("FWP_E_BUILTIN_OBJECT", "The object is built in and, therefore, cannot be deleted."),
        0x80320018: ("FWP_E_TOO_MANY_BOOTTIME_FILTERS", "The maximum number of boot-time filters has been reached."),
        0x80320019: ("FWP_E_NOTIFICATION_DROPPED", "A notification could not be delivered because a message queue is at its maximum capacity."),
        0x8032001A: ("FWP_E_TRAFFIC_MISMATCH", "The traffic parameters do not match those for the security association context."),
        0x8032001B: ("FWP_E_INCOMPATIBLE_SA_STATE", "The call is not allowed for the current security association state."),
        0x8032001C: ("FWP_E_NULL_POINTER", "A required pointer is null."),
        0x8032001D: ("FWP_E_INVALID_ENUMERATOR", "An enumerator is not valid."),
        0x8032001E: ("FWP_E_INVALID_FLAGS", "The flags field contains an invalid value."),
        0x8032001F: ("FWP_E_INVALID_NET_MASK", "A network mask is not valid."),
        0x80320020: ("FWP_E_INVALID_RANGE", "An FWP_RANGE is not valid."),
        0x80320021: ("FWP_E_INVALID_INTERVAL", "The time interval is not valid."),
        0x80320022: ("FWP_E_ZERO_LENGTH_ARRAY", "An array that must contain at least one element that is zero-length."),
        0x80320023: ("FWP_E_NULL_DISPLAY_NAME", "The displayData.name field cannot be null."),
        0x80320024: ("FWP_E_INVALID_ACTION_TYPE", "The action type is not one of the allowed action types for a filter."),
        0x80320025: ("FWP_E_INVALID_WEIGHT", "The filter weight is not valid."),
        0x80320026: ("FWP_E_MATCH_TYPE_MISMATCH", "A filter condition contains a match type that is not compatible with the operands."),
        0x80320027: ("FWP_E_TYPE_MISMATCH", "An FWP_VALUE or FWPM_CONDITION_VALUE is of the wrong type."),
        0x80320028: ("FWP_E_OUT_OF_BOUNDS", "An integer value is outside the allowed range."),
        0x80320029: ("FWP_E_RESERVED", "A reserved field is nonzero."),
        0x8032002A: ("FWP_E_DUPLICATE_CONDITION", "A filter cannot contain multiple conditions operating on a single field."),
        0x8032002B: ("FWP_E_DUPLICATE_KEYMOD", "A policy cannot contain the same keying module more than once."),
        0x8032002C: ("FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER", "The action type is not compatible with the layer."),
        0x8032002D: ("FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER", "The action type is not compatible with the sublayer."),
        0x8032002E: ("FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER", "The raw context or the provider context is not compatible with the layer."),
        0x8032002F: ("FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT", "The raw context or the provider context is not compatible with the callout."),
        0x80320030: ("FWP_E_INCOMPATIBLE_AUTH_METHOD", "The authentication method is not compatible with the policy type."),
        0x80320031: ("FWP_E_INCOMPATIBLE_DH_GROUP", "The Diffie-Hellman group is not compatible with the policy type."),
        0x80320032: ("FWP_E_EM_NOT_SUPPORTED", "An Internet Key Exchange (IKE) policy cannot contain an Extended Mode policy."),
        0x80320033: ("FWP_E_NEVER_MATCH", "The enumeration template or subscription will never match any objects."),
        0x80320034: ("FWP_E_PROVIDER_CONTEXT_MISMATCH", "The provider context is of the wrong type."),
        0x80320035: ("FWP_E_INVALID_PARAMETER", "The parameter is incorrect."),
        0x80320036: ("FWP_E_TOO_MANY_SUBLAYERS", "The maximum number of sublayers has been reached."),
        0x80320037: ("FWP_E_CALLOUT_NOTIFICATION_FAILED", "The notification function for a callout returned an error."),
        0x80320038: ("FWP_E_INCOMPATIBLE_AUTH_CONFIG", "The IPsec authentication configuration is not compatible with the authentication type."),
        0x80320039: ("FWP_E_INCOMPATIBLE_CIPHER_CONFIG", "The IPsec cipher configuration is not compatible with the cipher type."),
        0x80340002: ("ERROR_NDIS_INTERFACE_CLOSING", "The binding to the network interface is being closed."),
        0x80340004: ("ERROR_NDIS_BAD_VERSION", "An invalid version was specified."),
        0x80340005: ("ERROR_NDIS_BAD_CHARACTERISTICS", "An invalid characteristics table was used."),
        0x80340006: ("ERROR_NDIS_ADAPTER_NOT_FOUND", "Failed to find the network interface, or the network interface is not ready."),
        0x80340007: ("ERROR_NDIS_OPEN_FAILED", "Failed to open the network interface."),
        0x80340008: ("ERROR_NDIS_DEVICE_FAILED", "The network interface has encountered an internal unrecoverable failure."),
        0x80340009: ("ERROR_NDIS_MULTICAST_FULL", "The multicast list on the network interface is full."),
        0x8034000A: ("ERROR_NDIS_MULTICAST_EXISTS", "An attempt was made to add a duplicate multicast address to the list."),
        0x8034000B: ("ERROR_NDIS_MULTICAST_NOT_FOUND", "At attempt was made to remove a multicast address that was never added."),
        0x8034000C: ("ERROR_NDIS_REQUEST_ABORTED", "The network interface aborted the request."),
        0x8034000D: ("ERROR_NDIS_RESET_IN_PROGRESS", "The network interface cannot process the request because it is being reset."),
        0x8034000F: ("ERROR_NDIS_INVALID_PACKET", "An attempt was made to send an invalid packet on a network interface."),
        0x80340010: ("ERROR_NDIS_INVALID_DEVICE_REQUEST", "The specified request is not a valid operation for the target device."),
        0x80340011: ("ERROR_NDIS_ADAPTER_NOT_READY", "The network interface is not ready to complete this operation."),
        0x80340014: ("ERROR_NDIS_INVALID_LENGTH", "The length of the buffer submitted for this operation is not valid."),
        0x80340015: ("ERROR_NDIS_INVALID_DATA", "The data used for this operation is not valid."),
        0x80340016: ("ERROR_NDIS_BUFFER_TOO_SHORT", "The length of the buffer submitted for this operation is too small."),
        0x80340017: ("ERROR_NDIS_INVALID_OID", "The network interface does not support this OID."),
        0x80340018: ("ERROR_NDIS_ADAPTER_REMOVED", "The network interface has been removed."),
        0x80340019: ("ERROR_NDIS_UNSUPPORTED_MEDIA", "The network interface does not support this media type."),
        0x8034001A: ("ERROR_NDIS_GROUP_ADDRESS_IN_USE", "An attempt was made to remove a token ring group address that is in use by other components."),
        0x8034001B: ("ERROR_NDIS_FILE_NOT_FOUND", "An attempt was made to map a file that cannot be found."),
        0x8034001C: ("ERROR_NDIS_ERROR_READING_FILE", "An error occurred while the NDIS tried to map the file."),
        0x8034001D: ("ERROR_NDIS_ALREADY_MAPPED", "An attempt was made to map a file that is already mapped."),
        0x8034001E: ("ERROR_NDIS_RESOURCE_CONFLICT", "An attempt to allocate a hardware resource failed because the resource is used by another component."),
        0x8034001F: ("ERROR_NDIS_MEDIA_DISCONNECTED", "The I/O operation failed because network media is disconnected or the wireless access point is out of range."),
        0x80340022: ("ERROR_NDIS_INVALID_ADDRESS", "The network address used in the request is invalid."),
        0x8034002A: ("ERROR_NDIS_PAUSED", "The offload operation on the network interface has been paused."),
        0x8034002B: ("ERROR_NDIS_INTERFACE_NOT_FOUND", "The network interface was not found."),
        0x8034002C: ("ERROR_NDIS_UNSUPPORTED_REVISION", "The revision number specified in the structure is not supported."),
        0x8034002D: ("ERROR_NDIS_INVALID_PORT", "The specified port does not exist on this network interface."),
        0x8034002E: ("ERROR_NDIS_INVALID_PORT_STATE", "The current state of the specified port on this network interface does not support the requested operation."),
        0x803400BB: ("ERROR_NDIS_NOT_SUPPORTED", "The network interface does not support this request."),
        0x80342000: ("ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED", "The wireless local area network (LAN) interface is in auto-configuration mode and does not support the requested parameter change operation."),
        0x80342001: ("ERROR_NDIS_DOT11_MEDIA_IN_USE", "The wireless LAN interface is busy and cannot perform the requested operation."),
        0x80342002: ("ERROR_NDIS_DOT11_POWER_STATE_INVALID", "The wireless LAN interface is shutting down and does not support the requested operation."),
        0x8DEAD01B: ("TRK_E_NOT_FOUND", "A requested object was not found."),
        0x8DEAD01C: ("TRK_E_VOLUME_QUOTA_EXCEEDED", "The server received a CREATE_VOLUME subrequest of a SYNC_VOLUMES request, but the ServerVolumeTable size limit for the RequestMachine has already been reached."),
        0x8DEAD01E: ("TRK_SERVER_TOO_BUSY", "The server is busy, and the client should retry the request at a later time."),
        0xC0090001: ("ERROR_AUDITING_DISABLED", "The specified event is currently not being audited."),
        0xC0090002: ("ERROR_ALL_SIDS_FILTERED", "The SID filtering operation removed all SIDs."),
        0xC0090003: ("ERROR_BIZRULES_NOT_ENABLED", "Business rule scripts are disabled for the calling application."),
        0xC00D0005: ("NS_E_NOCONNECTION", "There is no connection established with the Windows Media server. The operation failed."),
        0xC00D0006: ("NS_E_CANNOTCONNECT", "Unable to establish a connection to the server."),
        0xC00D0007: ("NS_E_CANNOTDESTROYTITLE", "Unable to destroy the title."),
        0xC00D0008: ("NS_E_CANNOTRENAMETITLE", "Unable to rename the title."),
        0xC00D0009: ("NS_E_CANNOTOFFLINEDISK", "Unable to offline disk."),
        0xC00D000A: ("NS_E_CANNOTONLINEDISK", "Unable to online disk."),
        0xC00D000B: ("NS_E_NOREGISTEREDWALKER", "There is no file parser registered for this type of file."),
        0xC00D000C: ("NS_E_NOFUNNEL", "There is no data connection established."),
        0xC00D000D: ("NS_E_NO_LOCALPLAY", "Failed to load the local play DLL."),
        0xC00D000E: ("NS_E_NETWORK_BUSY", "The network is busy."),
        0xC00D000F: ("NS_E_TOO_MANY_SESS", "The server session limit was exceeded."),
        0xC00D0010: ("NS_E_ALREADY_CONNECTED", "The network connection already exists."),
        0xC00D0011: ("NS_E_INVALID_INDEX", "Index %1 is invalid."),
        0xC00D0012: ("NS_E_PROTOCOL_MISMATCH", "There is no protocol or protocol version supported by both the client and the server."),
        0xC00D0013: ("NS_E_TIMEOUT", "The server, a computer set up to offer multimedia content to other computers, could not handle your request for multimedia content in a timely manner. Please try again later."),
        0xC00D0014: ("NS_E_NET_WRITE", "Error writing to the network."),
        0xC00D0015: ("NS_E_NET_READ", "Error reading from the network."),
        0xC00D0016: ("NS_E_DISK_WRITE", "Error writing to a disk."),
        0xC00D0017: ("NS_E_DISK_READ", "Error reading from a disk."),
        0xC00D0018: ("NS_E_FILE_WRITE", "Error writing to a file."),
        0xC00D0019: ("NS_E_FILE_READ", "Error reading from a file."),
        0xC00D001A: ("NS_E_FILE_NOT_FOUND", "The system cannot find the file specified."),
        0xC00D001B: ("NS_E_FILE_EXISTS", "The file already exists."),
        0xC00D001C: ("NS_E_INVALID_NAME", "The file name, directory name, or volume label syntax is incorrect."),
        0xC00D001D: ("NS_E_FILE_OPEN_FAILED", "Failed to open a file."),
        0xC00D001E: ("NS_E_FILE_ALLOCATION_FAILED", "Unable to allocate a file."),
        0xC00D001F: ("NS_E_FILE_INIT_FAILED", "Unable to initialize a file."),
        0xC00D0020: ("NS_E_FILE_PLAY_FAILED", "Unable to play a file."),
        0xC00D0021: ("NS_E_SET_DISK_UID_FAILED", "Could not set the disk UID."),
        0xC00D0022: ("NS_E_INDUCED", "An error was induced for testing purposes."),
        0xC00D0023: ("NS_E_CCLINK_DOWN", "Two Content Servers failed to communicate."),
        0xC00D0024: ("NS_E_INTERNAL", "An unknown error occurred."),
        0xC00D0025: ("NS_E_BUSY", "The requested resource is in use."),
        0xC00D0026: ("NS_E_UNRECOGNIZED_STREAM_TYPE", "The specified protocol is not recognized. Be sure that the file name and syntax, such as slashes, are correct for the protocol."),
        0xC00D0027: ("NS_E_NETWORK_SERVICE_FAILURE", "The network service provider failed."),
        0xC00D0028: ("NS_E_NETWORK_RESOURCE_FAILURE", "An attempt to acquire a network resource failed."),
        0xC00D0029: ("NS_E_CONNECTION_FAILURE", "The network connection has failed."),
        0xC00D002A: ("NS_E_SHUTDOWN", "The session is being terminated locally."),
        0xC00D002B: ("NS_E_INVALID_REQUEST", "The request is invalid in the current state."),
        0xC00D002C: ("NS_E_INSUFFICIENT_BANDWIDTH", "There is insufficient bandwidth available to fulfill the request."),
        0xC00D002D: ("NS_E_NOT_REBUILDING", "The disk is not rebuilding."),
        0xC00D002E: ("NS_E_LATE_OPERATION", "An operation requested for a particular time could not be carried out on schedule."),
        0xC00D002F: ("NS_E_INVALID_DATA", "Invalid or corrupt data was encountered."),
        0xC00D0030: ("NS_E_FILE_BANDWIDTH_LIMIT", "The bandwidth required to stream a file is higher than the maximum file bandwidth allowed on the server."),
        0xC00D0031: ("NS_E_OPEN_FILE_LIMIT", "The client cannot have any more files open simultaneously."),
        0xC00D0032: ("NS_E_BAD_CONTROL_DATA", "The server received invalid data from the client on the control connection."),
        0xC00D0033: ("NS_E_NO_STREAM", "There is no stream available."),
        0xC00D0034: ("NS_E_STREAM_END", "There is no more data in the stream."),
        0xC00D0035: ("NS_E_SERVER_NOT_FOUND", "The specified server could not be found."),
        0xC00D0036: ("NS_E_DUPLICATE_NAME", "The specified name is already in use."),
        0xC00D0037: ("NS_E_DUPLICATE_ADDRESS", "The specified address is already in use."),
        0xC00D0038: ("NS_E_BAD_MULTICAST_ADDRESS", "The specified address is not a valid multicast address."),
        0xC00D0039: ("NS_E_BAD_ADAPTER_ADDRESS", "The specified adapter address is invalid."),
        0xC00D003A: ("NS_E_BAD_DELIVERY_MODE", "The specified delivery mode is invalid."),
        0xC00D003B: ("NS_E_INVALID_CHANNEL", "The specified station does not exist."),
        0xC00D003C: ("NS_E_INVALID_STREAM", "The specified stream does not exist."),
        0xC00D003D: ("NS_E_INVALID_ARCHIVE", "The specified archive could not be opened."),
        0xC00D003E: ("NS_E_NOTITLES", "The system cannot find any titles on the server."),
        0xC00D003F: ("NS_E_INVALID_CLIENT", "The system cannot find the client specified."),
        0xC00D0040: ("NS_E_INVALID_BLACKHOLE_ADDRESS", "The Blackhole Address is not initialized."),
        0xC00D0041: ("NS_E_INCOMPATIBLE_FORMAT", "The station does not support the stream format."),
        0xC00D0042: ("NS_E_INVALID_KEY", "The specified key is not valid."),
        0xC00D0043: ("NS_E_INVALID_PORT", "The specified port is not valid."),
        0xC00D0044: ("NS_E_INVALID_TTL", "The specified TTL is not valid."),
        0xC00D0045: ("NS_E_STRIDE_REFUSED", "The request to fast forward or rewind could not be fulfilled."),
        0xC00D0046: ("NS_E_MMSAUTOSERVER_CANTFINDWALKER", "Unable to load the appropriate file parser."),
        0xC00D0047: ("NS_E_MAX_BITRATE", "Cannot exceed the maximum bandwidth limit."),
        0xC00D0048: ("NS_E_LOGFILEPERIOD", "Invalid value for LogFilePeriod."),
        0xC00D0049: ("NS_E_MAX_CLIENTS", "Cannot exceed the maximum client limit."),
        0xC00D004A: ("NS_E_LOG_FILE_SIZE", "The maximum log file size has been reached."),
        0xC00D004B: ("NS_E_MAX_FILERATE", "Cannot exceed the maximum file rate."),
        0xC00D004C: ("NS_E_WALKER_UNKNOWN", "Unknown file type."),
        0xC00D004D: ("NS_E_WALKER_SERVER", "The specified file, %1, cannot be loaded onto the specified server, %2."),
        0xC00D004E: ("NS_E_WALKER_USAGE", "There was a usage error with file parser."),
        0xC00D0050: ("NS_E_TIGER_FAIL", "The Title Server %1 has failed."),
        0xC00D0053: ("NS_E_CUB_FAIL", "Content Server %1 (%2) has failed."),
        0xC00D0055: ("NS_E_DISK_FAIL", "Disk %1 ( %2 ) on Content Server %3, has failed."),
        0xC00D0060: ("NS_E_MAX_FUNNELS_ALERT", "The NetShow data stream limit of %1 streams was reached."),
        0xC00D0061: ("NS_E_ALLOCATE_FILE_FAIL", "The NetShow Video Server was unable to allocate a %1 block file named %2."),
        0xC00D0062: ("NS_E_PAGING_ERROR", "A Content Server was unable to page a block."),
        0xC00D0063: ("NS_E_BAD_BLOCK0_VERSION", "Disk %1 has unrecognized control block version %2."),
        0xC00D0064: ("NS_E_BAD_DISK_UID", "Disk %1 has incorrect uid %2."),
        0xC00D0065: ("NS_E_BAD_FSMAJOR_VERSION", "Disk %1 has unsupported file system major version %2."),
        0xC00D0066: ("NS_E_BAD_STAMPNUMBER", "Disk %1 has bad stamp number in control block."),
        0xC00D0067: ("NS_E_PARTIALLY_REBUILT_DISK", "Disk %1 is partially reconstructed."),
        0xC00D0068: ("NS_E_ENACTPLAN_GIVEUP", "EnactPlan gives up."),
        0xC00D006A: ("MCMADM_E_REGKEY_NOT_FOUND", "The key was not found in the registry."),
        0xC00D006B: ("NS_E_NO_FORMATS", "The publishing point cannot be started because the server does not have the appropriate stream formats. Use the Multicast Announcement Wizard to create a new announcement for this publishing point."),
        0xC00D006C: ("NS_E_NO_REFERENCES", "No reference URLs were found in an ASX file."),
        0xC00D006D: ("NS_E_WAVE_OPEN", "Error opening wave device, the device might be in use."),
        0xC00D006F: ("NS_E_CANNOTCONNECTEVENTS", "Unable to establish a connection to the NetShow event monitor service."),
        0xC00D0071: ("NS_E_NO_DEVICE", "No device driver is present on the system."),
        0xC00D0072: ("NS_E_NO_SPECIFIED_DEVICE", "No specified device driver is present."),
        0xC00D00C8: ("NS_E_MONITOR_GIVEUP", "Netshow Events Monitor is not operational and has been disconnected."),
        0xC00D00C9: ("NS_E_REMIRRORED_DISK", "Disk %1 is remirrored."),
        0xC00D00CA: ("NS_E_INSUFFICIENT_DATA", "Insufficient data found."),
        0xC00D00CB: ("NS_E_ASSERT", "1 failed in file %2 line %3."),
        0xC00D00CC: ("NS_E_BAD_ADAPTER_NAME", "The specified adapter name is invalid."),
        0xC00D00CD: ("NS_E_NOT_LICENSED", "The application is not licensed for this feature."),
        0xC00D00CE: ("NS_E_NO_SERVER_CONTACT", "Unable to contact the server."),
        0xC00D00CF: ("NS_E_TOO_MANY_TITLES", "Maximum number of titles exceeded."),
        0xC00D00D0: ("NS_E_TITLE_SIZE_EXCEEDED", "Maximum size of a title exceeded."),
        0xC00D00D1: ("NS_E_UDP_DISABLED", "UDP protocol not enabled. Not trying %1!ls!."),
        0xC00D00D2: ("NS_E_TCP_DISABLED", "TCP protocol not enabled. Not trying %1!ls!."),
        0xC00D00D3: ("NS_E_HTTP_DISABLED", "HTTP protocol not enabled. Not trying %1!ls!."),
        0xC00D00D4: ("NS_E_LICENSE_EXPIRED", "The product license has expired."),
        0xC00D00D5: ("NS_E_TITLE_BITRATE", "Source file exceeds the per title maximum bitrate. See NetShow Theater documentation for more information."),
        0xC00D00D6: ("NS_E_EMPTY_PROGRAM_NAME", "The program name cannot be empty."),
        0xC00D00D7: ("NS_E_MISSING_CHANNEL", "Station %1 does not exist."),
        0xC00D00D8: ("NS_E_NO_CHANNELS", "You need to define at least one station before this operation can complete."),
        0xC00D00D9: ("NS_E_INVALID_INDEX2", "The index specified is invalid."),
        0xC00D0190: ("NS_E_CUB_FAIL_LINK", "Content Server %1 (%2) has failed its link to Content Server %3."),
        0xC00D0192: ("NS_E_BAD_CUB_UID", "Content Server %1 (%2) has incorrect uid %3."),
        0xC00D0195: ("NS_E_GLITCH_MODE", "Server unreliable because multiple components failed."),
        0xC00D019B: ("NS_E_NO_MEDIA_PROTOCOL", "Content Server %1 (%2) is unable to communicate with the Media System Network Protocol."),
        0xC00D07F1: ("NS_E_NOTHING_TO_DO", "Nothing to do."),
        0xC00D07F2: ("NS_E_NO_MULTICAST", "Not receiving data from the server."),
        0xC00D0BB8: ("NS_E_INVALID_INPUT_FORMAT", "The input media format is invalid."),
        0xC00D0BB9: ("NS_E_MSAUDIO_NOT_INSTALLED", "The MSAudio codec is not installed on this system."),
        0xC00D0BBA: ("NS_E_UNEXPECTED_MSAUDIO_ERROR", "An unexpected error occurred with the MSAudio codec."),
        0xC00D0BBB: ("NS_E_INVALID_OUTPUT_FORMAT", "The output media format is invalid."),
        0xC00D0BBC: ("NS_E_NOT_CONFIGURED", "The object must be fully configured before audio samples can be processed."),
        0xC00D0BBD: ("NS_E_PROTECTED_CONTENT", "You need a license to perform the requested operation on this media file."),
        0xC00D0BBE: ("NS_E_LICENSE_REQUIRED", "You need a license to perform the requested operation on this media file."),
        0xC00D0BBF: ("NS_E_TAMPERED_CONTENT", "This media file is corrupted or invalid. Contact the content provider for a new file."),
        0xC00D0BC0: ("NS_E_LICENSE_OUTOFDATE", "The license for this media file has expired. Get a new license or contact the content provider for further assistance."),
        0xC00D0BC1: ("NS_E_LICENSE_INCORRECT_RIGHTS", "You are not allowed to open this file. Contact the content provider for further assistance."),
        0xC00D0BC2: ("NS_E_AUDIO_CODEC_NOT_INSTALLED", "The requested audio codec is not installed on this system."),
        0xC00D0BC3: ("NS_E_AUDIO_CODEC_ERROR", "An unexpected error occurred with the audio codec."),
        0xC00D0BC4: ("NS_E_VIDEO_CODEC_NOT_INSTALLED", "The requested video codec is not installed on this system."),
        0xC00D0BC5: ("NS_E_VIDEO_CODEC_ERROR", "An unexpected error occurred with the video codec."),
        0xC00D0BC6: ("NS_E_INVALIDPROFILE", "The Profile is invalid."),
        0xC00D0BC7: ("NS_E_INCOMPATIBLE_VERSION", "A new version of the SDK is needed to play the requested content."),
        0xC00D0BCA: ("NS_E_OFFLINE_MODE", "The requested URL is not available in offline mode."),
        0xC00D0BCB: ("NS_E_NOT_CONNECTED", "The requested URL cannot be accessed because there is no network connection."),
        0xC00D0BCC: ("NS_E_TOO_MUCH_DATA", "The encoding process was unable to keep up with the amount of supplied data."),
        0xC00D0BCD: ("NS_E_UNSUPPORTED_PROPERTY", "The given property is not supported."),
        0xC00D0BCE: ("NS_E_8BIT_WAVE_UNSUPPORTED", "Windows Media Player cannot copy the files to the CD because they are 8-bit. Convert the files to 16-bit, 44-kHz stereo files by using Sound Recorder or another audio-processing program, and then try again."),
        0xC00D0BCF: ("NS_E_NO_MORE_SAMPLES", "There are no more samples in the current range."),
        0xC00D0BD0: ("NS_E_INVALID_SAMPLING_RATE", "The given sampling rate is invalid."),
        0xC00D0BD1: ("NS_E_MAX_PACKET_SIZE_TOO_SMALL", "The given maximum packet size is too small to accommodate this profile.)"),
        0xC00D0BD2: ("NS_E_LATE_PACKET", "The packet arrived too late to be of use."),
        0xC00D0BD3: ("NS_E_DUPLICATE_PACKET", "The packet is a duplicate of one received before."),
        0xC00D0BD4: ("NS_E_SDK_BUFFERTOOSMALL", "Supplied buffer is too small."),
        0xC00D0BD5: ("NS_E_INVALID_NUM_PASSES", "The wrong number of preprocessing passes was used for the stream's output type."),
        0xC00D0BD6: ("NS_E_ATTRIBUTE_READ_ONLY", "An attempt was made to add, modify, or delete a read only attribute."),
        0xC00D0BD7: ("NS_E_ATTRIBUTE_NOT_ALLOWED", "An attempt was made to add attribute that is not allowed for the given media type."),
        0xC00D0BD8: ("NS_E_INVALID_EDL", "The EDL provided is invalid."),
        0xC00D0BD9: ("NS_E_DATA_UNIT_EXTENSION_TOO_LARGE", "The Data Unit Extension data was too large to be used."),
        0xC00D0BDA: ("NS_E_CODEC_DMO_ERROR", "An unexpected error occurred with a DMO codec."),
        0xC00D0BDC: ("NS_E_FEATURE_DISABLED_BY_GROUP_POLICY", "This feature has been disabled by group policy."),
        0xC00D0BDD: ("NS_E_FEATURE_DISABLED_IN_SKU", "This feature is disabled in this SKU."),
        0xC00D0FA0: ("NS_E_NO_CD", "There is no CD in the CD drive. Insert a CD, and then try again."),
        0xC00D0FA1: ("NS_E_CANT_READ_DIGITAL", "Windows Media Player could not use digital playback to play the CD. To switch to analog playback, on the Tools menu, click Options, and then click the Devices tab. Double-click the CD drive, and then in the Playback area, click Analog. For additional assistance, click Web Help."),
        0xC00D0FA2: ("NS_E_DEVICE_DISCONNECTED", "Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and then try synchronizing the file again."),
        0xC00D0FA3: ("NS_E_DEVICE_NOT_SUPPORT_FORMAT", "Windows Media Player cannot play the file. The portable device does not support the specified file type."),
        0xC00D0FA4: ("NS_E_SLOW_READ_DIGITAL", "Windows Media Player could not use digital playback to play the CD. The Player has automatically switched the CD drive to analog playback. To switch back to digital CD playback, use the Devices tab. For additional assistance, click Web Help."),
        0xC00D0FA5: ("NS_E_MIXER_INVALID_LINE", "An invalid line error occurred in the mixer."),
        0xC00D0FA6: ("NS_E_MIXER_INVALID_CONTROL", "An invalid control error occurred in the mixer."),
        0xC00D0FA7: ("NS_E_MIXER_INVALID_VALUE", "An invalid value error occurred in the mixer."),
        0xC00D0FA8: ("NS_E_MIXER_UNKNOWN_MMRESULT", "An unrecognized MMRESULT occurred in the mixer."),
        0xC00D0FA9: ("NS_E_USER_STOP", "User has stopped the operation."),
        0xC00D0FAA: ("NS_E_MP3_FORMAT_NOT_FOUND", "Windows Media Player cannot rip the track because a compatible MP3 encoder is not installed on your computer. Install a compatible MP3 encoder or choose a different format to rip to (such as Windows Media Audio)."),
        0xC00D0FAB: ("NS_E_CD_READ_ERROR_NO_CORRECTION", "Windows Media Player cannot read the CD. The disc might be dirty or damaged. Turn on error correction, and then try again."),
        0xC00D0FAC: ("NS_E_CD_READ_ERROR", "Windows Media Player cannot read the CD. The disc might be dirty or damaged or the CD drive might be malfunctioning."),
        0xC00D0FAD: ("NS_E_CD_SLOW_COPY", "For best performance, do not play CD tracks while ripping them."),
        0xC00D0FAE: ("NS_E_CD_COPYTO_CD", "It is not possible to directly burn tracks from one CD to another CD. You must first rip the tracks from the CD to your computer, and then burn the files to a blank CD."),
        0xC00D0FAF: ("NS_E_MIXER_NODRIVER", "Could not open a sound mixer driver."),
        0xC00D0FB0: ("NS_E_REDBOOK_ENABLED_WHILE_COPYING", "Windows Media Player cannot rip tracks from the CD correctly because the CD drive settings in Device Manager do not match the CD drive settings in the Player."),
        0xC00D0FB1: ("NS_E_CD_REFRESH", "Windows Media Player is busy reading the CD."),
        0xC00D0FB2: ("NS_E_CD_DRIVER_PROBLEM", "Windows Media Player could not use digital playback to play the CD. The Player has automatically switched the CD drive to analog playback. To switch back to digital CD playback, use the Devices tab. For additional assistance, click Web Help."),
        0xC00D0FB3: ("NS_E_WONT_DO_DIGITAL", "Windows Media Player could not use digital playback to play the CD. The Player has automatically switched the CD drive to analog playback. To switch back to digital CD playback, use the Devices tab. For additional assistance, click Web Help."),
        0xC00D0FB4: ("NS_E_WMPXML_NOERROR", "A call was made to GetParseError on the XML parser but there was no error to retrieve."),
        0xC00D0FB5: ("NS_E_WMPXML_ENDOFDATA", "The XML Parser ran out of data while parsing."),
        0xC00D0FB6: ("NS_E_WMPXML_PARSEERROR", "A generic parse error occurred in the XML parser but no information is available."),
        0xC00D0FB7: ("NS_E_WMPXML_ATTRIBUTENOTFOUND", "A call get GetNamedAttribute or GetNamedAttributeIndex on the XML parser resulted in the index not being found."),
        0xC00D0FB8: ("NS_E_WMPXML_PINOTFOUND", "A call was made go GetNamedPI on the XML parser, but the requested Processing Instruction was not found."),
        0xC00D0FB9: ("NS_E_WMPXML_EMPTYDOC", "Persist was called on the XML parser, but the parser has no data to persist."),
        0xC00D0FBA: ("NS_E_WMP_PATH_ALREADY_IN_LIBRARY", "This file path is already in the library."),
        0xC00D0FBE: ("NS_E_WMP_FILESCANALREADYSTARTED", "Windows Media Player is already searching for files to add to your library. Wait for the current process to finish before attempting to search again."),
        0xC00D0FBF: ("NS_E_WMP_HME_INVALIDOBJECTID", "Windows Media Player is unable to find the media you are looking for."),
        0xC00D0FC0: ("NS_E_WMP_MF_CODE_EXPIRED", "A component of Windows Media Player is out-of-date. If you are running a pre-release version of Windows, try upgrading to a more recent version."),
        0xC00D0FC1: ("NS_E_WMP_HME_NOTSEARCHABLEFORITEMS", "This container does not support search on items."),
        0xC00D0FC7: ("NS_E_WMP_ADDTOLIBRARY_FAILED", "Windows Media Player encountered a problem while adding one or more files to the library. For additional assistance, click Web Help."),
        0xC00D0FC8: ("NS_E_WMP_WINDOWSAPIFAILURE", "A Windows API call failed but no error information was available."),
        0xC00D0FC9: ("NS_E_WMP_RECORDING_NOT_ALLOWED", "This file does not have burn rights. If you obtained this file from an online store, go to the online store to get burn rights."),
        0xC00D0FCA: ("NS_E_DEVICE_NOT_READY", "Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and then try to sync the file again."),
        0xC00D0FCB: ("NS_E_DAMAGED_FILE", "Windows Media Player cannot play the file because it is corrupted."),
        0xC00D0FCC: ("NS_E_MPDB_GENERIC", "Windows Media Player encountered an error while attempting to access information in the library. Try restarting the Player."),
        0xC00D0FCD: ("NS_E_FILE_FAILED_CHECKS", "The file cannot be added to the library because it is smaller than the \"Skip files smaller than\" setting. To add the file, change the setting on the Library tab. For additional assistance, click Web Help."),
        0xC00D0FCE: ("NS_E_MEDIA_LIBRARY_FAILED", "Windows Media Player cannot create the library. You must be logged on as an administrator or a member of the Administrators group to install the Player. For more information, contact your system administrator."),
        0xC00D0FCF: ("NS_E_SHARING_VIOLATION", "The file is already in use. Close other programs that might be using the file, or stop playing the file, and then try again."),
        0xC00D0FD0: ("NS_E_NO_ERROR_STRING_FOUND", "Windows Media Player has encountered an unknown error."),
        0xC00D0FD1: ("NS_E_WMPOCX_NO_REMOTE_CORE", "The Windows Media Player ActiveX control cannot connect to remote media services, but will continue with local media services."),
        0xC00D0FD2: ("NS_E_WMPOCX_NO_ACTIVE_CORE", "The requested method or property is not available because the Windows Media Player ActiveX control has not been properly activated."),
        0xC00D0FD3: ("NS_E_WMPOCX_NOT_RUNNING_REMOTELY", "The Windows Media Player ActiveX control is not running in remote mode."),
        0xC00D0FD4: ("NS_E_WMPOCX_NO_REMOTE_WINDOW", "An error occurred while trying to get the remote Windows Media Player window."),
        0xC00D0FD5: ("NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE", "Windows Media Player has encountered an unknown error."),
        0xC00D0FD6: ("NS_E_PLUGIN_NOTSHUTDOWN", "Windows Media Player was not closed properly. A damaged or incompatible plug-in might have caused the problem to occur. As a precaution, all optional plug-ins have been disabled."),
        0xC00D0FD7: ("NS_E_WMP_CANNOT_FIND_FOLDER", "Windows Media Player cannot find the specified path. Verify that the path is typed correctly. If it is, the path does not exist in the specified location, or the computer where the path is located is not available."),
        0xC00D0FD8: ("NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED", "Windows Media Player cannot save a file that is being streamed."),
        0xC00D0FD9: ("NS_E_WMP_PLUGINDLL_NOTFOUND", "Windows Media Player cannot find the selected plug-in. The Player will try to remove it from the menu. To use this plug-in, install it again."),
        0xC00D0FDA: ("NS_E_NEED_TO_ASK_USER", "Action requires input from the user."),
        0xC00D0FDB: ("NS_E_WMPOCX_PLAYER_NOT_DOCKED", "The Windows Media Player ActiveX control must be in a docked state for this action to be performed."),
        0xC00D0FDC: ("NS_E_WMP_EXTERNAL_NOTREADY", "The Windows Media Player external object is not ready."),
        0xC00D0FDD: ("NS_E_WMP_MLS_STALE_DATA", "Windows Media Player cannot perform the requested action. Your computer's time and date might not be set correctly."),
        0xC00D0FDE: ("NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED", "The control (%s) does not support creation of sub-controls, yet (%d) sub-controls have been specified."),
        0xC00D0FDF: ("NS_E_WMP_UI_VERSIONMISMATCH", "Version mismatch: (%.1f required, %.1f found)."),
        0xC00D0FE0: ("NS_E_WMP_UI_NOTATHEMEFILE", "The layout manager was given valid XML that wasn't a theme file."),
        0xC00D0FE1: ("NS_E_WMP_UI_SUBELEMENTNOTFOUND", "The %s subelement could not be found on the %s object."),
        0xC00D0FE2: ("NS_E_WMP_UI_VERSIONPARSE", "An error occurred parsing the version tag. Valid version tags are of the form: <?wmp version='1.0'?>."),
        0xC00D0FE3: ("NS_E_WMP_UI_VIEWIDNOTFOUND", "The view specified in for the 'currentViewID' property (%s) was not found in this theme file."),
        0xC00D0FE4: ("NS_E_WMP_UI_PASSTHROUGH", "This error used internally for hit testing."),
        0xC00D0FE5: ("NS_E_WMP_UI_OBJECTNOTFOUND", "Attributes were specified for the %s object, but the object was not available to send them to."),
        0xC00D0FE6: ("NS_E_WMP_UI_SECONDHANDLER", "The %s event already has a handler, the second handler was ignored."),
        0xC00D0FE7: ("NS_E_WMP_UI_NOSKININZIP", "No .wms file found in skin archive."),
        0xC00D0FEA: ("NS_E_WMP_URLDOWNLOADFAILED", "Windows Media Player encountered a problem while downloading the file. For additional assistance, click Web Help."),
        0xC00D0FEB: ("NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN", "The Windows Media Player ActiveX control cannot load the requested uiMode and cannot roll back to the existing uiMode."),
        0xC00D0FEC: ("NS_E_WMP_INVALID_SKIN", "Windows Media Player encountered a problem with the skin file. The skin file might not be valid."),
        0xC00D0FED: ("NS_E_WMP_SENDMAILFAILED", "Windows Media Player cannot send the link because your email program is not responding. Verify that your email program is configured properly, and then try again. For more information about email, see Windows Help."),
        0xC00D0FEE: ("NS_E_WMP_LOCKEDINSKINMODE", "Windows Media Player cannot switch to full mode because your computer administrator has locked this skin."),
        0xC00D0FEF: ("NS_E_WMP_FAILED_TO_SAVE_FILE", "Windows Media Player encountered a problem while saving the file. For additional assistance, click Web Help."),
        0xC00D0FF0: ("NS_E_WMP_SAVEAS_READONLY", "Windows Media Player cannot overwrite a read-only file. Try using a different file name."),
        0xC00D0FF1: ("NS_E_WMP_FAILED_TO_SAVE_PLAYLIST", "Windows Media Player encountered a problem while creating or saving the playlist. For additional assistance, click Web Help."),
        0xC00D0FF2: ("NS_E_WMP_FAILED_TO_OPEN_WMD", "Windows Media Player cannot open the Windows Media Download file. The file might be damaged."),
        0xC00D0FF3: ("NS_E_WMP_CANT_PLAY_PROTECTED", "The file cannot be added to the library because it is a protected DVR-MS file. This content cannot be played back by Windows Media Player."),
        0xC00D0FF4: ("NS_E_SHARING_STATE_OUT_OF_SYNC", "Media sharing has been turned off because a required Windows setting or component has changed. For additional assistance, click Web Help."),
        0xC00D0FFA: ("NS_E_WMPOCX_REMOTE_PLAYER_ALREADY_RUNNING", "Exclusive Services launch failed because the Windows Media Player is already running."),
        0xC00D1004: ("NS_E_WMP_RBC_JPGMAPPINGIMAGE", "JPG Images are not recommended for use as a mappingImage."),
        0xC00D1005: ("NS_E_WMP_JPGTRANSPARENCY", "JPG Images are not recommended when using a transparencyColor."),
        0xC00D1009: ("NS_E_WMP_INVALID_MAX_VAL", "The Max property cannot be less than Min property."),
        0xC00D100A: ("NS_E_WMP_INVALID_MIN_VAL", "The Min property cannot be greater than Max property."),
        0xC00D100E: ("NS_E_WMP_CS_JPGPOSITIONIMAGE", "JPG Images are not recommended for use as a positionImage."),
        0xC00D100F: ("NS_E_WMP_CS_NOTEVENLYDIVISIBLE", "The (%s) image's size is not evenly divisible by the positionImage's size."),
        0xC00D1018: ("NS_E_WMPZIP_NOTAZIPFILE", "The ZIP reader opened a file and its signature did not match that of the ZIP files."),
        0xC00D1019: ("NS_E_WMPZIP_CORRUPT", "The ZIP reader has detected that the file is corrupted."),
        0xC00D101A: ("NS_E_WMPZIP_FILENOTFOUND", "GetFileStream, SaveToFile, or SaveTemp file was called on the ZIP reader with a file name that was not found in the ZIP file."),
        0xC00D1022: ("NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED", "Image type not supported."),
        0xC00D1023: ("NS_E_WMP_IMAGE_INVALID_FORMAT", "Image file may be corrupt."),
        0xC00D1024: ("NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE", "Unexpected end of file. GIF file may be corrupt."),
        0xC00D1025: ("NS_E_WMP_GIF_INVALID_FORMAT", "Invalid GIF file."),
        0xC00D1026: ("NS_E_WMP_GIF_BAD_VERSION_NUMBER", "Invalid GIF version. Only 87a or 89a supported."),
        0xC00D1027: ("NS_E_WMP_GIF_NO_IMAGE_IN_FILE", "No images found in GIF file."),
        0xC00D1028: ("NS_E_WMP_PNG_INVALIDFORMAT", "Invalid PNG image file format."),
        0xC00D1029: ("NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH", "PNG bitdepth not supported."),
        0xC00D102A: ("NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION", "Compression format defined in PNG file not supported,"),
        0xC00D102B: ("NS_E_WMP_PNG_UNSUPPORTED_FILTER", "Filter method defined in PNG file not supported."),
        0xC00D102C: ("NS_E_WMP_PNG_UNSUPPORTED_INTERLACE", "Interlace method defined in PNG file not supported."),
        0xC00D102D: ("NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC", "Bad CRC in PNG file."),
        0xC00D102E: ("NS_E_WMP_BMP_INVALID_BITMASK", "Invalid bitmask in BMP file."),
        0xC00D102F: ("NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED", "Topdown DIB not supported."),
        0xC00D1030: ("NS_E_WMP_BMP_BITMAP_NOT_CREATED", "Bitmap could not be created."),
        0xC00D1031: ("NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED", "Compression format defined in BMP not supported."),
        0xC00D1032: ("NS_E_WMP_BMP_INVALID_FORMAT", "Invalid Bitmap format."),
        0xC00D1033: ("NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL", "JPEG Arithmetic coding not supported."),
        0xC00D1034: ("NS_E_WMP_JPG_INVALID_FORMAT", "Invalid JPEG format."),
        0xC00D1035: ("NS_E_WMP_JPG_BAD_DCTSIZE", "Invalid JPEG format."),
        0xC00D1036: ("NS_E_WMP_JPG_BAD_VERSION_NUMBER", "Internal version error. Unexpected JPEG library version."),
        0xC00D1037: ("NS_E_WMP_JPG_BAD_PRECISION", "Internal JPEG Library error. Unsupported JPEG data precision."),
        0xC00D1038: ("NS_E_WMP_JPG_CCIR601_NOTIMPL", "JPEG CCIR601 not supported."),
        0xC00D1039: ("NS_E_WMP_JPG_NO_IMAGE_IN_FILE", "No image found in JPEG file."),
        0xC00D103A: ("NS_E_WMP_JPG_READ_ERROR", "Could not read JPEG file."),
        0xC00D103B: ("NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL", "JPEG Fractional sampling not supported."),
        0xC00D103C: ("NS_E_WMP_JPG_IMAGE_TOO_BIG", "JPEG image too large. Maximum image size supported is 65500 X 65500."),
        0xC00D103D: ("NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE", "Unexpected end of file reached in JPEG file."),
        0xC00D103E: ("NS_E_WMP_JPG_SOF_UNSUPPORTED", "Unsupported JPEG SOF marker found."),
        0xC00D103F: ("NS_E_WMP_JPG_UNKNOWN_MARKER", "Unknown JPEG marker found."),
        0xC00D1044: ("NS_E_WMP_FAILED_TO_OPEN_IMAGE", "Windows Media Player cannot display the picture file. The player either does not support the picture type or the picture is corrupted."),
        0xC00D1049: ("NS_E_WMP_DAI_SONGTOOSHORT", "Windows Media Player cannot compute a Digital Audio Id for the song. It is too short."),
        0xC00D104A: ("NS_E_WMG_RATEUNAVAILABLE", "Windows Media Player cannot play the file at the requested speed."),
        0xC00D104B: ("NS_E_WMG_PLUGINUNAVAILABLE", "The rendering or digital signal processing plug-in cannot be instantiated."),
        0xC00D104C: ("NS_E_WMG_CANNOTQUEUE", "The file cannot be queued for seamless playback."),
        0xC00D104D: ("NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED", "Windows Media Player cannot download media usage rights for a file in the playlist."),
        0xC00D104E: ("NS_E_WMG_UNEXPECTEDPREROLLSTATUS", "Windows Media Player encountered an error while trying to queue a file."),
        0xC00D1051: ("NS_E_WMG_INVALID_COPP_CERTIFICATE", "Windows Media Player cannot play the protected file. The Player cannot verify that the connection to your video card is secure. Try installing an updated device driver for your video card."),
        0xC00D1052: ("NS_E_WMG_COPP_SECURITY_INVALID", "Windows Media Player cannot play the protected file. The Player detected that the connection to your hardware might not be secure."),
        0xC00D1053: ("NS_E_WMG_COPP_UNSUPPORTED", "Windows Media Player output link protection is unsupported on this system."),
        0xC00D1054: ("NS_E_WMG_INVALIDSTATE", "Operation attempted in an invalid graph state."),
        0xC00D1055: ("NS_E_WMG_SINKALREADYEXISTS", "A renderer cannot be inserted in a stream while one already exists."),
        0xC00D1056: ("NS_E_WMG_NOSDKINTERFACE", "The Windows Media SDK interface needed to complete the operation does not exist at this time."),
        0xC00D1057: ("NS_E_WMG_NOTALLOUTPUTSRENDERED", "Windows Media Player cannot play a portion of the file because it requires a codec that either could not be downloaded or that is not supported by the Player."),
        0xC00D1058: ("NS_E_WMG_FILETRANSFERNOTALLOWED", "File transfer streams are not allowed in the standalone Player."),
        0xC00D1059: ("NS_E_WMR_UNSUPPORTEDSTREAM", "Windows Media Player cannot play the file. The Player does not support the format you are trying to play."),
        0xC00D105A: ("NS_E_WMR_PINNOTFOUND", "An operation was attempted on a pin that does not exist in the DirectShow filter graph."),
        0xC00D105B: ("NS_E_WMR_WAITINGONFORMATSWITCH", "Specified operation cannot be completed while waiting for a media format change from the SDK."),
        0xC00D105C: ("NS_E_WMR_NOSOURCEFILTER", "Specified operation cannot be completed because the source filter does not exist."),
        0xC00D105D: ("NS_E_WMR_PINTYPENOMATCH", "The specified type does not match this pin."),
        0xC00D105E: ("NS_E_WMR_NOCALLBACKAVAILABLE", "The WMR Source Filter does not have a callback available."),
        0xC00D1062: ("NS_E_WMR_SAMPLEPROPERTYNOTSET", "The specified property has not been set on this sample."),
        0xC00D1063: ("NS_E_WMR_CANNOT_RENDER_BINARY_STREAM", "A plug-in is required to correctly play the file. To determine if the plug-in is available to download, click Web Help."),
        0xC00D1064: ("NS_E_WMG_LICENSE_TAMPERED", "Windows Media Player cannot play the file because your media usage rights are corrupted. If you previously backed up your media usage rights, try restoring them."),
        0xC00D1065: ("NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM", "Windows Media Player cannot play protected files that contain binary streams."),
        0xC00D1068: ("NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT", "Windows Media Player cannot play the playlist because it is not valid."),
        0xC00D1069: ("NS_E_ASX_INVALIDFORMAT", "Windows Media Player cannot play the playlist because it is not valid."),
        0xC00D106A: ("NS_E_ASX_INVALIDVERSION", "A later version of Windows Media Player might be required to play this playlist."),
        0xC00D106B: ("NS_E_ASX_INVALID_REPEAT_BLOCK", "The format of a REPEAT loop within the current playlist file is not valid."),
        0xC00D106C: ("NS_E_ASX_NOTHING_TO_WRITE", "Windows Media Player cannot save the playlist because it does not contain any items."),
        0xC00D106D: ("NS_E_URLLIST_INVALIDFORMAT", "Windows Media Player cannot play the playlist because it is not valid."),
        0xC00D106E: ("NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST", "The specified attribute does not exist."),
        0xC00D106F: ("NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS", "The specified attribute already exists."),
        0xC00D1070: ("NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE", "Cannot retrieve the specified attribute."),
        0xC00D1071: ("NS_E_WMX_ITEM_DOES_NOT_EXIST", "The specified item does not exist in the current playlist."),
        0xC00D1072: ("NS_E_WMX_ITEM_TYPE_ILLEGAL", "Items of the specified type cannot be created within the current playlist."),
        0xC00D1073: ("NS_E_WMX_ITEM_UNSETTABLE", "The specified item cannot be set in the current playlist."),
        0xC00D1074: ("NS_E_WMX_PLAYLIST_EMPTY", "Windows Media Player cannot perform the requested action because the playlist does not contain any items."),
        0xC00D1075: ("NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED", "The specified auto playlist contains a filter type that is either not valid or is not installed on this computer."),
        0xC00D1076: ("NS_E_WMX_INVALID_FORMAT_OVER_NESTING", "Windows Media Player cannot play the file because the associated playlist contains too many nested playlists."),
        0xC00D107C: ("NS_E_WMPCORE_NOSOURCEURLSTRING", "Windows Media Player cannot find the file. Verify that the path is typed correctly. If it is, the file might not exist in the specified location, or the computer where the file is stored might not be available."),
        0xC00D107D: ("NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT", "Failed to create the Global Interface Table."),
        0xC00D107E: ("NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE", "Failed to get the marshaled graph event handler interface."),
        0xC00D107F: ("NS_E_WMPCORE_BUFFERTOOSMALL", "Buffer is too small for copying media type."),
        0xC00D1080: ("NS_E_WMPCORE_UNAVAILABLE", "The current state of the Player does not allow this operation."),
        0xC00D1081: ("NS_E_WMPCORE_INVALIDPLAYLISTMODE", "The playlist manager does not understand the current play mode (for example, shuffle or normal)."),
        0xC00D1086: ("NS_E_WMPCORE_ITEMNOTINPLAYLIST", "Windows Media Player cannot play the file because it is not in the current playlist."),
        0xC00D1087: ("NS_E_WMPCORE_PLAYLISTEMPTY", "There are no items in the playlist. Add items to the playlist, and then try again."),
        0xC00D1088: ("NS_E_WMPCORE_NOBROWSER", "The web page cannot be displayed because no web browser is installed on your computer."),
        0xC00D1089: ("NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL", "Windows Media Player cannot find the specified file. Verify the path is typed correctly. If it is, the file does not exist in the specified location, or the computer where the file is stored is not available."),
        0xC00D108A: ("NS_E_WMPCORE_GRAPH_NOT_IN_LIST", "Graph with the specified URL was not found in the prerolled graph list."),
        0xC00D108B: ("NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA", "Windows Media Player cannot perform the requested operation because there is only one item in the playlist."),
        0xC00D108C: ("NS_E_WMPCORE_ERRORSINKNOTREGISTERED", "An error sink was never registered for the calling object."),
        0xC00D108D: ("NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE", "The error manager is not available to respond to errors."),
        0xC00D108E: ("NS_E_WMPCORE_WEBHELPFAILED", "The Web Help URL cannot be opened."),
        0xC00D108F: ("NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED", "Could not resume playing next item in playlist."),
        0xC00D1090: ("NS_E_WMPCORE_NO_REF_IN_ENTRY", "Windows Media Player cannot play the file because the associated playlist does not contain any items or the playlist is not valid."),
        0xC00D1091: ("NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY", "An empty string for playlist attribute name was found."),
        0xC00D1092: ("NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL", "A playlist attribute name that is not valid was found."),
        0xC00D1093: ("NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY", "An empty string for a playlist attribute value was found."),
        0xC00D1094: ("NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL", "An illegal value for a playlist attribute was found."),
        0xC00D1095: ("NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY", "An empty string for a playlist item attribute name was found."),
        0xC00D1096: ("NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL", "An illegal value for a playlist item attribute name was found."),
        0xC00D1097: ("NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY", "An illegal value for a playlist item attribute was found."),
        0xC00D1098: ("NS_E_WMPCORE_LIST_ENTRY_NO_REF", "The playlist does not contain any items."),
        0xC00D1099: ("NS_E_WMPCORE_MISNAMED_FILE", "Windows Media Player cannot play the file. The file is either corrupted or the Player does not support the format you are trying to play."),
        0xC00D109A: ("NS_E_WMPCORE_CODEC_NOT_TRUSTED", "The codec downloaded for this file does not appear to be properly signed, so it cannot be installed."),
        0xC00D109B: ("NS_E_WMPCORE_CODEC_NOT_FOUND", "Windows Media Player cannot play the file. One or more codecs required to play the file could not be found."),
        0xC00D109C: ("NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED", "Windows Media Player cannot play the file because a required codec is not installed on your computer. To try downloading the codec, turn on the \"Download codecs automatically\" option."),
        0xC00D109D: ("NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST", "Windows Media Player encountered a problem while downloading the playlist. For additional assistance, click Web Help."),
        0xC00D109E: ("NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST", "Failed to build the playlist."),
        0xC00D109F: ("NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE", "Playlist has no alternates to switch into."),
        0xC00D10A0: ("NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED", "No more playlist alternates available to switch to."),
        0xC00D10A1: ("NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND", "Could not find the name of the alternate playlist to switch into."),
        0xC00D10A2: ("NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED", "Failed to switch to an alternate for this media."),
        0xC00D10A3: ("NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED", "Failed to initialize an alternate for the media."),
        0xC00D10A4: ("NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY", "No URL specified for the roll over Refs in the playlist file."),
        0xC00D10A5: ("NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME", "Encountered a playlist with no name."),
        0xC00D10A6: ("NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT", "A required attribute in the event block of the playlist was not found."),
        0xC00D10A7: ("NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY", "No items were found in the event block of the playlist."),
        0xC00D10A8: ("NS_E_WMPCORE_PLAYLIST_STACK_EMPTY", "No playlist was found while returning from a nested playlist."),
        0xC00D10A9: ("NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE", "The media item is not active currently."),
        0xC00D10AB: ("NS_E_WMPCORE_USER_CANCEL", "Windows Media Player cannot perform the requested action because you chose to cancel it."),
        0xC00D10AC: ("NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY", "Windows Media Player encountered a problem with the playlist. The format of the playlist is not valid."),
        0xC00D10AD: ("NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE", "Media object corresponding to start of a playlist repeat block was not found."),
        0xC00D10AE: ("NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE", "Media object corresponding to the end of a playlist repeat block was not found."),
        0xC00D10AF: ("NS_E_WMPCORE_INVALID_PLAYLIST_URL", "The playlist URL supplied to the playlist manager is not valid."),
        0xC00D10B0: ("NS_E_WMPCORE_MISMATCHED_RUNTIME", "Windows Media Player cannot play the file because it is corrupted."),
        0xC00D10B1: ("NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS", "Windows Media Player cannot add the playlist to the library because the playlist does not contain any items."),
        0xC00D10B2: ("NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION", "An error has occurred that could prevent the changing of the video contrast on this media."),
        0xC00D10B3: ("NS_E_WMPCORE_MEDIA_UNAVAILABLE", "Windows Media Player cannot play the file. If the file is located on the Internet, connect to the Internet. If the file is located on a removable storage card, insert the storage card."),
        0xC00D10B4: ("NS_E_WMPCORE_WMX_ENTRYREF_NO_REF", "The playlist contains an ENTRYREF for which no href was parsed. Check the syntax of playlist file."),
        0xC00D10B5: ("NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST", "Windows Media Player cannot play any items in the playlist. To find information about the problem, click the Now Playing tab, and then click the icon next to each file in the List pane."),
        0xC00D10B6: ("NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS", "Windows Media Player cannot play some or all of the items in the playlist because the playlist is nested."),
        0xC00D10B7: ("NS_E_WMPCORE_BUSY", "Windows Media Player cannot play the file at this time. Try again later."),
        0xC00D10B8: ("NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE", "There is no child playlist available for this media item at this time."),
        0xC00D10B9: ("NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST", "There is no child playlist for this media item."),
        0xC00D10BA: ("NS_E_WMPCORE_FILE_NOT_FOUND", "Windows Media Player cannot find the file. The link from the item in the library to its associated digital media file might be broken. To fix the problem, try repairing the link or removing the item from the library."),
        0xC00D10BB: ("NS_E_WMPCORE_TEMP_FILE_NOT_FOUND", "The temporary file was not found."),
        0xC00D10BC: ("NS_E_WMDM_REVOKED", "Windows Media Player cannot sync the file because the device needs to be updated."),
        0xC00D10BD: ("NS_E_DDRAW_GENERIC", "Windows Media Player cannot play the video because there is a problem with your video card."),
        0xC00D10BE: ("NS_E_DISPLAY_MODE_CHANGE_FAILED", "Windows Media Player failed to change the screen mode for full-screen video playback."),
        0xC00D10BF: ("NS_E_PLAYLIST_CONTAINS_ERRORS", "Windows Media Player cannot play one or more files. For additional information, right-click an item that cannot be played, and then click Error Details."),
        0xC00D10C0: ("NS_E_CHANGING_PROXY_NAME", "Cannot change the proxy name if the proxy setting is not set to custom."),
        0xC00D10C1: ("NS_E_CHANGING_PROXY_PORT", "Cannot change the proxy port if the proxy setting is not set to custom."),
        0xC00D10C2: ("NS_E_CHANGING_PROXY_EXCEPTIONLIST", "Cannot change the proxy exception list if the proxy setting is not set to custom."),
        0xC00D10C3: ("NS_E_CHANGING_PROXYBYPASS", "Cannot change the proxy bypass flag if the proxy setting is not set to custom."),
        0xC00D10C4: ("NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND", "Cannot find the specified protocol."),
        0xC00D10C5: ("NS_E_GRAPH_NOAUDIOLANGUAGE", "Cannot change the language settings. Either the graph has no audio or the audio only supports one language."),
        0xC00D10C6: ("NS_E_GRAPH_NOAUDIOLANGUAGESELECTED", "The graph has no audio language selected."),
        0xC00D10C7: ("NS_E_CORECD_NOTAMEDIACD", "This is not a media CD."),
        0xC00D10C8: ("NS_E_WMPCORE_MEDIA_URL_TOO_LONG", "Windows Media Player cannot play the file because the URL is too long."),
        0xC00D10C9: ("NS_E_WMPFLASH_CANT_FIND_COM_SERVER", "To play the selected item, you must install the Macromedia Flash Player. To download the Macromedia Flash Player, go to the Adobe website."),
        0xC00D10CA: ("NS_E_WMPFLASH_INCOMPATIBLEVERSION", "To play the selected item, you must install a later version of the Macromedia Flash Player. To download the Macromedia Flash Player, go to the Adobe website."),
        0xC00D10CB: ("NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS", "Windows Media Player cannot play the file because your Internet security settings prohibit the use of ActiveX controls."),
        0xC00D10CC: ("NS_E_NEED_CORE_REFERENCE", "The use of this method requires an existing reference to the Player object."),
        0xC00D10CD: ("NS_E_MEDIACD_READ_ERROR", "Windows Media Player cannot play the CD. The disc might be dirty or damaged."),
        0xC00D10CE: ("NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS", "Windows Media Player cannot play the file because your Internet security settings prohibit the use of ActiveX controls."),
        0xC00D10CF: ("NS_E_FLASH_PLAYBACK_NOT_ALLOWED", "Flash playback has been turned off in Windows Media Player."),
        0xC00D10D0: ("NS_E_UNABLE_TO_CREATE_RIP_LOCATION", "Windows Media Player cannot rip the CD because a valid rip location cannot be created."),
        0xC00D10D1: ("NS_E_WMPCORE_SOME_CODECS_MISSING", "Windows Media Player cannot play the file because a required codec is not installed on your computer."),
        0xC00D10D2: ("NS_E_WMP_RIP_FAILED", "Windows Media Player cannot rip one or more tracks from the CD."),
        0xC00D10D3: ("NS_E_WMP_FAILED_TO_RIP_TRACK", "Windows Media Player encountered a problem while ripping the track from the CD. For additional assistance, click Web Help."),
        0xC00D10D4: ("NS_E_WMP_ERASE_FAILED", "Windows Media Player encountered a problem while erasing the disc. For additional assistance, click Web Help."),
        0xC00D10D5: ("NS_E_WMP_FORMAT_FAILED", "Windows Media Player encountered a problem while formatting the device. For additional assistance, click Web Help."),
        0xC00D10D6: ("NS_E_WMP_CANNOT_BURN_NON_LOCAL_FILE", "This file cannot be burned to a CD because it is not located on your computer."),
        0xC00D10D7: ("NS_E_WMP_FILE_TYPE_CANNOT_BURN_TO_AUDIO_CD", "It is not possible to burn this file type to an audio CD. Windows Media Player can burn the following file types to an audio CD: WMA, MP3, or WAV."),
        0xC00D10D8: ("NS_E_WMP_FILE_DOES_NOT_FIT_ON_CD", "This file is too large to fit on a disc."),
        0xC00D10D9: ("NS_E_WMP_FILE_NO_DURATION", "It is not possible to determine if this file can fit on a disc because Windows Media Player cannot detect the length of the file. Playing the file before burning may enable the Player to detect the file length."),
        0xC00D10DA: ("NS_E_PDA_FAILED_TO_BURN", "Windows Media Player encountered a problem while burning the file to the disc. For additional assistance, click Web Help."),
        0xC00D10DC: ("NS_E_FAILED_DOWNLOAD_ABORT_BURN", "Windows Media Player cannot burn the audio CD because some items in the list that you chose to buy could not be downloaded from the online store."),
        0xC00D10DD: ("NS_E_WMPCORE_DEVICE_DRIVERS_MISSING", "Windows Media Player cannot play the file. Try using Windows Update or Device Manager to update the device drivers for your audio and video cards. For information about using Windows Update or Device Manager, see Windows Help."),
        0xC00D1126: ("NS_E_WMPIM_USEROFFLINE", "Windows Media Player has detected that you are not connected to the Internet. Connect to the Internet, and then try again."),
        0xC00D1127: ("NS_E_WMPIM_USERCANCELED", "The attempt to connect to the Internet was canceled."),
        0xC00D1128: ("NS_E_WMPIM_DIALUPFAILED", "The attempt to connect to the Internet failed."),
        0xC00D1129: ("NS_E_WINSOCK_ERROR_STRING", "Windows Media Player has encountered an unknown network error."),
        0xC00D1130: ("NS_E_WMPBR_NOLISTENER", "No window is currently listening to Backup and Restore events."),
        0xC00D1131: ("NS_E_WMPBR_BACKUPCANCEL", "Your media usage rights were not backed up because the backup was canceled."),
        0xC00D1132: ("NS_E_WMPBR_RESTORECANCEL", "Your media usage rights were not restored because the restoration was canceled."),
        0xC00D1133: ("NS_E_WMPBR_ERRORWITHURL", "An error occurred while backing up or restoring your media usage rights. A required web page cannot be displayed."),
        0xC00D1134: ("NS_E_WMPBR_NAMECOLLISION", "Your media usage rights were not backed up because the backup was canceled."),
        0xC00D1137: ("NS_E_WMPBR_DRIVE_INVALID", "Windows Media Player cannot restore your media usage rights from the specified location. Choose another location, and then try again."),
        0xC00D1138: ("NS_E_WMPBR_BACKUPRESTOREFAILED", "Windows Media Player cannot backup or restore your media usage rights."),
        0xC00D1158: ("NS_E_WMP_CONVERT_FILE_FAILED", "Windows Media Player cannot add the file to the library."),
        0xC00D1159: ("NS_E_WMP_CONVERT_NO_RIGHTS_ERRORURL", "Windows Media Player cannot add the file to the library because the content provider prohibits it. For assistance, contact the company that provided the file."),
        0xC00D115A: ("NS_E_WMP_CONVERT_NO_RIGHTS_NOERRORURL", "Windows Media Player cannot add the file to the library because the content provider prohibits it. For assistance, contact the company that provided the file."),
        0xC00D115B: ("NS_E_WMP_CONVERT_FILE_CORRUPT", "Windows Media Player cannot add the file to the library. The file might not be valid."),
        0xC00D115C: ("NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_ERRORURL", "Windows Media Player cannot add the file to the library. The plug-in required to add the file is not installed properly. For assistance, click Web Help to display the website of the company that provided the file."),
        0xC00D115D: ("NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_NOERRORURL", "Windows Media Player cannot add the file to the library. The plug-in required to add the file is not installed properly. For assistance, contact the company that provided the file."),
        0xC00D115E: ("NS_E_WMP_CONVERT_PLUGIN_UNKNOWN_FILE_OWNER", "Windows Media Player cannot add the file to the library. The plug-in required to add the file is not installed properly. For assistance, contact the company that provided the file."),
        0xC00D1160: ("NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_NS", "Windows Media Player cannot play this DVD. Try installing an updated driver for your video card or obtaining a newer video card."),
        0xC00D1161: ("NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_FAILED", "This DVD's resolution exceeds the maximum allowed by your component video outputs. Try reducing your screen resolution to 640 x 480, or turn off analog component outputs and use a VGA connection to your monitor."),
        0xC00D1162: ("NS_E_DVD_NO_SUBPICTURE_STREAM", "Windows Media Player cannot display subtitles or highlights in DVD menus. Reinstall the DVD decoder or contact the DVD drive manufacturer to obtain an updated decoder."),
        0xC00D1163: ("NS_E_DVD_COPY_PROTECT", "Windows Media Player cannot play this DVD because there is a problem with digital copy protection between your DVD drive, decoder, and video card. Try installing an updated driver for your video card."),
        0xC00D1164: ("NS_E_DVD_AUTHORING_PROBLEM", "Windows Media Player cannot play the DVD. The disc was created in a manner that the Player does not support."),
        0xC00D1165: ("NS_E_DVD_INVALID_DISC_REGION", "Windows Media Player cannot play the DVD because the disc prohibits playback in your region of the world. You must obtain a disc that is intended for your geographic region."),
        0xC00D1166: ("NS_E_DVD_COMPATIBLE_VIDEO_CARD", "Windows Media Player cannot play the DVD because your video card does not support DVD playback."),
        0xC00D1167: ("NS_E_DVD_MACROVISION", "Windows Media Player cannot play this DVD because it is not possible to turn on analog copy protection on the output display. Try installing an updated driver for your video card."),
        0xC00D1168: ("NS_E_DVD_SYSTEM_DECODER_REGION", "Windows Media Player cannot play the DVD because the region assigned to your DVD drive does not match the region assigned to your DVD decoder."),
        0xC00D1169: ("NS_E_DVD_DISC_DECODER_REGION", "Windows Media Player cannot play the DVD because the disc prohibits playback in your region of the world. You must obtain a disc that is intended for your geographic region."),
        0xC00D116A: ("NS_E_DVD_NO_VIDEO_STREAM", "Windows Media Player cannot play DVD video. You might need to adjust your Windows display settings. Open display settings in Control Panel, and then try lowering your screen resolution and color quality settings."),
        0xC00D116B: ("NS_E_DVD_NO_AUDIO_STREAM", "Windows Media Player cannot play DVD audio. Verify that your sound card is set up correctly, and then try again."),
        0xC00D116C: ("NS_E_DVD_GRAPH_BUILDING", "Windows Media Player cannot play DVD video. Close any open files and quit any other programs, and then try again. If the problem persists, restart your computer."),
        0xC00D116D: ("NS_E_DVD_NO_DECODER", "Windows Media Player cannot play the DVD because a compatible DVD decoder is not installed on your computer."),
        0xC00D116E: ("NS_E_DVD_PARENTAL", "Windows Media Player cannot play the scene because it has a parental rating higher than the rating that you are authorized to view."),
        0xC00D116F: ("NS_E_DVD_CANNOT_JUMP", "Windows Media Player cannot skip to the requested location on the DVD."),
        0xC00D1170: ("NS_E_DVD_DEVICE_CONTENTION", "Windows Media Player cannot play the DVD because it is currently in use by another program. Quit the other program that is using the DVD, and then try again."),
        0xC00D1171: ("NS_E_DVD_NO_VIDEO_MEMORY", "Windows Media Player cannot play DVD video. You might need to adjust your Windows display settings. Open display settings in Control Panel, and then try lowering your screen resolution and color quality settings."),
        0xC00D1172: ("NS_E_DVD_CANNOT_COPY_PROTECTED", "Windows Media Player cannot rip the DVD because it is copy protected."),
        0xC00D1173: ("NS_E_DVD_REQUIRED_PROPERTY_NOT_SET", "One of more of the required properties has not been set."),
        0xC00D1174: ("NS_E_DVD_INVALID_TITLE_CHAPTER", "The specified title and/or chapter number does not exist on this DVD."),
        0xC00D1176: ("NS_E_NO_CD_BURNER", "Windows Media Player cannot burn the files because the Player cannot find a burner. If the burner is connected properly, try using Windows Update to install the latest device driver."),
        0xC00D1177: ("NS_E_DEVICE_IS_NOT_READY", "Windows Media Player does not detect storage media in the selected device. Insert storage media into the device, and then try again."),
        0xC00D1178: ("NS_E_PDA_UNSUPPORTED_FORMAT", "Windows Media Player cannot sync this file. The Player might not support the file type."),
        0xC00D1179: ("NS_E_NO_PDA", "Windows Media Player does not detect a portable device. Connect your portable device, and then try again."),
        0xC00D117A: ("NS_E_PDA_UNSPECIFIED_ERROR", "Windows Media Player encountered an error while communicating with the device. The storage card on the device might be full, the device might be turned off, or the device might not allow playlists or folders to be created on it."),
        0xC00D117B: ("NS_E_MEMSTORAGE_BAD_DATA", "Windows Media Player encountered an error while burning a CD."),
        0xC00D117C: ("NS_E_PDA_FAIL_SELECT_DEVICE", "Windows Media Player encountered an error while communicating with a portable device or CD drive."),
        0xC00D117D: ("NS_E_PDA_FAIL_READ_WAVE_FILE", "Windows Media Player cannot open the WAV file."),
        0xC00D117E: ("NS_E_IMAPI_LOSSOFSTREAMING", "Windows Media Player failed to burn all the files to the CD. Select a slower recording speed, and then try again."),
        0xC00D117F: ("NS_E_PDA_DEVICE_FULL", "There is not enough storage space on the portable device to complete this operation. Delete some unneeded files on the portable device, and then try again."),
        0xC00D1180: ("NS_E_FAIL_LAUNCH_ROXIO_PLUGIN", "Windows Media Player cannot burn the files. Verify that your burner is connected properly, and then try again. If the problem persists, reinstall the Player."),
        0xC00D1181: ("NS_E_PDA_DEVICE_FULL_IN_SESSION", "Windows Media Player did not sync some files to the device because there is not enough storage space on the device."),
        0xC00D1182: ("NS_E_IMAPI_MEDIUM_INVALIDTYPE", "The disc in the burner is not valid. Insert a blank disc into the burner, and then try again."),
        0xC00D1183: ("NS_E_PDA_MANUALDEVICE", "Windows Media Player cannot perform the requested action because the device does not support sync."),
        0xC00D1184: ("NS_E_PDA_PARTNERSHIPNOTEXIST", "To perform the requested action, you must first set up sync with the device."),
        0xC00D1185: ("NS_E_PDA_CANNOT_CREATE_ADDITIONAL_SYNC_RELATIONSHIP", "You have already created sync partnerships with 16 devices. To create a new sync partnership, you must first end an existing partnership."),
        0xC00D1186: ("NS_E_PDA_NO_TRANSCODE_OF_DRM", "Windows Media Player cannot sync the file because protected files cannot be converted to the required quality level or file format."),
        0xC00D1187: ("NS_E_PDA_TRANSCODECACHEFULL", "The folder that stores converted files is full. Either empty the folder or increase its size, and then try again."),
        0xC00D1188: ("NS_E_PDA_TOO_MANY_FILE_COLLISIONS", "There are too many files with the same name in the folder on the device. Change the file name or sync to a different folder."),
        0xC00D1189: ("NS_E_PDA_CANNOT_TRANSCODE", "Windows Media Player cannot convert the file to the format required by the device."),
        0xC00D118A: ("NS_E_PDA_TOO_MANY_FILES_IN_DIRECTORY", "You have reached the maximum number of files your device allows in a folder. If your device supports playback from subfolders, try creating subfolders on the device and storing some files in them."),
        0xC00D118B: ("NS_E_PROCESSINGSHOWSYNCWIZARD", "Windows Media Player is already trying to start the Device Setup Wizard."),
        0xC00D118C: ("NS_E_PDA_TRANSCODE_NOT_PERMITTED", "Windows Media Player cannot convert this file format. If an updated version of the codec used to compress this file is available, install it and then try to sync the file again."),
        0xC00D118D: ("NS_E_PDA_INITIALIZINGDEVICES", "Windows Media Player is busy setting up devices. Try again later."),
        0xC00D118E: ("NS_E_PDA_OBSOLETE_SP", "Your device is using an outdated driver that is no longer supported by Windows Media Player. For additional assistance, click Web Help."),
        0xC00D118F: ("NS_E_PDA_TITLE_COLLISION", "Windows Media Player cannot sync the file because a file with the same name already exists on the device. Change the file name or try to sync the file to a different folder."),
        0xC00D1190: ("NS_E_PDA_DEVICESUPPORTDISABLED", "Automatic and manual sync have been turned off temporarily. To sync to a device, restart Windows Media Player."),
        0xC00D1191: ("NS_E_PDA_NO_LONGER_AVAILABLE", "This device is not available. Connect the device to the computer, and then try again."),
        0xC00D1192: ("NS_E_PDA_ENCODER_NOT_RESPONDING", "Windows Media Player cannot sync the file because an error occurred while converting the file to another quality level or format. If the problem persists, remove the file from the list of files to sync."),
        0xC00D1193: ("NS_E_PDA_CANNOT_SYNC_FROM_LOCATION", "Windows Media Player cannot sync the file to your device. The file might be stored in a location that is not supported. Copy the file from its current location to your hard disk, add it to your library, and then try to sync the file again."),
        0xC00D1194: ("NS_E_WMP_PROTOCOL_PROBLEM", "Windows Media Player cannot open the specified URL. Verify that the Player is configured to use all available protocols, and then try again."),
        0xC00D1195: ("NS_E_WMP_NO_DISK_SPACE", "Windows Media Player cannot perform the requested action because there is not enough storage space on your computer. Delete some unneeded files on your hard disk, and then try again."),
        0xC00D1196: ("NS_E_WMP_LOGON_FAILURE", "The server denied access to the file. Verify that you are using the correct user name and password."),
        0xC00D1197: ("NS_E_WMP_CANNOT_FIND_FILE", "Windows Media Player cannot find the file. If you are trying to play, burn, or sync an item that is in your library, the item might point to a file that has been moved, renamed, or deleted."),
        0xC00D1198: ("NS_E_WMP_SERVER_INACCESSIBLE", "Windows Media Player cannot connect to the server. The server name might not be correct, the server might not be available, or your proxy settings might not be correct."),
        0xC00D1199: ("NS_E_WMP_UNSUPPORTED_FORMAT", "Windows Media Player cannot play the file. The Player might not support the file type or might not support the codec that was used to compress the file."),
        0xC00D119A: ("NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT", "Windows Media Player cannot play the file. The Player might not support the file type or a required codec might not be installed on your computer."),
        0xC00D119B: ("NS_E_WMP_PLAYLIST_EXISTS", "Windows Media Player cannot create the playlist because the name already exists. Type a different playlist name."),
        0xC00D119C: ("NS_E_WMP_NONMEDIA_FILES", "Windows Media Player cannot delete the playlist because it contains items that are not digital media files. Any digital media files in the playlist were deleted."),
        0xC00D119D: ("NS_E_WMP_INVALID_ASX", "The playlist cannot be opened because it is stored in a shared folder on another computer. If possible, move the playlist to the playlists folder on your computer."),
        0xC00D119E: ("NS_E_WMP_ALREADY_IN_USE", "Windows Media Player is already in use. Stop playing any items, close all Player dialog boxes, and then try again."),
        0xC00D119F: ("NS_E_WMP_IMAPI_FAILURE", "Windows Media Player encountered an error while burning. Verify that the burner is connected properly and that the disc is clean and not damaged."),
        0xC00D11A0: ("NS_E_WMP_WMDM_FAILURE", "Windows Media Player has encountered an unknown error with your portable device. Reconnect your portable device, and then try again."),
        0xC00D11A1: ("NS_E_WMP_CODEC_NEEDED_WITH_4CC", "A codec is required to play this file. To determine if this codec is available to download from the web, click Web Help."),
        0xC00D11A2: ("NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG", "An audio codec is needed to play this file. To determine if this codec is available to download from the web, click Web Help."),
        0xC00D11A3: ("NS_E_WMP_MSSAP_NOT_AVAILABLE", "To play the file, you must install the latest Windows service pack. To install the service pack from the Windows Update website, click Web Help."),
        0xC00D11A4: ("NS_E_WMP_WMDM_INTERFACEDEAD", "Windows Media Player no longer detects a portable device. Reconnect your portable device, and then try again."),
        0xC00D11A5: ("NS_E_WMP_WMDM_NOTCERTIFIED", "Windows Media Player cannot sync the file because the portable device does not support protected files."),
        0xC00D11A6: ("NS_E_WMP_WMDM_LICENSE_NOTEXIST", "This file does not have sync rights. If you obtained this file from an online store, go to the online store to get sync rights."),
        0xC00D11A7: ("NS_E_WMP_WMDM_LICENSE_EXPIRED", "Windows Media Player cannot sync the file because the sync rights have expired. Go to the content provider's online store to get new sync rights."),
        0xC00D11A8: ("NS_E_WMP_WMDM_BUSY", "The portable device is already in use. Wait until the current task finishes or quit other programs that might be using the portable device, and then try again."),
        0xC00D11A9: ("NS_E_WMP_WMDM_NORIGHTS", "Windows Media Player cannot sync the file because the content provider or device prohibits it. You might be able to resolve this problem by going to the content provider's online store to get sync rights."),
        0xC00D11AA: ("NS_E_WMP_WMDM_INCORRECT_RIGHTS", "The content provider has not granted you the right to sync this file. Go to the content provider's online store to get sync rights."),
        0xC00D11AB: ("NS_E_WMP_IMAPI_GENERIC", "Windows Media Player cannot burn the files to the CD. Verify that the disc is clean and not damaged. If necessary, select a slower recording speed or try a different brand of blank discs."),
        0xC00D11AD: ("NS_E_WMP_IMAPI_DEVICE_NOTPRESENT", "Windows Media Player cannot burn the files. Verify that the burner is connected properly, and then try again."),
        0xC00D11AE: ("NS_E_WMP_IMAPI_DEVICE_BUSY", "Windows Media Player cannot burn the files. Verify that the burner is connected properly and that the disc is clean and not damaged. If the burner is already in use, wait until the current task finishes or quit other programs that might be using the burner."),
        0xC00D11AF: ("NS_E_WMP_IMAPI_LOSS_OF_STREAMING", "Windows Media Player cannot burn the files to the CD."),
        0xC00D11B0: ("NS_E_WMP_SERVER_UNAVAILABLE", "Windows Media Player cannot play the file. The server might not be available or there might be a problem with your network or firewall settings."),
        0xC00D11B1: ("NS_E_WMP_FILE_OPEN_FAILED", "Windows Media Player encountered a problem while playing the file. For additional assistance, click Web Help."),
        0xC00D11B2: ("NS_E_WMP_VERIFY_ONLINE", "Windows Media Player must connect to the Internet to verify the file's media usage rights. Connect to the Internet, and then try again."),
        0xC00D11B3: ("NS_E_WMP_SERVER_NOT_RESPONDING", "Windows Media Player cannot play the file because a network error occurred. The server might not be available. Verify that you are connected to the network and that your proxy settings are correct."),
        0xC00D11B4: ("NS_E_WMP_DRM_CORRUPT_BACKUP", "Windows Media Player cannot restore your media usage rights because it could not find any backed up rights on your computer."),
        0xC00D11B5: ("NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE", "Windows Media Player cannot download media usage rights because the server is not available (for example, the server might be busy or not online)."),
        0xC00D11B6: ("NS_E_WMP_NETWORK_FIREWALL", "Windows Media Player cannot play the file. A network firewall might be preventing the Player from opening the file by using the UDP transport protocol. If you typed a URL in the Open URL dialog box, try using a different transport protocol (for example, \"http:\")."),
        0xC00D11B7: ("NS_E_WMP_NO_REMOVABLE_MEDIA", "Insert the removable media, and then try again."),
        0xC00D11B8: ("NS_E_WMP_PROXY_CONNECT_TIMEOUT", "Windows Media Player cannot play the file because the proxy server is not responding. The proxy server might be temporarily unavailable or your Player proxy settings might not be valid."),
        0xC00D11B9: ("NS_E_WMP_NEED_UPGRADE", "To play the file, you might need to install a later version of Windows Media Player. On the Help menu, click Check for Updates, and then follow the instructions. For additional assistance, click Web Help."),
        0xC00D11BA: ("NS_E_WMP_AUDIO_HW_PROBLEM", "Windows Media Player cannot play the file because there is a problem with your sound device. There might not be a sound device installed on your computer, it might be in use by another program, or it might not be functioning properly."),
        0xC00D11BB: ("NS_E_WMP_INVALID_PROTOCOL", "Windows Media Player cannot play the file because the specified protocol is not supported. If you typed a URL in the Open URL dialog box, try using a different transport protocol (for example, \"http:\" or \"rtsp:\")."),
        0xC00D11BC: ("NS_E_WMP_INVALID_LIBRARY_ADD", "Windows Media Player cannot add the file to the library because the file format is not supported."),
        0xC00D11BD: ("NS_E_WMP_MMS_NOT_SUPPORTED", "Windows Media Player cannot play the file because the specified protocol is not supported. If you typed a URL in the Open URL dialog box, try using a different transport protocol (for example, \"mms:\")."),
        0xC00D11BE: ("NS_E_WMP_NO_PROTOCOLS_SELECTED", "Windows Media Player cannot play the file because there are no streaming protocols selected. Select one or more protocols, and then try again."),
        0xC00D11BF: ("NS_E_WMP_GOFULLSCREEN_FAILED", "Windows Media Player cannot switch to Full Screen. You might need to adjust your Windows display settings. Open display settings in Control Panel, and then try setting Hardware acceleration to Full."),
        0xC00D11C0: ("NS_E_WMP_NETWORK_ERROR", "Windows Media Player cannot play the file because a network error occurred. The server might not be available (for example, the server is busy or not online) or you might not be connected to the network."),
        0xC00D11C1: ("NS_E_WMP_CONNECT_TIMEOUT", "Windows Media Player cannot play the file because the server is not responding. Verify that you are connected to the network, and then try again later."),
        0xC00D11C2: ("NS_E_WMP_MULTICAST_DISABLED", "Windows Media Player cannot play the file because the multicast protocol is not enabled. On the Tools menu, click Options, click the Network tab, and then select the Multicast check box. For additional assistance, click Web Help."),
        0xC00D11C3: ("NS_E_WMP_SERVER_DNS_TIMEOUT", "Windows Media Player cannot play the file because a network problem occurred. Verify that you are connected to the network, and then try again later."),
        0xC00D11C4: ("NS_E_WMP_PROXY_NOT_FOUND", "Windows Media Player cannot play the file because the network proxy server cannot be found. Verify that your proxy settings are correct, and then try again."),
        0xC00D11C5: ("NS_E_WMP_TAMPERED_CONTENT", "Windows Media Player cannot play the file because it is corrupted."),
        0xC00D11C6: ("NS_E_WMP_OUTOFMEMORY", "Your computer is running low on memory. Quit other programs, and then try again."),
        0xC00D11C7: ("NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED", "Windows Media Player cannot play, burn, rip, or sync the file because a required audio codec is not installed on your computer."),
        0xC00D11C8: ("NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED", "Windows Media Player cannot play the file because the required video codec is not installed on your computer."),
        0xC00D11C9: ("NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE", "Windows Media Player cannot burn the files. If the burner is busy, wait for the current task to finish. If necessary, verify that the burner is connected properly and that you have installed the latest device driver."),
        0xC00D11CA: ("NS_E_WMP_DRM_DRIVER_AUTH_FAILURE", "Windows Media Player cannot play the protected file because there is a problem with your sound device. Try installing a new device driver or use a different sound device."),
        0xC00D11CB: ("NS_E_WMP_NETWORK_RESOURCE_FAILURE", "Windows Media Player encountered a network error. Restart the Player."),
        0xC00D11CC: ("NS_E_WMP_UPGRADE_APPLICATION", "Windows Media Player is not installed properly. Reinstall the Player."),
        0xC00D11CD: ("NS_E_WMP_UNKNOWN_ERROR", "Windows Media Player encountered an unknown error. For additional assistance, click Web Help."),
        0xC00D11CE: ("NS_E_WMP_INVALID_KEY", "Windows Media Player cannot play the file because the required codec is not valid."),
        0xC00D11CF: ("NS_E_WMP_CD_ANOTHER_USER", "The CD drive is in use by another user. Wait for the task to complete, and then try again."),
        0xC00D11D0: ("NS_E_WMP_DRM_NEEDS_AUTHORIZATION", "Windows Media Player cannot play, sync, or burn the protected file because a problem occurred with the Windows Media Digital Rights Management (DRM) system. You might need to connect to the Internet to update your DRM components. For additional assistance, click Web Help."),
        0xC00D11D1: ("NS_E_WMP_BAD_DRIVER", "Windows Media Player cannot play the file because there might be a problem with your sound or video device. Try installing an updated device driver."),
        0xC00D11D2: ("NS_E_WMP_ACCESS_DENIED", "Windows Media Player cannot access the file. The file might be in use, you might not have access to the computer where the file is stored, or your proxy settings might not be correct."),
        0xC00D11D3: ("NS_E_WMP_LICENSE_RESTRICTS", "The content provider prohibits this action. Go to the content provider's online store to get new media usage rights."),
        0xC00D11D4: ("NS_E_WMP_INVALID_REQUEST", "Windows Media Player cannot perform the requested action at this time."),
        0xC00D11D5: ("NS_E_WMP_CD_STASH_NO_SPACE", "Windows Media Player cannot burn the files because there is not enough free disk space to store the temporary files. Delete some unneeded files on your hard disk, and then try again."),
        0xC00D11D6: ("NS_E_WMP_DRM_NEW_HARDWARE", "Your media usage rights have become corrupted or are no longer valid. This might happen if you have replaced hardware components in your computer."),
        0xC00D11D7: ("NS_E_WMP_DRM_INVALID_SIG", "The required Windows Media Digital Rights Management (DRM) component cannot be validated. You might be able resolve the problem by reinstalling the Player."),
        0xC00D11D8: ("NS_E_WMP_DRM_CANNOT_RESTORE", "You have exceeded your restore limit for the day. Try restoring your media usage rights tomorrow."),
        0xC00D11D9: ("NS_E_WMP_BURN_DISC_OVERFLOW", "Some files might not fit on the CD. The required space cannot be calculated accurately because some files might be missing duration information. To ensure the calculation is accurate, play the files that are missing duration information."),
        0xC00D11DA: ("NS_E_WMP_DRM_GENERIC_LICENSE_FAILURE", "Windows Media Player cannot verify the file's media usage rights. If you obtained this file from an online store, go to the online store to get the necessary rights."),
        0xC00D11DB: ("NS_E_WMP_DRM_NO_SECURE_CLOCK", "It is not possible to sync because this device's internal clock is not set correctly. To set the clock, select the option to set the device clock on the Privacy tab of the Options dialog box, connect to the Internet, and then sync the device again. For additional assistance, click Web Help."),
        0xC00D11DC: ("NS_E_WMP_DRM_NO_RIGHTS", "Windows Media Player cannot play, burn, rip, or sync the protected file because you do not have the appropriate rights."),
        0xC00D11DD: ("NS_E_WMP_DRM_INDIV_FAILED", "Windows Media Player encountered an error during upgrade."),
        0xC00D11DE: ("NS_E_WMP_SERVER_NONEWCONNECTIONS", "Windows Media Player cannot connect to the server because it is not accepting any new connections. This could be because it has reached its maximum connection limit. Please try again later."),
        0xC00D11DF: ("NS_E_WMP_MULTIPLE_ERROR_IN_PLAYLIST", "A number of queued files cannot be played. To find information about the problem, click the Now Playing tab, and then click the icon next to each file in the List pane."),
        0xC00D11E0: ("NS_E_WMP_IMAPI2_ERASE_FAIL", "Windows Media Player encountered an error while erasing the rewritable CD or DVD. Verify that the CD or DVD burner is connected properly and that the disc is clean and not damaged."),
        0xC00D11E1: ("NS_E_WMP_IMAPI2_ERASE_DEVICE_BUSY", "Windows Media Player cannot erase the rewritable CD or DVD. Verify that the CD or DVD burner is connected properly and that the disc is clean and not damaged. If the burner is already in use, wait until the current task finishes or quit other programs that might be using the burner."),
        0xC00D11E2: ("NS_E_WMP_DRM_COMPONENT_FAILURE", "A Windows Media Digital Rights Management (DRM) component encountered a problem. If you are trying to use a file that you obtained from an online store, try going to the online store and getting the appropriate usage rights."),
        0xC00D11E3: ("NS_E_WMP_DRM_NO_DEVICE_CERT", "It is not possible to obtain device's certificate. Please contact the device manufacturer for a firmware update or for other steps to resolve this problem."),
        0xC00D11E4: ("NS_E_WMP_SERVER_SECURITY_ERROR", "Windows Media Player encountered an error when connecting to the server. The security information from the server could not be validated."),
        0xC00D11E5: ("NS_E_WMP_AUDIO_DEVICE_LOST", "An audio device was disconnected or reconfigured. Verify that the audio device is connected, and then try to play the item again."),
        0xC00D11E6: ("NS_E_WMP_IMAPI_MEDIA_INCOMPATIBLE", "Windows Media Player could not complete burning because the disc is not compatible with your drive. Try inserting a different kind of recordable media or use a disc that supports a write speed that is compatible with your drive."),
        0xC00D11EE: ("NS_E_SYNCWIZ_DEVICE_FULL", "Windows Media Player cannot save the sync settings because your device is full. Delete some unneeded files on your device and then try again."),
        0xC00D11EF: ("NS_E_SYNCWIZ_CANNOT_CHANGE_SETTINGS", "It is not possible to change sync settings at this time. Try again later."),
        0xC00D11F0: ("NS_E_TRANSCODE_DELETECACHEERROR", "Windows Media Player cannot delete these files currently. If the Player is synchronizing, wait until it is complete and then try again."),
        0xC00D11F8: ("NS_E_CD_NO_BUFFERS_READ", "Windows Media Player could not use digital mode to read the CD. The Player has automatically switched the CD drive to analog mode. To switch back to digital mode, use the Devices tab. For additional assistance, click Web Help."),
        0xC00D11F9: ("NS_E_CD_EMPTY_TRACK_QUEUE", "No CD track was specified for playback."),
        0xC00D11FA: ("NS_E_CD_NO_READER", "The CD filter was not able to create the CD reader."),
        0xC00D11FB: ("NS_E_CD_ISRC_INVALID", "Invalid ISRC code."),
        0xC00D11FC: ("NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID", "Invalid Media Catalog Number."),
        0xC00D11FD: ("NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION", "Windows Media Player cannot play audio CDs correctly because the CD drive is slow and error correction is turned on. To increase performance, turn off playback error correction for this drive."),
        0xC00D11FE: ("NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS", "Windows Media Player cannot estimate the CD drive's playback speed because the CD track is too short."),
        0xC00D11FF: ("NS_E_CD_QUEUEING_DISABLED", "Cannot queue the CD track because queuing is not enabled."),
        0xC00D1202: ("NS_E_WMP_DRM_ACQUIRING_LICENSE", "Windows Media Player cannot download additional media usage rights until the current download is complete."),
        0xC00D1203: ("NS_E_WMP_DRM_LICENSE_EXPIRED", "The media usage rights for this file have expired or are no longer valid. If you obtained the file from an online store, sign in to the store, and then try again."),
        0xC00D1204: ("NS_E_WMP_DRM_LICENSE_NOTACQUIRED", "Windows Media Player cannot download the media usage rights for the file. If you obtained the file from an online store, sign in to the store, and then try again."),
        0xC00D1205: ("NS_E_WMP_DRM_LICENSE_NOTENABLED", "The media usage rights for this file are not yet valid. To see when they will become valid, right-click the file in the library, click Properties, and then click the Media Usage Rights tab."),
        0xC00D1206: ("NS_E_WMP_DRM_LICENSE_UNUSABLE", "The media usage rights for this file are not valid. If you obtained this file from an online store, contact the store for assistance."),
        0xC00D1207: ("NS_E_WMP_DRM_LICENSE_CONTENT_REVOKED", "The content provider has revoked the media usage rights for this file. If you obtained this file from an online store, ask the store if a new version of the file is available."),
        0xC00D1208: ("NS_E_WMP_DRM_LICENSE_NOSAP", "The media usage rights for this file require a feature that is not supported in your current version of Windows Media Player or your current version of Windows. Try installing the latest version of the Player. If you obtained this file from an online store, contact the store for further assistance."),
        0xC00D1209: ("NS_E_WMP_DRM_UNABLE_TO_ACQUIRE_LICENSE", "Windows Media Player cannot download media usage rights at this time. Try again later."),
        0xC00D120A: ("NS_E_WMP_LICENSE_REQUIRED", "Windows Media Player cannot play, burn, or sync the file because the media usage rights are missing. If you obtained the file from an online store, sign in to the store, and then try again."),
        0xC00D120B: ("NS_E_WMP_PROTECTED_CONTENT", "Windows Media Player cannot play, burn, or sync the file because the media usage rights are missing. If you obtained the file from an online store, sign in to the store, and then try again."),
        0xC00D122A: ("NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED", "Windows Media Player cannot read a policy. This can occur when the policy does not exist in the registry or when the registry cannot be read."),
        0xC00D1234: ("NS_E_PDA_CANNOT_SYNC_FROM_INTERNET", "Windows Media Player cannot sync content streamed directly from the Internet. If possible, download the file to your computer, and then try to sync the file."),
        0xC00D1235: ("NS_E_PDA_CANNOT_SYNC_INVALID_PLAYLIST", "This playlist is not valid or is corrupted. Create a new playlist using Windows Media Player, then sync the new playlist instead."),
        0xC00D1236: ("NS_E_PDA_FAILED_TO_SYNCHRONIZE_FILE", "Windows Media Player encountered a problem while synchronizing the file to the device. For additional assistance, click Web Help."),
        0xC00D1237: ("NS_E_PDA_SYNC_FAILED", "Windows Media Player encountered an error while synchronizing to the device."),
        0xC00D1238: ("NS_E_PDA_DELETE_FAILED", "Windows Media Player cannot delete a file from the device."),
        0xC00D1239: ("NS_E_PDA_FAILED_TO_RETRIEVE_FILE", "Windows Media Player cannot copy a file from the device to your library."),
        0xC00D123A: ("NS_E_PDA_DEVICE_NOT_RESPONDING", "Windows Media Player cannot communicate with the device because the device is not responding. Try reconnecting the device, resetting the device, or contacting the device manufacturer for updated firmware."),
        0xC00D123B: ("NS_E_PDA_FAILED_TO_TRANSCODE_PHOTO", "Windows Media Player cannot sync the picture to the device because a problem occurred while converting the file to another quality level or format. The original file might be damaged or corrupted."),
        0xC00D123C: ("NS_E_PDA_FAILED_TO_ENCRYPT_TRANSCODED_FILE", "Windows Media Player cannot convert the file. The file might have been encrypted by the Encrypted File System (EFS). Try decrypting the file first and then synchronizing it. For information about how to decrypt a file, see Windows Help and Support."),
        0xC00D123D: ("NS_E_PDA_CANNOT_TRANSCODE_TO_AUDIO", "Your device requires that this file be converted in order to play on the device. However, the device either does not support playing audio, or Windows Media Player cannot convert the file to an audio format that is supported by the device."),
        0xC00D123E: ("NS_E_PDA_CANNOT_TRANSCODE_TO_VIDEO", "Your device requires that this file be converted in order to play on the device. However, the device either does not support playing video, or Windows Media Player cannot convert the file to a video format that is supported by the device."),
        0xC00D123F: ("NS_E_PDA_CANNOT_TRANSCODE_TO_IMAGE", "Your device requires that this file be converted in order to play on the device. However, the device either does not support displaying pictures, or Windows Media Player cannot convert the file to a picture format that is supported by the device."),
        0xC00D1240: ("NS_E_PDA_RETRIEVED_FILE_FILENAME_TOO_LONG", "Windows Media Player cannot sync the file to your computer because the file name is too long. Try renaming the file on the device."),
        0xC00D1241: ("NS_E_PDA_CEWMDM_DRM_ERROR", "Windows Media Player cannot sync the file because the device is not responding. This typically occurs when there is a problem with the device firmware. For additional assistance, click Web Help."),
        0xC00D1242: ("NS_E_INCOMPLETE_PLAYLIST", "Incomplete playlist."),
        0xC00D1243: ("NS_E_PDA_SYNC_RUNNING", "It is not possible to perform the requested action because sync is in progress. You can either stop sync or wait for it to complete, and then try again."),
        0xC00D1244: ("NS_E_PDA_SYNC_LOGIN_ERROR", "Windows Media Player cannot sync the subscription content because you are not signed in to the online store that provided it. Sign in to the online store, and then try again."),
        0xC00D1245: ("NS_E_PDA_TRANSCODE_CODEC_NOT_FOUND", "Windows Media Player cannot convert the file to the format required by the device. One or more codecs required to convert the file could not be found."),
        0xC00D1246: ("NS_E_CANNOT_SYNC_DRM_TO_NON_JANUS_DEVICE", "It is not possible to sync subscription files to this device."),
        0xC00D1247: ("NS_E_CANNOT_SYNC_PREVIOUS_SYNC_RUNNING", "Your device is operating slowly or is not responding. Until the device responds, it is not possible to sync again. To return the device to normal operation, try disconnecting it from the computer or resetting it."),
        0xC00D125C: ("NS_E_WMP_HWND_NOTFOUND", "The Windows Media Player download manager cannot function properly because the Player main window cannot be found. Try restarting the Player."),
        0xC00D125D: ("NS_E_BKGDOWNLOAD_WRONG_NO_FILES", "Windows Media Player encountered a download that has the wrong number of files. This might occur if another program is trying to create jobs with the same signature as the Player."),
        0xC00D125E: ("NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB", "Windows Media Player tried to complete a download that was already canceled. The file will not be available."),
        0xC00D125F: ("NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB", "Windows Media Player tried to cancel a download that was already completed. The file will not be removed."),
        0xC00D1260: ("NS_E_BKGDOWNLOAD_NOJOBPOINTER", "Windows Media Player is trying to access a download that is not valid."),
        0xC00D1261: ("NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE", "This download was not created by Windows Media Player."),
        0xC00D1262: ("NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE", "The Windows Media Player download manager cannot create a temporary file name. This might occur if the path is not valid or if the disk is full."),
        0xC00D1263: ("NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE", "The Windows Media Player download manager plug-in cannot start. This might occur if the system is out of resources."),
        0xC00D1264: ("NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE", "The Windows Media Player download manager cannot move the file."),
        0xC00D1265: ("NS_E_BKGDOWNLOAD_CALLFUNCFAILED", "The Windows Media Player download manager cannot perform a task because the system has no resources to allocate."),
        0xC00D1266: ("NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT", "The Windows Media Player download manager cannot perform a task because the task took too long to run."),
        0xC00D1267: ("NS_E_BKGDOWNLOAD_CALLFUNCENDED", "The Windows Media Player download manager cannot perform a task because the Player is terminating the service. The task will be recovered when the Player restarts."),
        0xC00D1268: ("NS_E_BKGDOWNLOAD_WMDUNPACKFAILED", "The Windows Media Player download manager cannot expand a WMD file. The file will be deleted and the operation will not be completed successfully."),
        0xC00D1269: ("NS_E_BKGDOWNLOAD_FAILEDINITIALIZE", "The Windows Media Player download manager cannot start. This might occur if the system is out of resources."),
        0xC00D126A: ("NS_E_INTERFACE_NOT_REGISTERED_IN_GIT", "Windows Media Player cannot access a required functionality. This might occur if the wrong system files or Player DLLs are loaded."),
        0xC00D126B: ("NS_E_BKGDOWNLOAD_INVALID_FILE_NAME", "Windows Media Player cannot get the file name of the requested download. The requested download will be canceled."),
        0xC00D128E: ("NS_E_IMAGE_DOWNLOAD_FAILED", "Windows Media Player encountered an error while downloading an image."),
        0xC00D12C0: ("NS_E_WMP_UDRM_NOUSERLIST", "Windows Media Player cannot update your media usage rights because the Player cannot verify the list of activated users of this computer."),
        0xC00D12C1: ("NS_E_WMP_DRM_NOT_ACQUIRING", "Windows Media Player is trying to acquire media usage rights for a file that is no longer being used. Rights acquisition will stop."),
        0xC00D12F2: ("NS_E_WMP_BSTR_TOO_LONG", "The parameter is not valid."),
        0xC00D12FC: ("NS_E_WMP_AUTOPLAY_INVALID_STATE", "The state is not valid for this request."),
        0xC00D1306: ("NS_E_WMP_COMPONENT_REVOKED", "Windows Media Player cannot play this file until you complete the software component upgrade. After the component has been upgraded, try to play the file again."),
        0xC00D1324: ("NS_E_CURL_NOTSAFE", "The URL is not safe for the operation specified."),
        0xC00D1325: ("NS_E_CURL_INVALIDCHAR", "The URL contains one or more characters that are not valid."),
        0xC00D1326: ("NS_E_CURL_INVALIDHOSTNAME", "The URL contains a host name that is not valid."),
        0xC00D1327: ("NS_E_CURL_INVALIDPATH", "The URL contains a path that is not valid."),
        0xC00D1328: ("NS_E_CURL_INVALIDSCHEME", "The URL contains a scheme that is not valid."),
        0xC00D1329: ("NS_E_CURL_INVALIDURL", "The URL is not valid."),
        0xC00D132B: ("NS_E_CURL_CANTWALK", "Windows Media Player cannot play the file. If you clicked a link on a web page, the link might not be valid."),
        0xC00D132C: ("NS_E_CURL_INVALIDPORT", "The URL port is not valid."),
        0xC00D132D: ("NS_E_CURLHELPER_NOTADIRECTORY", "The URL is not a directory."),
        0xC00D132E: ("NS_E_CURLHELPER_NOTAFILE", "The URL is not a file."),
        0xC00D132F: ("NS_E_CURL_CANTDECODE", "The URL contains characters that cannot be decoded. The URL might be truncated or incomplete."),
        0xC00D1330: ("NS_E_CURLHELPER_NOTRELATIVE", "The specified URL is not a relative URL."),
        0xC00D1331: ("NS_E_CURL_INVALIDBUFFERSIZE", "The buffer is smaller than the size specified."),
        0xC00D1356: ("NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED", "The content provider has not granted you the right to play this file. Go to the content provider's online store to get play rights."),
        0xC00D1357: ("NS_E_CANNOT_BUY_OR_DOWNLOAD_FROM_MULTIPLE_SERVICES", "Windows Media Player cannot purchase or download content from multiple online stores."),
        0xC00D1358: ("NS_E_CANNOT_BUY_OR_DOWNLOAD_CONTENT", "The file cannot be purchased or downloaded. The file might not be available from the online store."),
        0xC00D135A: ("NS_E_NOT_CONTENT_PARTNER_TRACK", "The provider of this file cannot be identified."),
        0xC00D135B: ("NS_E_TRACK_DOWNLOAD_REQUIRES_ALBUM_PURCHASE", "The file is only available for download when you buy the entire album."),
        0xC00D135C: ("NS_E_TRACK_DOWNLOAD_REQUIRES_PURCHASE", "You must buy the file before you can download it."),
        0xC00D135D: ("NS_E_TRACK_PURCHASE_MAXIMUM_EXCEEDED", "You have exceeded the maximum number of files that can be purchased in a single transaction."),
        0xC00D135F: ("NS_E_SUBSCRIPTIONSERVICE_LOGIN_FAILED", "Windows Media Player cannot sign in to the online store. Verify that you are using the correct user name and password. If the problem persists, the store may be temporarily unavailable."),
        0xC00D1360: ("NS_E_SUBSCRIPTIONSERVICE_DOWNLOAD_TIMEOUT", "Windows Media Player cannot download this item because the server is not responding. The server might be temporarily unavailable or you may have lost your Internet connection."),
        0xC00D1362: ("NS_E_CONTENT_PARTNER_STILL_INITIALIZING", "Content Partner still initializing."),
        0xC00D1363: ("NS_E_OPEN_CONTAINING_FOLDER_FAILED", "The folder could not be opened. The folder may have been moved or deleted."),
        0xC00D136A: ("NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES", "Windows Media Player could not add all of the images to the file because the images exceeded the 7 megabyte (MB) limit."),
        0xC00D1388: ("NS_E_REDIRECT", "The client redirected to another server."),
        0xC00D1389: ("NS_E_STALE_PRESENTATION", "The streaming media description is no longer current."),
        0xC00D138A: ("NS_E_NAMESPACE_WRONG_PERSIST", "It is not possible to create a persistent namespace node under a transient parent node."),
        0xC00D138B: ("NS_E_NAMESPACE_WRONG_TYPE", "It is not possible to store a value in a namespace node that has a different value type."),
        0xC00D138C: ("NS_E_NAMESPACE_NODE_CONFLICT", "It is not possible to remove the root namespace node."),
        0xC00D138D: ("NS_E_NAMESPACE_NODE_NOT_FOUND", "The specified namespace node could not be found."),
        0xC00D138E: ("NS_E_NAMESPACE_BUFFER_TOO_SMALL", "The buffer supplied to hold namespace node string is too small."),
        0xC00D138F: ("NS_E_NAMESPACE_TOO_MANY_CALLBACKS", "The callback list on a namespace node is at the maximum size."),
        0xC00D1390: ("NS_E_NAMESPACE_DUPLICATE_CALLBACK", "It is not possible to register an already-registered callback on a namespace node."),
        0xC00D1391: ("NS_E_NAMESPACE_CALLBACK_NOT_FOUND", "Cannot find the callback in the namespace when attempting to remove the callback."),
        0xC00D1392: ("NS_E_NAMESPACE_NAME_TOO_LONG", "The namespace node name exceeds the allowed maximum length."),
        0xC00D1393: ("NS_E_NAMESPACE_DUPLICATE_NAME", "Cannot create a namespace node that already exists."),
        0xC00D1394: ("NS_E_NAMESPACE_EMPTY_NAME", "The namespace node name cannot be a null string."),
        0xC00D1395: ("NS_E_NAMESPACE_INDEX_TOO_LARGE", "Finding a child namespace node by index failed because the index exceeded the number of children."),
        0xC00D1396: ("NS_E_NAMESPACE_BAD_NAME", "The namespace node name is invalid."),
        0xC00D1397: ("NS_E_NAMESPACE_WRONG_SECURITY", "It is not possible to store a value in a namespace node that has a different security type."),
        0xC00D13EC: ("NS_E_CACHE_ARCHIVE_CONFLICT", "The archive request conflicts with other requests in progress."),
        0xC00D13ED: ("NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND", "The specified origin server cannot be found."),
        0xC00D13EE: ("NS_E_CACHE_ORIGIN_SERVER_TIMEOUT", "The specified origin server is not responding."),
        0xC00D13EF: ("NS_E_CACHE_NOT_BROADCAST", "The internal code for HTTP status code 412 Precondition Failed due to not broadcast type."),
        0xC00D13F0: ("NS_E_CACHE_CANNOT_BE_CACHED", "The internal code for HTTP status code 403 Forbidden due to not cacheable."),
        0xC00D13F1: ("NS_E_CACHE_NOT_MODIFIED", "The internal code for HTTP status code 304 Not Modified."),
        0xC00D1450: ("NS_E_CANNOT_REMOVE_PUBLISHING_POINT", "It is not possible to remove a cache or proxy publishing point."),
        0xC00D1451: ("NS_E_CANNOT_REMOVE_PLUGIN", "It is not possible to remove the last instance of a type of plug-in."),
        0xC00D1452: ("NS_E_WRONG_PUBLISHING_POINT_TYPE", "Cache and proxy publishing points do not support this property or method."),
        0xC00D1453: ("NS_E_UNSUPPORTED_LOAD_TYPE", "The plug-in does not support the specified load type."),
        0xC00D1454: ("NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION", "The plug-in does not support any load types. The plug-in must support at least one load type."),
        0xC00D1455: ("NS_E_INVALID_PUBLISHING_POINT_NAME", "The publishing point name is invalid."),
        0xC00D1456: ("NS_E_TOO_MANY_MULTICAST_SINKS", "Only one multicast data writer plug-in can be enabled for a publishing point."),
        0xC00D1457: ("NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED", "The requested operation cannot be completed while the publishing point is started."),
        0xC00D1458: ("NS_E_MULTICAST_PLUGIN_NOT_ENABLED", "A multicast data writer plug-in must be enabled in order for this operation to be completed."),
        0xC00D1459: ("NS_E_INVALID_OPERATING_SYSTEM_VERSION", "This feature requires Windows Server 2003, Enterprise Edition."),
        0xC00D145A: ("NS_E_PUBLISHING_POINT_REMOVED", "The requested operation cannot be completed because the specified publishing point has been removed."),
        0xC00D145B: ("NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST", "Push publishing points are started when the encoder starts pushing the stream. This publishing point cannot be started by the server administrator."),
        0xC00D145C: ("NS_E_UNSUPPORTED_LANGUAGE", "The specified language is not supported."),
        0xC00D145D: ("NS_E_WRONG_OS_VERSION", "Windows Media Services will only run on Windows Server 2003, Standard Edition and Windows Server 2003, Enterprise Edition."),
        0xC00D145E: ("NS_E_PUBLISHING_POINT_STOPPED", "The operation cannot be completed because the publishing point has been stopped."),
        0xC00D14B4: ("NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING", "The playlist entry is already playing."),
        0xC00D14B5: ("NS_E_EMPTY_PLAYLIST", "The playlist or directory you are requesting does not contain content."),
        0xC00D14B6: ("NS_E_PLAYLIST_PARSE_FAILURE", "The server was unable to parse the requested playlist file."),
        0xC00D14B7: ("NS_E_PLAYLIST_UNSUPPORTED_ENTRY", "The requested operation is not supported for this type of playlist entry."),
        0xC00D14B8: ("NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST", "Cannot jump to a playlist entry that is not inserted in the playlist."),
        0xC00D14B9: ("NS_E_PLAYLIST_ENTRY_SEEK", "Cannot seek to the desired playlist entry."),
        0xC00D14BA: ("NS_E_PLAYLIST_RECURSIVE_PLAYLISTS", "Cannot play recursive playlist."),
        0xC00D14BB: ("NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS", "The number of nested playlists exceeded the limit the server can handle."),
        0xC00D14BC: ("NS_E_PLAYLIST_SHUTDOWN", "Cannot execute the requested operation because the playlist has been shut down by the Media Server."),
        0xC00D14BD: ("NS_E_PLAYLIST_END_RECEDING", "The playlist has ended while receding."),
        0xC00D1518: ("NS_E_DATAPATH_NO_SINK", "The data path does not have an associated data writer plug-in."),
        0xC00D151A: ("NS_E_INVALID_PUSH_TEMPLATE", "The specified push template is invalid."),
        0xC00D151B: ("NS_E_INVALID_PUSH_PUBLISHING_POINT", "The specified push publishing point is invalid."),
        0xC00D151C: ("NS_E_CRITICAL_ERROR", "The requested operation cannot be performed because the server or publishing point is in a critical error state."),
        0xC00D151D: ("NS_E_NO_NEW_CONNECTIONS", "The content cannot be played because the server is not currently accepting connections. Try connecting at a later time."),
        0xC00D151E: ("NS_E_WSX_INVALID_VERSION", "The version of this playlist is not supported by the server."),
        0xC00D151F: ("NS_E_HEADER_MISMATCH", "The command does not apply to the current media header user by a server component."),
        0xC00D1520: ("NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME", "The specified publishing point name is already in use."),
        0xC00D157C: ("NS_E_NO_SCRIPT_ENGINE", "There is no script engine available for this file."),
        0xC00D157D: ("NS_E_PLUGIN_ERROR_REPORTED", "The plug-in has reported an error. See the Troubleshooting tab or the NT Application Event Log for details."),
        0xC00D157E: ("NS_E_SOURCE_PLUGIN_NOT_FOUND", "No enabled data source plug-in is available to access the requested content."),
        0xC00D157F: ("NS_E_PLAYLIST_PLUGIN_NOT_FOUND", "No enabled playlist parser plug-in is available to access the requested content."),
        0xC00D1580: ("NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED", "The data source plug-in does not support enumeration."),
        0xC00D1581: ("NS_E_MEDIA_PARSER_INVALID_FORMAT", "The server cannot stream the selected file because it is either damaged or corrupt. Select a different file."),
        0xC00D1582: ("NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED", "The plug-in cannot be enabled because a compatible script debugger is not installed on this system. Install a script debugger, or disable the script debugger option on the general tab of the plug-in's properties page and try again."),
        0xC00D1583: ("NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER", "The plug-in cannot be loaded because it requires Windows Server 2003, Enterprise Edition."),
        0xC00D1584: ("NS_E_WIZARD_RUNNING", "Another wizard is currently running. Please close the other wizard or wait until it finishes before attempting to run this wizard again."),
        0xC00D1585: ("NS_E_INVALID_LOG_URL", "Invalid log URL. Multicast logging URL must look like \"http://servername/isapibackend.dll\"."),
        0xC00D1586: ("NS_E_INVALID_MTU_RANGE", "Invalid MTU specified. The valid range for maximum packet size is between 36 and 65507 bytes."),
        0xC00D1587: ("NS_E_INVALID_PLAY_STATISTICS", "Invalid play statistics for logging."),
        0xC00D1588: ("NS_E_LOG_NEED_TO_BE_SKIPPED", "The log needs to be skipped."),
        0xC00D1589: ("NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED", "The size of the data exceeded the limit the WMS HTTP Download Data Source plugin can handle."),
        0xC00D158A: ("NS_E_PORT_IN_USE", "One usage of each socket address (protocol/network address/port) is permitted. Verify that other services or applications are not attempting to use the same port and then try to enable the plug-in again."),
        0xC00D158B: ("NS_E_PORT_IN_USE_HTTP", "One usage of each socket address (protocol/network address/port) is permitted. Verify that other services (such as IIS) or applications are not attempting to use the same port and then try to enable the plug-in again."),
        0xC00D158C: ("NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE", "The WMS HTTP Download Data Source plugin was unable to receive the remote server's response."),
        0xC00D158D: ("NS_E_ARCHIVE_REACH_QUOTA", "The archive plug-in has reached its quota."),
        0xC00D158E: ("NS_E_ARCHIVE_ABORT_DUE_TO_BCAST", "The archive plug-in aborted because the source was from broadcast."),
        0xC00D158F: ("NS_E_ARCHIVE_GAP_DETECTED", "The archive plug-in detected an interrupt in the source."),
        0xC00D1590: ("NS_E_AUTHORIZATION_FILE_NOT_FOUND", "The system cannot find the file specified."),
        0xC00D1B58: ("NS_E_BAD_MARKIN", "The mark-in time should be greater than 0 and less than the mark-out time."),
        0xC00D1B59: ("NS_E_BAD_MARKOUT", "The mark-out time should be greater than the mark-in time and less than the file duration."),
        0xC00D1B5A: ("NS_E_NOMATCHING_MEDIASOURCE", "No matching media type is found in the source %1."),
        0xC00D1B5B: ("NS_E_UNSUPPORTED_SOURCETYPE", "The specified source type is not supported."),
        0xC00D1B5C: ("NS_E_TOO_MANY_AUDIO", "It is not possible to specify more than one audio input."),
        0xC00D1B5D: ("NS_E_TOO_MANY_VIDEO", "It is not possible to specify more than two video inputs."),
        0xC00D1B5E: ("NS_E_NOMATCHING_ELEMENT", "No matching element is found in the list."),
        0xC00D1B5F: ("NS_E_MISMATCHED_MEDIACONTENT", "The profile's media types must match the media types defined for the session."),
        0xC00D1B60: ("NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP", "It is not possible to remove an active source while encoding."),
        0xC00D1B61: ("NS_E_AUDIODEVICE_BUSY", "It is not possible to open the specified audio capture device because it is currently in use."),
        0xC00D1B62: ("NS_E_AUDIODEVICE_UNEXPECTED", "It is not possible to open the specified audio capture device because an unexpected error has occurred."),
        0xC00D1B63: ("NS_E_AUDIODEVICE_BADFORMAT", "The audio capture device does not support the specified audio format."),
        0xC00D1B64: ("NS_E_VIDEODEVICE_BUSY", "It is not possible to open the specified video capture device because it is currently in use."),
        0xC00D1B65: ("NS_E_VIDEODEVICE_UNEXPECTED", "It is not possible to open the specified video capture device because an unexpected error has occurred."),
        0xC00D1B66: ("NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING", "This operation is not allowed while encoding."),
        0xC00D1B67: ("NS_E_NO_PROFILE_IN_SOURCEGROUP", "No profile is set for the source."),
        0xC00D1B68: ("NS_E_VIDEODRIVER_UNSTABLE", "The video capture driver returned an unrecoverable error. It is now in an unstable state."),
        0xC00D1B69: ("NS_E_VIDCAPSTARTFAILED", "It was not possible to start the video device."),
        0xC00D1B6A: ("NS_E_VIDSOURCECOMPRESSION", "The video source does not support the requested output format or color depth."),
        0xC00D1B6B: ("NS_E_VIDSOURCESIZE", "The video source does not support the requested capture size."),
        0xC00D1B6C: ("NS_E_ICMQUERYFORMAT", "It was not possible to obtain output information from the video compressor."),
        0xC00D1B6D: ("NS_E_VIDCAPCREATEWINDOW", "It was not possible to create a video capture window."),
        0xC00D1B6E: ("NS_E_VIDCAPDRVINUSE", "There is already a stream active on this video device."),
        0xC00D1B6F: ("NS_E_NO_MEDIAFORMAT_IN_SOURCE", "No media format is set in source."),
        0xC00D1B70: ("NS_E_NO_VALID_OUTPUT_STREAM", "Cannot find a valid output stream from the source."),
        0xC00D1B71: ("NS_E_NO_VALID_SOURCE_PLUGIN", "It was not possible to find a valid source plug-in for the specified source."),
        0xC00D1B72: ("NS_E_NO_ACTIVE_SOURCEGROUP", "No source is currently active."),
        0xC00D1B73: ("NS_E_NO_SCRIPT_STREAM", "No script stream is set in the current source."),
        0xC00D1B74: ("NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING", "This operation is not allowed while archiving."),
        0xC00D1B75: ("NS_E_INVALIDPACKETSIZE", "The setting for the maximum packet size is not valid."),
        0xC00D1B76: ("NS_E_PLUGIN_CLSID_INVALID", "The plug-in CLSID specified is not valid."),
        0xC00D1B77: ("NS_E_UNSUPPORTED_ARCHIVETYPE", "This archive type is not supported."),
        0xC00D1B78: ("NS_E_UNSUPPORTED_ARCHIVEOPERATION", "This archive operation is not supported."),
        0xC00D1B79: ("NS_E_ARCHIVE_FILENAME_NOTSET", "The local archive file name was not set."),
        0xC00D1B7A: ("NS_E_SOURCEGROUP_NOTPREPARED", "The source is not yet prepared."),
        0xC00D1B7B: ("NS_E_PROFILE_MISMATCH", "Profiles on the sources do not match."),
        0xC00D1B7C: ("NS_E_INCORRECTCLIPSETTINGS", "The specified crop values are not valid."),
        0xC00D1B7D: ("NS_E_NOSTATSAVAILABLE", "No statistics are available at this time."),
        0xC00D1B7E: ("NS_E_NOTARCHIVING", "The encoder is not archiving."),
        0xC00D1B7F: ("NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED", "This operation is only allowed during encoding."),
        0xC00D1B80: ("NS_E_NOSOURCEGROUPS", "This SourceGroupCollection doesn't contain any SourceGroups."),
        0xC00D1B81: ("NS_E_INVALIDINPUTFPS", "This source does not have a frame rate of 30 fps. Therefore, it is not possible to apply the inverse telecine filter to the source."),
        0xC00D1B82: ("NS_E_NO_DATAVIEW_SUPPORT", "It is not possible to display your source or output video in the Video panel."),
        0xC00D1B83: ("NS_E_CODEC_UNAVAILABLE", "One or more codecs required to open this content could not be found."),
        0xC00D1B84: ("NS_E_ARCHIVE_SAME_AS_INPUT", "The archive file has the same name as an input file. Change one of the names before continuing."),
        0xC00D1B85: ("NS_E_SOURCE_NOTSPECIFIED", "The source has not been set up completely."),
        0xC00D1B86: ("NS_E_NO_REALTIME_TIMECOMPRESSION", "It is not possible to apply time compression to a broadcast session."),
        0xC00D1B87: ("NS_E_UNSUPPORTED_ENCODER_DEVICE", "It is not possible to open this device."),
        0xC00D1B88: ("NS_E_UNEXPECTED_DISPLAY_SETTINGS", "It is not possible to start encoding because the display size or color has changed since the current session was defined. Restore the previous settings or create a new session."),
        0xC00D1B89: ("NS_E_NO_AUDIODATA", "No audio data has been received for several seconds. Check the audio source and restart the encoder."),
        0xC00D1B8A: ("NS_E_INPUTSOURCE_PROBLEM", "One or all of the specified sources are not working properly. Check that the sources are configured correctly."),
        0xC00D1B8B: ("NS_E_WME_VERSION_MISMATCH", "The supplied configuration file is not supported by this version of the encoder."),
        0xC00D1B8C: ("NS_E_NO_REALTIME_PREPROCESS", "It is not possible to use image preprocessing with live encoding."),
        0xC00D1B8D: ("NS_E_NO_REPEAT_PREPROCESS", "It is not possible to use two-pass encoding when the source is set to loop."),
        0xC00D1B8E: ("NS_E_CANNOT_PAUSE_LIVEBROADCAST", "It is not possible to pause encoding during a broadcast."),
        0xC00D1B8F: ("NS_E_DRM_PROFILE_NOT_SET", "A DRM profile has not been set for the current session."),
        0xC00D1B90: ("NS_E_DUPLICATE_DRMPROFILE", "The profile ID is already used by a DRM profile. Specify a different profile ID."),
        0xC00D1B91: ("NS_E_INVALID_DEVICE", "The setting of the selected device does not support control for playing back tapes."),
        0xC00D1B92: ("NS_E_SPEECHEDL_ON_NON_MIXEDMODE", "You must specify a mixed voice and audio mode in order to use an optimization definition file."),
        0xC00D1B93: ("NS_E_DRM_PASSWORD_TOO_LONG", "The specified password is too long. Type a password with fewer than 8 characters."),
        0xC00D1B94: ("NS_E_DEVCONTROL_FAILED_SEEK", "It is not possible to seek to the specified mark-in point."),
        0xC00D1B95: ("NS_E_INTERLACE_REQUIRE_SAMESIZE", "When you choose to maintain the interlacing in your video, the output video size must match the input video size."),
        0xC00D1B96: ("NS_E_TOO_MANY_DEVICECONTROL", "Only one device control plug-in can control a device."),
        0xC00D1B97: ("NS_E_NO_MULTIPASS_FOR_LIVEDEVICE", "You must also enable storing content to hard disk temporarily in order to use two-pass encoding with the input device."),
        0xC00D1B98: ("NS_E_MISSING_AUDIENCE", "An audience is missing from the output stream configuration."),
        0xC00D1B99: ("NS_E_AUDIENCE_CONTENTTYPE_MISMATCH", "All audiences in the output tree must have the same content type."),
        0xC00D1B9A: ("NS_E_MISSING_SOURCE_INDEX", "A source index is missing from the output stream configuration."),
        0xC00D1B9B: ("NS_E_NUM_LANGUAGE_MISMATCH", "The same source index in different audiences should have the same number of languages."),
        0xC00D1B9C: ("NS_E_LANGUAGE_MISMATCH", "The same source index in different audiences should have the same languages."),
        0xC00D1B9D: ("NS_E_VBRMODE_MISMATCH", "The same source index in different audiences should use the same VBR encoding mode."),
        0xC00D1B9E: ("NS_E_INVALID_INPUT_AUDIENCE_INDEX", "The bit rate index specified is not valid."),
        0xC00D1B9F: ("NS_E_INVALID_INPUT_LANGUAGE", "The specified language is not valid."),
        0xC00D1BA0: ("NS_E_INVALID_INPUT_STREAM", "The specified source type is not valid."),
        0xC00D1BA1: ("NS_E_EXPECT_MONO_WAV_INPUT", "The source must be a mono channel .wav file."),
        0xC00D1BA2: ("NS_E_INPUT_WAVFORMAT_MISMATCH", "All the source .wav files must have the same format."),
        0xC00D1BA3: ("NS_E_RECORDQ_DISK_FULL", "The hard disk being used for temporary storage of content has reached the minimum allowed disk space. Create more space on the hard disk and restart encoding."),
        0xC00D1BA4: ("NS_E_NO_PAL_INVERSE_TELECINE", "It is not possible to apply the inverse telecine feature to PAL content."),
        0xC00D1BA5: ("NS_E_ACTIVE_SG_DEVICE_DISCONNECTED", "A capture device in the current active source is no longer available."),
        0xC00D1BA6: ("NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED", "A device used in the current active source for device control is no longer available."),
        0xC00D1BA7: ("NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER", "No frames have been submitted to the analyzer for analysis."),
        0xC00D1BA8: ("NS_E_INPUT_DOESNOT_SUPPORT_SMPTE", "The source video does not support time codes."),
        0xC00D1BA9: ("NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS", "It is not possible to generate a time code when there are multiple sources in a session."),
        0xC00D1BAA: ("NS_E_BAD_CONTENTEDL", "The voice codec optimization definition file cannot be found or is corrupted."),
        0xC00D1BAB: ("NS_E_INTERLACEMODE_MISMATCH", "The same source index in different audiences should have the same interlace mode."),
        0xC00D1BAC: ("NS_E_NONSQUAREPIXELMODE_MISMATCH", "The same source index in different audiences should have the same nonsquare pixel mode."),
        0xC00D1BAD: ("NS_E_SMPTEMODE_MISMATCH", "The same source index in different audiences should have the same time code mode."),
        0xC00D1BAE: ("NS_E_END_OF_TAPE", "Either the end of the tape has been reached or there is no tape. Check the device and tape."),
        0xC00D1BAF: ("NS_E_NO_MEDIA_IN_AUDIENCE", "No audio or video input has been specified."),
        0xC00D1BB0: ("NS_E_NO_AUDIENCES", "The profile must contain a bit rate."),
        0xC00D1BB1: ("NS_E_NO_AUDIO_COMPAT", "You must specify at least one audio stream to be compatible with Windows Media Player 7.1."),
        0xC00D1BB2: ("NS_E_INVALID_VBR_COMPAT", "Using a VBR encoding mode is not compatible with Windows Media Player 7.1."),
        0xC00D1BB3: ("NS_E_NO_PROFILE_NAME", "You must specify a profile name."),
        0xC00D1BB4: ("NS_E_INVALID_VBR_WITH_UNCOMP", "It is not possible to use a VBR encoding mode with uncompressed audio or video."),
        0xC00D1BB5: ("NS_E_MULTIPLE_VBR_AUDIENCES", "It is not possible to use MBR encoding with VBR encoding."),
        0xC00D1BB6: ("NS_E_UNCOMP_COMP_COMBINATION", "It is not possible to mix uncompressed and compressed content in a session."),
        0xC00D1BB7: ("NS_E_MULTIPLE_AUDIO_CODECS", "All audiences must use the same audio codec."),
        0xC00D1BB8: ("NS_E_MULTIPLE_AUDIO_FORMATS", "All audiences should use the same audio format to be compatible with Windows Media Player 7.1."),
        0xC00D1BB9: ("NS_E_AUDIO_BITRATE_STEPDOWN", "The audio bit rate for an audience with a higher total bit rate must be greater than one with a lower total bit rate."),
        0xC00D1BBA: ("NS_E_INVALID_AUDIO_PEAKRATE", "The audio peak bit rate setting is not valid."),
        0xC00D1BBB: ("NS_E_INVALID_AUDIO_PEAKRATE_2", "The audio peak bit rate setting must be greater than the audio bit rate setting."),
        0xC00D1BBC: ("NS_E_INVALID_AUDIO_BUFFERMAX", "The setting for the maximum buffer size for audio is not valid."),
        0xC00D1BBD: ("NS_E_MULTIPLE_VIDEO_CODECS", "All audiences must use the same video codec."),
        0xC00D1BBE: ("NS_E_MULTIPLE_VIDEO_SIZES", "All audiences should use the same video size to be compatible with Windows Media Player 7.1."),
        0xC00D1BBF: ("NS_E_INVALID_VIDEO_BITRATE", "The video bit rate setting is not valid."),
        0xC00D1BC0: ("NS_E_VIDEO_BITRATE_STEPDOWN", "The video bit rate for an audience with a higher total bit rate must be greater than one with a lower total bit rate."),
        0xC00D1BC1: ("NS_E_INVALID_VIDEO_PEAKRATE", "The video peak bit rate setting is not valid."),
        0xC00D1BC2: ("NS_E_INVALID_VIDEO_PEAKRATE_2", "The video peak bit rate setting must be greater than the video bit rate setting."),
        0xC00D1BC3: ("NS_E_INVALID_VIDEO_WIDTH", "The video width setting is not valid."),
        0xC00D1BC4: ("NS_E_INVALID_VIDEO_HEIGHT", "The video height setting is not valid."),
        0xC00D1BC5: ("NS_E_INVALID_VIDEO_FPS", "The video frame rate setting is not valid."),
        0xC00D1BC6: ("NS_E_INVALID_VIDEO_KEYFRAME", "The video key frame setting is not valid."),
        0xC00D1BC7: ("NS_E_INVALID_VIDEO_IQUALITY", "The video image quality setting is not valid."),
        0xC00D1BC8: ("NS_E_INVALID_VIDEO_CQUALITY", "The video codec quality setting is not valid."),
        0xC00D1BC9: ("NS_E_INVALID_VIDEO_BUFFER", "The video buffer setting is not valid."),
        0xC00D1BCA: ("NS_E_INVALID_VIDEO_BUFFERMAX", "The setting for the maximum buffer size for video is not valid."),
        0xC00D1BCB: ("NS_E_INVALID_VIDEO_BUFFERMAX_2", "The value of the video maximum buffer size setting must be greater than the video buffer size setting."),
        0xC00D1BCC: ("NS_E_INVALID_VIDEO_WIDTH_ALIGN", "The alignment of the video width is not valid."),
        0xC00D1BCD: ("NS_E_INVALID_VIDEO_HEIGHT_ALIGN", "The alignment of the video height is not valid."),
        0xC00D1BCE: ("NS_E_MULTIPLE_SCRIPT_BITRATES", "All bit rates must have the same script bit rate."),
        0xC00D1BCF: ("NS_E_INVALID_SCRIPT_BITRATE", "The script bit rate specified is not valid."),
        0xC00D1BD0: ("NS_E_MULTIPLE_FILE_BITRATES", "All bit rates must have the same file transfer bit rate."),
        0xC00D1BD1: ("NS_E_INVALID_FILE_BITRATE", "The file transfer bit rate is not valid."),
        0xC00D1BD2: ("NS_E_SAME_AS_INPUT_COMBINATION", "All audiences in a profile should either be same as input or have video width and height specified."),
        0xC00D1BD3: ("NS_E_SOURCE_CANNOT_LOOP", "This source type does not support looping."),
        0xC00D1BD4: ("NS_E_INVALID_FOLDDOWN_COEFFICIENTS", "The fold-down value needs to be between -144 and 0."),
        0xC00D1BD5: ("NS_E_DRMPROFILE_NOTFOUND", "The specified DRM profile does not exist in the system."),
        0xC00D1BD6: ("NS_E_INVALID_TIMECODE", "The specified time code is not valid."),
        0xC00D1BD7: ("NS_E_NO_AUDIO_TIMECOMPRESSION", "It is not possible to apply time compression to a video-only session."),
        0xC00D1BD8: ("NS_E_NO_TWOPASS_TIMECOMPRESSION", "It is not possible to apply time compression to a session that is using two-pass encoding."),
        0xC00D1BD9: ("NS_E_TIMECODE_REQUIRES_VIDEOSTREAM", "It is not possible to generate a time code for an audio-only session."),
        0xC00D1BDA: ("NS_E_NO_MBR_WITH_TIMECODE", "It is not possible to generate a time code when you are encoding content at multiple bit rates."),
        0xC00D1BDB: ("NS_E_INVALID_INTERLACEMODE", "The video codec selected does not support maintaining interlacing in video."),
        0xC00D1BDC: ("NS_E_INVALID_INTERLACE_COMPAT", "Maintaining interlacing in video is not compatible with Windows Media Player 7.1."),
        0xC00D1BDD: ("NS_E_INVALID_NONSQUAREPIXEL_COMPAT", "Allowing nonsquare pixel output is not compatible with Windows Media Player 7.1."),
        0xC00D1BDE: ("NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL", "Only capture devices can be used with device control."),
        0xC00D1BDF: ("NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR", "It is not possible to generate the stream format file if you are using quality-based VBR encoding for the audio or video stream. Instead use the Windows Media file generated after encoding to create the announcement file."),
        0xC00D1BE0: ("NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT", "It is not possible to create a DRM profile because the maximum number of profiles has been reached. You must delete some DRM profiles before creating new ones."),
        0xC00D1BE1: ("NS_E_DEVICECONTROL_UNSTABLE", "The device is in an unstable state. Check that the device is functioning properly and a tape is in place."),
        0xC00D1BE2: ("NS_E_INVALID_PIXEL_ASPECT_RATIO", "The pixel aspect ratio value must be between 1 and 255."),
        0xC00D1BE3: ("NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH", "All streams with different languages in the same audience must have same properties."),
        0xC00D1BE4: ("NS_E_INVALID_PROFILE_CONTENTTYPE", "The profile must contain at least one audio or video stream."),
        0xC00D1BE5: ("NS_E_TRANSFORM_PLUGIN_NOT_FOUND", "The transform plug-in could not be found."),
        0xC00D1BE6: ("NS_E_TRANSFORM_PLUGIN_INVALID", "The transform plug-in is not valid. It may be damaged or you may not have the required permissions to access the plug-in."),
        0xC00D1BE7: ("NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS", "To use two-pass encoding, you must enable device control and setup an edit decision list (EDL) that has at least one entry."),
        0xC00D1BE8: ("NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING", "When you choose to maintain the interlacing in your video, the output video size must be a multiple of 4."),
        0xC00D1BE9: ("NS_E_MARKIN_UNSUPPORTED", "Markin/Markout is unsupported with this source type."),
        0xC00D2711: ("NS_E_DRM_INVALID_APPLICATION", "A problem has occurred in the Digital Rights Management component. Contact product support for this application."),
        0xC00D2712: ("NS_E_DRM_LICENSE_STORE_ERROR", "License storage is not working. Contact Microsoft product support."),
        0xC00D2713: ("NS_E_DRM_SECURE_STORE_ERROR", "Secure storage is not working. Contact Microsoft product support."),
        0xC00D2714: ("NS_E_DRM_LICENSE_STORE_SAVE_ERROR", "License acquisition did not work. Acquire a new license or contact the content provider for further assistance."),
        0xC00D2715: ("NS_E_DRM_SECURE_STORE_UNLOCK_ERROR", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2716: ("NS_E_DRM_INVALID_CONTENT", "The media file is corrupted. Contact the content provider to get a new file."),
        0xC00D2717: ("NS_E_DRM_UNABLE_TO_OPEN_LICENSE", "The license is corrupted. Acquire a new license."),
        0xC00D2718: ("NS_E_DRM_INVALID_LICENSE", "The license is corrupted or invalid. Acquire a new license"),
        0xC00D2719: ("NS_E_DRM_INVALID_MACHINE", "Licenses cannot be copied from one computer to another. Use License Management to transfer licenses, or get a new license for the media file."),
        0xC00D271B: ("NS_E_DRM_ENUM_LICENSE_FAILED", "License storage is not working. Contact Microsoft product support."),
        0xC00D271C: ("NS_E_DRM_INVALID_LICENSE_REQUEST", "The media file is corrupted. Contact the content provider to get a new file."),
        0xC00D271D: ("NS_E_DRM_UNABLE_TO_INITIALIZE", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D271E: ("NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE", "The license could not be acquired. Try again later."),
        0xC00D271F: ("NS_E_DRM_INVALID_LICENSE_ACQUIRED", "License acquisition did not work. Acquire a new license or contact the content provider for further assistance."),
        0xC00D2720: ("NS_E_DRM_NO_RIGHTS", "The requested operation cannot be performed on this file."),
        0xC00D2721: ("NS_E_DRM_KEY_ERROR", "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."),
        0xC00D2722: ("NS_E_DRM_ENCRYPT_ERROR", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2723: ("NS_E_DRM_DECRYPT_ERROR", "The media file is corrupted. Contact the content provider to get a new file."),
        0xC00D2725: ("NS_E_DRM_LICENSE_INVALID_XML", "The license is corrupted. Acquire a new license."),
        0xC00D2728: ("NS_E_DRM_NEEDS_INDIVIDUALIZATION", "A security upgrade is required to perform the operation on this media file."),
        0xC00D2729: ("NS_E_DRM_ALREADY_INDIVIDUALIZED", "You already have the latest security components. No upgrade is necessary at this time."),
        0xC00D272A: ("NS_E_DRM_ACTION_NOT_QUERIED", "The application cannot perform this action. Contact product support for this application."),
        0xC00D272B: ("NS_E_DRM_ACQUIRING_LICENSE", "You cannot begin a new license acquisition process until the current one has been completed."),
        0xC00D272C: ("NS_E_DRM_INDIVIDUALIZING", "You cannot begin a new security upgrade until the current one has been completed."),
        0xC00D272D: ("NS_E_BACKUP_RESTORE_FAILURE", "Failure in Backup-Restore."),
        0xC00D272E: ("NS_E_BACKUP_RESTORE_BAD_REQUEST_ID", "Bad Request ID in Backup-Restore."),
        0xC00D272F: ("NS_E_DRM_PARAMETERS_MISMATCHED", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2730: ("NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT", "A license cannot be created for this media file. Reinstall the application."),
        0xC00D2731: ("NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2732: ("NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2733: ("NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2734: ("NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2735: ("NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2736: ("NS_E_DRM_INDIVIDUALIZE_ERROR", "The security upgrade failed. Try again later."),
        0xC00D2737: ("NS_E_DRM_LICENSE_OPEN_ERROR", "License storage is not working. Contact Microsoft product support."),
        0xC00D2738: ("NS_E_DRM_LICENSE_CLOSE_ERROR", "License storage is not working. Contact Microsoft product support."),
        0xC00D2739: ("NS_E_DRM_GET_LICENSE_ERROR", "License storage is not working. Contact Microsoft product support."),
        0xC00D273A: ("NS_E_DRM_QUERY_ERROR", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D273B: ("NS_E_DRM_REPORT_ERROR", "A problem has occurred in the Digital Rights Management component. Contact product support for this application."),
        0xC00D273C: ("NS_E_DRM_GET_LICENSESTRING_ERROR", "License storage is not working. Contact Microsoft product support."),
        0xC00D273D: ("NS_E_DRM_GET_CONTENTSTRING_ERROR", "The media file is corrupted. Contact the content provider to get a new file."),
        0xC00D273E: ("NS_E_DRM_MONITOR_ERROR", "A problem has occurred in the Digital Rights Management component. Try again later."),
        0xC00D273F: ("NS_E_DRM_UNABLE_TO_SET_PARAMETER", "The application has made an invalid call to the Digital Rights Management component. Contact product support for this application."),
        0xC00D2740: ("NS_E_DRM_INVALID_APPDATA", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2741: ("NS_E_DRM_INVALID_APPDATA_VERSION", "A problem has occurred in the Digital Rights Management component. Contact product support for this application."),
        0xC00D2742: ("NS_E_DRM_BACKUP_EXISTS", "Licenses are already backed up in this location."),
        0xC00D2743: ("NS_E_DRM_BACKUP_CORRUPT", "One or more backed-up licenses are missing or corrupt."),
        0xC00D2744: ("NS_E_DRM_BACKUPRESTORE_BUSY", "You cannot begin a new backup process until the current process has been completed."),
        0xC00D2745: ("NS_E_BACKUP_RESTORE_BAD_DATA", "Bad Data sent to Backup-Restore."),
        0xC00D2748: ("NS_E_DRM_LICENSE_UNUSABLE", "The license is invalid. Contact the content provider for further assistance."),
        0xC00D2749: ("NS_E_DRM_INVALID_PROPERTY", "A required property was not set by the application. Contact product support for this application."),
        0xC00D274A: ("NS_E_DRM_SECURE_STORE_NOT_FOUND", "A problem has occurred in the Digital Rights Management component of this application. Try to acquire a license again."),
        0xC00D274B: ("NS_E_DRM_CACHED_CONTENT_ERROR", "A license cannot be found for this media file. Use License Management to transfer a license for this file from the original computer, or acquire a new license."),
        0xC00D274C: ("NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE", "A problem occurred during the security upgrade. Try again later."),
        0xC00D274D: ("NS_E_DRM_DRIVER_AUTH_FAILURE", "Certified driver components are required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware."),
        0xC00D274E: ("NS_E_DRM_NEED_UPGRADE_MSSAP", "One or more of the Secure Audio Path components were not found or an entry point in those components was not found."),
        0xC00D274F: ("NS_E_DRM_REOPEN_CONTENT", "Status message: Reopen the file."),
        0xC00D2750: ("NS_E_DRM_DRIVER_DIGIOUT_FAILURE", "Certain driver functionality is required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware."),
        0xC00D2751: ("NS_E_DRM_INVALID_SECURESTORE_PASSWORD", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2752: ("NS_E_DRM_APPCERT_REVOKED", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2753: ("NS_E_DRM_RESTORE_FRAUD", "You cannot restore your license(s)."),
        0xC00D2754: ("NS_E_DRM_HARDWARE_INCONSISTENT", "The licenses for your media files are corrupted. Contact Microsoft product support."),
        0xC00D2755: ("NS_E_DRM_SDMI_TRIGGER", "To transfer this media file, you must upgrade the application."),
        0xC00D2756: ("NS_E_DRM_SDMI_NOMORECOPIES", "You cannot make any more copies of this media file."),
        0xC00D2757: ("NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2758: ("NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2759: ("NS_E_DRM_LICENSE_NOTACQUIRED", "Unable to obtain license."),
        0xC00D275A: ("NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D275B: ("NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D275C: ("NS_E_DRM_BUFFER_TOO_SMALL", "The buffer supplied is not sufficient."),
        0xC00D275D: ("NS_E_DRM_UNSUPPORTED_PROPERTY", "The property requested is not supported."),
        0xC00D275E: ("NS_E_DRM_ERROR_BAD_NET_RESP", "The specified server cannot perform the requested operation."),
        0xC00D275F: ("NS_E_DRM_STORE_NOTALLSTORED", "Some of the licenses could not be stored."),
        0xC00D2760: ("NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID", "The Digital Rights Management security upgrade component could not be validated. Contact Microsoft product support."),
        0xC00D2761: ("NS_E_DRM_INVALID_DATA", "Invalid or corrupt data was encountered."),
        0xC00D2762: ("NS_E_DRM_POLICY_DISABLE_ONLINE", "The Windows Media Digital Rights Management system cannot perform the requested action because your computer or network administrator has enabled the group policy Prevent Windows Media DRM Internet Access. For assistance, contact your administrator."),
        0xC00D2763: ("NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2764: ("NS_E_DRM_NOT_CONFIGURED", "Not all of the necessary properties for DRM have been set."),
        0xC00D2765: ("NS_E_DRM_DEVICE_ACTIVATION_CANCELED", "The portable device does not have the security required to copy protected files to it. To obtain the additional security, try to copy the file to your portable device again. When a message appears, click OK."),
        0xC00D2766: ("NS_E_BACKUP_RESTORE_TOO_MANY_RESETS", "Too many resets in Backup-Restore."),
        0xC00D2767: ("NS_E_DRM_DEBUGGING_NOT_ALLOWED", "Running this process under a debugger while using DRM content is not allowed."),
        0xC00D2768: ("NS_E_DRM_OPERATION_CANCELED", "The user canceled the DRM operation."),
        0xC00D2769: ("NS_E_DRM_RESTRICTIONS_NOT_RETRIEVED", "The license you are using has assocaited output restrictions. This license is unusable until these restrictions are queried."),
        0xC00D276A: ("NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D276B: ("NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_BURN_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D276C: ("NS_E_DRM_UNABLE_TO_CREATE_DEVICE_REGISTRATION_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D276D: ("NS_E_DRM_UNABLE_TO_CREATE_METERING_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2770: ("NS_E_DRM_TRACK_EXCEEDED_PLAYLIST_RESTICTION", "The specified track has exceeded it's specified playlist burn limit in this playlist."),
        0xC00D2771: ("NS_E_DRM_TRACK_EXCEEDED_TRACKBURN_RESTRICTION", "The specified track has exceeded it's track burn limit."),
        0xC00D2772: ("NS_E_DRM_UNABLE_TO_GET_DEVICE_CERT", "A problem has occurred in obtaining the device's certificate. Contact Microsoft product support."),
        0xC00D2773: ("NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK", "A problem has occurred in obtaining the device's secure clock. Contact Microsoft product support."),
        0xC00D2774: ("NS_E_DRM_UNABLE_TO_SET_SECURE_CLOCK", "A problem has occurred in setting the device's secure clock. Contact Microsoft product support."),
        0xC00D2775: ("NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK_FROM_SERVER", "A problem has occurred in obtaining the secure clock from server. Contact Microsoft product support."),
        0xC00D2776: ("NS_E_DRM_POLICY_METERING_DISABLED", "This content requires the metering policy to be enabled."),
        0xC00D2777: ("NS_E_DRM_TRANSFER_CHAINED_LICENSES_UNSUPPORTED", "Transfer of chained licenses unsupported."),
        0xC00D2778: ("NS_E_DRM_SDK_VERSIONMISMATCH", "The Digital Rights Management component is not installed properly. Reinstall the Player."),
        0xC00D2779: ("NS_E_DRM_LIC_NEEDS_DEVICE_CLOCK_SET", "The file could not be transferred because the device clock is not set."),
        0xC00D277A: ("NS_E_LICENSE_HEADER_MISSING_URL", "The content header is missing an acquisition URL."),
        0xC00D277B: ("NS_E_DEVICE_NOT_WMDRM_DEVICE", "The current attached device does not support WMDRM."),
        0xC00D277C: ("NS_E_DRM_INVALID_APPCERT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D277D: ("NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_PETITION", "The client application has been forcefully terminated during a DRM petition."),
        0xC00D277E: ("NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_CHALLENGE", "The client application has been forcefully terminated during a DRM challenge."),
        0xC00D277F: ("NS_E_DRM_CHECKPOINT_FAILED", "Secure storage protection error. Restore your licenses from a previous backup and try again."),
        0xC00D2780: ("NS_E_DRM_BB_UNABLE_TO_INITIALIZE", "A problem has occurred in the Digital Rights Management root of trust. Contact Microsoft product support."),
        0xC00D2781: ("NS_E_DRM_UNABLE_TO_LOAD_HARDWARE_ID", "A problem has occurred in retrieving the Digital Rights Management machine identification. Contact Microsoft product support."),
        0xC00D2782: ("NS_E_DRM_UNABLE_TO_OPEN_DATA_STORE", "A problem has occurred in opening the Digital Rights Management data storage file. Contact Microsoft product."),
        0xC00D2783: ("NS_E_DRM_DATASTORE_CORRUPT", "The Digital Rights Management data storage is not functioning properly. Contact Microsoft product support."),
        0xC00D2784: ("NS_E_DRM_UNABLE_TO_CREATE_INMEMORYSTORE_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2785: ("NS_E_DRM_STUBLIB_REQUIRED", "A secured library is required to access the requested functionality."),
        0xC00D2786: ("NS_E_DRM_UNABLE_TO_CREATE_CERTIFICATE_OBJECT", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2787: ("NS_E_DRM_MIGRATION_TARGET_NOT_ONLINE", "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."),
        0xC00D2788: ("NS_E_DRM_INVALID_MIGRATION_IMAGE", "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."),
        0xC00D2789: ("NS_E_DRM_MIGRATION_TARGET_STATES_CORRUPTED", "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."),
        0xC00D278A: ("NS_E_DRM_MIGRATION_IMPORTER_NOT_AVAILABLE", "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."),
        0xC00D278B: ("NS_DRM_E_MIGRATION_UPGRADE_WITH_DIFF_SID", "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."),
        0xC00D278C: ("NS_DRM_E_MIGRATION_SOURCE_MACHINE_IN_USE", "The Digital Rights Management component is in use during license migration. Contact Microsoft product support."),
        0xC00D278D: ("NS_DRM_E_MIGRATION_TARGET_MACHINE_LESS_THAN_LH", "Licenses are being migrated to a machine running XP or downlevel OS. This operation can only be performed on Windows Vista or a later OS. Contact Microsoft product support."),
        0xC00D278E: ("NS_DRM_E_MIGRATION_IMAGE_ALREADY_EXISTS", "Migration Image already exists. Contact Microsoft product support."),
        0xC00D278F: ("NS_E_DRM_HARDWAREID_MISMATCH", "The requested action cannot be performed because a hardware configuration change has been detected by the Windows Media Digital Rights Management (DRM) components on your computer."),
        0xC00D2790: ("NS_E_INVALID_DRMV2CLT_STUBLIB", "The wrong stublib has been linked to an application or DLL using drmv2clt.dll."),
        0xC00D2791: ("NS_E_DRM_MIGRATION_INVALID_LEGACYV2_DATA", "The legacy V2 data being imported is invalid."),
        0xC00D2792: ("NS_E_DRM_MIGRATION_LICENSE_ALREADY_EXISTS", "The license being imported already exists."),
        0xC00D2793: ("NS_E_DRM_MIGRATION_INVALID_LEGACYV2_SST_PASSWORD", "The password of the Legacy V2 SST entry being imported is incorrect."),
        0xC00D2794: ("NS_E_DRM_MIGRATION_NOT_SUPPORTED", "Migration is not supported by the plugin."),
        0xC00D2795: ("NS_E_DRM_UNABLE_TO_CREATE_MIGRATION_IMPORTER_OBJECT", "A migration importer cannot be created for this media file. Reinstall the application."),
        0xC00D2796: ("NS_E_DRM_CHECKPOINT_MISMATCH", "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."),
        0xC00D2797: ("NS_E_DRM_CHECKPOINT_CORRUPT", "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."),
        0xC00D2798: ("NS_E_REG_FLUSH_FAILURE", "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."),
        0xC00D2799: ("NS_E_HDS_KEY_MISMATCH", "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."),
        0xC00D279A: ("NS_E_DRM_MIGRATION_OPERATION_CANCELLED", "Migration was canceled by the user."),
        0xC00D279B: ("NS_E_DRM_MIGRATION_OBJECT_IN_USE", "Migration object is already in use and cannot be called until the current operation completes."),
        0xC00D279C: ("NS_E_DRM_MALFORMED_CONTENT_HEADER", "The content header does not comply with DRM requirements and cannot be used."),
        0xC00D27D8: ("NS_E_DRM_LICENSE_EXPIRED", "The license for this file has expired and is no longer valid. Contact your content provider for further assistance."),
        0xC00D27D9: ("NS_E_DRM_LICENSE_NOTENABLED", "The license for this file is not valid yet, but will be at a future date."),
        0xC00D27DA: ("NS_E_DRM_LICENSE_APPSECLOW", "The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player."),
        0xC00D27DB: ("NS_E_DRM_STORE_NEEDINDI", "The license cannot be stored as it requires security upgrade of Digital Rights Management component."),
        0xC00D27DC: ("NS_E_DRM_STORE_NOTALLOWED", "Your machine does not meet the requirements for storing the license."),
        0xC00D27DD: ("NS_E_DRM_LICENSE_APP_NOTALLOWED", "The license for this file requires an upgraded version of your player or a different player."),
        0xC00D27DF: ("NS_E_DRM_LICENSE_CERT_EXPIRED", "The license server's certificate expired. Make sure your system clock is set correctly. Contact your content provider for further assistance."),
        0xC00D27E0: ("NS_E_DRM_LICENSE_SECLOW", "The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player."),
        0xC00D27E1: ("NS_E_DRM_LICENSE_CONTENT_REVOKED", "The content owner for the license you just acquired is no longer supporting their content. Contact the content owner for a newer version of the content."),
        0xC00D27E2: ("NS_E_DRM_DEVICE_NOT_REGISTERED", "The content owner for the license you just acquired requires your device to register to the current machine."),
        0xC00D280A: ("NS_E_DRM_LICENSE_NOSAP", "The license for this file requires a feature that is not supported in your current player or operating system. You can try with newer version of your current player or contact your content provider for further assistance."),
        0xC00D280B: ("NS_E_DRM_LICENSE_NOSVP", "The license for this file requires a feature that is not supported in your current player or operating system. You can try with newer version of your current player or contact your content provider for further assistance."),
        0xC00D280C: ("NS_E_DRM_LICENSE_NOWDM", "The license for this file requires Windows Driver Model (WDM) audio drivers. Contact your sound card manufacturer for further assistance."),
        0xC00D280D: ("NS_E_DRM_LICENSE_NOTRUSTEDCODEC", "The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player."),
        0xC00D280E: ("NS_E_DRM_SOURCEID_NOT_SUPPORTED", "The license for this file is not supported by your current player. You can try with newer version of your current player or contact your content provider for further assistance."),
        0xC00D283D: ("NS_E_DRM_NEEDS_UPGRADE_TEMPFILE", "An updated version of your media player is required to play the selected content."),
        0xC00D283E: ("NS_E_DRM_NEED_UPGRADE_PD", "A new version of the Digital Rights Management component is required. Contact product support for this application to get the latest version."),
        0xC00D283F: ("NS_E_DRM_SIGNATURE_FAILURE", "Failed to either create or verify the content header."),
        0xC00D2840: ("NS_E_DRM_LICENSE_SERVER_INFO_MISSING", "Could not read the necessary information from the system registry."),
        0xC00D2841: ("NS_E_DRM_BUSY", "The DRM subsystem is currently locked by another application or user. Try again later."),
        0xC00D2842: ("NS_E_DRM_PD_TOO_MANY_DEVICES", "There are too many target devices registered on the portable media."),
        0xC00D2843: ("NS_E_DRM_INDIV_FRAUD", "The security upgrade cannot be completed because the allowed number of daily upgrades has been exceeded. Try again tomorrow."),
        0xC00D2844: ("NS_E_DRM_INDIV_NO_CABS", "The security upgrade cannot be completed because the server is unable to perform the operation. Try again later."),
        0xC00D2845: ("NS_E_DRM_INDIV_SERVICE_UNAVAILABLE", "The security upgrade cannot be performed because the server is not available. Try again later."),
        0xC00D2846: ("NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE", "Windows Media Player cannot restore your licenses because the server is not available. Try again later."),
        0xC00D2847: ("NS_E_DRM_CLIENT_CODE_EXPIRED", "Windows Media Player cannot play the protected file. Verify that your computer's date is set correctly. If it is correct, on the Help menu, click Check for Player Updates to install the latest version of the Player."),
        0xC00D2848: ("NS_E_DRM_NO_UPLINK_LICENSE", "The chained license cannot be created because the referenced uplink license does not exist."),
        0xC00D2849: ("NS_E_DRM_INVALID_KID", "The specified KID is invalid."),
        0xC00D284A: ("NS_E_DRM_LICENSE_INITIALIZATION_ERROR", "License initialization did not work. Contact Microsoft product support."),
        0xC00D284C: ("NS_E_DRM_CHAIN_TOO_LONG", "The uplink license of a chained license cannot itself be a chained license."),
        0xC00D284D: ("NS_E_DRM_UNSUPPORTED_ALGORITHM", "The specified encryption algorithm is unsupported."),
        0xC00D284E: ("NS_E_DRM_LICENSE_DELETION_ERROR", "License deletion did not work. Contact Microsoft product support."),
        0xC00D28A0: ("NS_E_DRM_INVALID_CERTIFICATE", "The client's certificate is corrupted or the signature cannot be verified."),
        0xC00D28A1: ("NS_E_DRM_CERTIFICATE_REVOKED", "The client's certificate has been revoked."),
        0xC00D28A2: ("NS_E_DRM_LICENSE_UNAVAILABLE", "There is no license available for the requested action."),
        0xC00D28A3: ("NS_E_DRM_DEVICE_LIMIT_REACHED", "The maximum number of devices in use has been reached. Unable to open additional devices."),
        0xC00D28A4: ("NS_E_DRM_UNABLE_TO_VERIFY_PROXIMITY", "The proximity detection procedure could not confirm that the receiver is near the transmitter in the network."),
        0xC00D28A5: ("NS_E_DRM_MUST_REGISTER", "The client must be registered before executing the intended operation."),
        0xC00D28A6: ("NS_E_DRM_MUST_APPROVE", "The client must be approved before executing the intended operation."),
        0xC00D28A7: ("NS_E_DRM_MUST_REVALIDATE", "The client must be revalidated before executing the intended operation."),
        0xC00D28A8: ("NS_E_DRM_INVALID_PROXIMITY_RESPONSE", "The response to the proximity detection challenge is invalid."),
        0xC00D28A9: ("NS_E_DRM_INVALID_SESSION", "The requested session is invalid."),
        0xC00D28AA: ("NS_E_DRM_DEVICE_NOT_OPEN", "The device must be opened before it can be used to receive content."),
        0xC00D28AB: ("NS_E_DRM_DEVICE_ALREADY_REGISTERED", "Device registration failed because the device is already registered."),
        0xC00D28AC: ("NS_E_DRM_UNSUPPORTED_PROTOCOL_VERSION", "Unsupported WMDRM-ND protocol version."),
        0xC00D28AD: ("NS_E_DRM_UNSUPPORTED_ACTION", "The requested action is not supported."),
        0xC00D28AE: ("NS_E_DRM_CERTIFICATE_SECURITY_LEVEL_INADEQUATE", "The certificate does not have an adequate security level for the requested action."),
        0xC00D28AF: ("NS_E_DRM_UNABLE_TO_OPEN_PORT", "Unable to open the specified port for receiving Proximity messages."),
        0xC00D28B0: ("NS_E_DRM_BAD_REQUEST", "The message format is invalid."),
        0xC00D28B1: ("NS_E_DRM_INVALID_CRL", "The Certificate Revocation List is invalid or corrupted."),
        0xC00D28B2: ("NS_E_DRM_ATTRIBUTE_TOO_LONG", "The length of the attribute name or value is too long."),
        0xC00D28B3: ("NS_E_DRM_EXPIRED_LICENSEBLOB", "The license blob passed in the cardea request is expired."),
        0xC00D28B4: ("NS_E_DRM_INVALID_LICENSEBLOB", "The license blob passed in the cardea request is invalid. Contact Microsoft product support."),
        0xC00D28B5: ("NS_E_DRM_INCLUSION_LIST_REQUIRED", "The requested operation cannot be performed because the license does not contain an inclusion list."),
        0xC00D28B6: ("NS_E_DRM_DRMV2CLT_REVOKED", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D28B7: ("NS_E_DRM_RIV_TOO_SMALL", "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."),
        0xC00D2904: ("NS_E_OUTPUT_PROTECTION_LEVEL_UNSUPPORTED", "Windows Media Player does not support the level of output protection required by the content."),
        0xC00D2905: ("NS_E_COMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED", "Windows Media Player does not support the level of protection required for compressed digital video."),
        0xC00D2906: ("NS_E_UNCOMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED", "Windows Media Player does not support the level of protection required for uncompressed digital video."),
        0xC00D2907: ("NS_E_ANALOG_VIDEO_PROTECTION_LEVEL_UNSUPPORTED", "Windows Media Player does not support the level of protection required for analog video."),
        0xC00D2908: ("NS_E_COMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED", "Windows Media Player does not support the level of protection required for compressed digital audio."),
        0xC00D2909: ("NS_E_UNCOMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED", "Windows Media Player does not support the level of protection required for uncompressed digital audio."),
        0xC00D290A: ("NS_E_OUTPUT_PROTECTION_SCHEME_UNSUPPORTED", "Windows Media Player does not support the scheme of output protection required by the content."),
        0xC00D2AFA: ("NS_E_REBOOT_RECOMMENDED", "Installation was not successful and some file cleanup is not complete. For best results, restart your computer."),
        0xC00D2AFB: ("NS_E_REBOOT_REQUIRED", "Installation was not successful. To continue, you must restart your computer."),
        0xC00D2AFC: ("NS_E_SETUP_INCOMPLETE", "Installation was not successful."),
        0xC00D2AFD: ("NS_E_SETUP_DRM_MIGRATION_FAILED", "Setup cannot migrate the Windows Media Digital Rights Management (DRM) components."),
        0xC00D2AFE: ("NS_E_SETUP_IGNORABLE_FAILURE", "Some skin or playlist components cannot be installed."),
        0xC00D2AFF: ("NS_E_SETUP_DRM_MIGRATION_FAILED_AND_IGNORABLE_FAILURE", "Setup cannot migrate the Windows Media Digital Rights Management (DRM) components. In addition, some skin or playlist components cannot be installed."),
        0xC00D2B00: ("NS_E_SETUP_BLOCKED", "Installation is blocked because your computer does not meet one or more of the setup requirements."),
        0xC00D2EE0: ("NS_E_UNKNOWN_PROTOCOL", "The specified protocol is not supported."),
        0xC00D2EE1: ("NS_E_REDIRECT_TO_PROXY", "The client is redirected to a proxy server."),
        0xC00D2EE2: ("NS_E_INTERNAL_SERVER_ERROR", "The server encountered an unexpected condition which prevented it from fulfilling the request."),
        0xC00D2EE3: ("NS_E_BAD_REQUEST", "The request could not be understood by the server."),
        0xC00D2EE4: ("NS_E_ERROR_FROM_PROXY", "The proxy experienced an error while attempting to contact the media server."),
        0xC00D2EE5: ("NS_E_PROXY_TIMEOUT", "The proxy did not receive a timely response while attempting to contact the media server."),
        0xC00D2EE6: ("NS_E_SERVER_UNAVAILABLE", "The server is currently unable to handle the request due to a temporary overloading or maintenance of the server."),
        0xC00D2EE7: ("NS_E_REFUSED_BY_SERVER", "The server is refusing to fulfill the requested operation."),
        0xC00D2EE8: ("NS_E_INCOMPATIBLE_SERVER", "The server is not a compatible streaming media server."),
        0xC00D2EE9: ("NS_E_MULTICAST_DISABLED", "The content cannot be streamed because the Multicast protocol has been disabled."),
        0xC00D2EEA: ("NS_E_INVALID_REDIRECT", "The server redirected the player to an invalid location."),
        0xC00D2EEB: ("NS_E_ALL_PROTOCOLS_DISABLED", "The content cannot be streamed because all protocols have been disabled."),
        0xC00D2EEC: ("NS_E_MSBD_NO_LONGER_SUPPORTED", "The MSBD protocol is no longer supported. Please use HTTP to connect to the Windows Media stream."),
        0xC00D2EED: ("NS_E_PROXY_NOT_FOUND", "The proxy server could not be located. Please check your proxy server configuration."),
        0xC00D2EEE: ("NS_E_CANNOT_CONNECT_TO_PROXY", "Unable to establish a connection to the proxy server. Please check your proxy server configuration."),
        0xC00D2EEF: ("NS_E_SERVER_DNS_TIMEOUT", "Unable to locate the media server. The operation timed out."),
        0xC00D2EF0: ("NS_E_PROXY_DNS_TIMEOUT", "Unable to locate the proxy server. The operation timed out."),
        0xC00D2EF1: ("NS_E_CLOSED_ON_SUSPEND", "Media closed because Windows was shut down."),
        0xC00D2EF2: ("NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER", "Unable to read the contents of a playlist file from a media server."),
        0xC00D2EF3: ("NS_E_SESSION_NOT_FOUND", "Session not found."),
        0xC00D2EF4: ("NS_E_REQUIRE_STREAMING_CLIENT", "Content requires a streaming media client."),
        0xC00D2EF5: ("NS_E_PLAYLIST_ENTRY_HAS_CHANGED", "A command applies to a previous playlist entry."),
        0xC00D2EF6: ("NS_E_PROXY_ACCESSDENIED", "The proxy server is denying access. The username and/or password might be incorrect."),
        0xC00D2EF7: ("NS_E_PROXY_SOURCE_ACCESSDENIED", "The proxy could not provide valid authentication credentials to the media server."),
        0xC00D2EF8: ("NS_E_NETWORK_SINK_WRITE", "The network sink failed to write data to the network."),
        0xC00D2EF9: ("NS_E_FIREWALL", "Packets are not being received from the server. The packets might be blocked by a filtering device, such as a network firewall."),
        0xC00D2EFA: ("NS_E_MMS_NOT_SUPPORTED", "The MMS protocol is not supported. Please use HTTP or RTSP to connect to the Windows Media stream."),
        0xC00D2EFB: ("NS_E_SERVER_ACCESSDENIED", "The Windows Media server is denying access. The username and/or password might be incorrect."),
        0xC00D2EFC: ("NS_E_RESOURCE_GONE", "The Publishing Point or file on the Windows Media Server is no longer available."),
        0xC00D2EFD: ("NS_E_NO_EXISTING_PACKETIZER", "There is no existing packetizer plugin for a stream."),
        0xC00D2EFE: ("NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE", "The response from the media server could not be understood. This might be caused by an incompatible proxy server or media server."),
        0xC00D2F00: ("NS_E_RESET_SOCKET_CONNECTION", "The Windows Media Server reset the network connection."),
        0xC00D2F02: ("NS_E_TOO_MANY_HOPS", "The request could not reach the media server (too many hops)."),
        0xC00D2F05: ("NS_E_TOO_MUCH_DATA_FROM_SERVER", "The server is sending too much data. The connection has been terminated."),
        0xC00D2F06: ("NS_E_CONNECT_TIMEOUT", "It was not possible to establish a connection to the media server in a timely manner. The media server may be down for maintenance, or it may be necessary to use a proxy server to access this media server."),
        0xC00D2F07: ("NS_E_PROXY_CONNECT_TIMEOUT", "It was not possible to establish a connection to the proxy server in a timely manner. Please check your proxy server configuration."),
        0xC00D2F08: ("NS_E_SESSION_INVALID", "Session not found."),
        0xC00D2F0A: ("NS_E_PACKETSINK_UNKNOWN_FEC_STREAM", "Unknown packet sink stream."),
        0xC00D2F0B: ("NS_E_PUSH_CANNOTCONNECT", "Unable to establish a connection to the server. Ensure Windows Media Services is started and the HTTP Server control protocol is properly enabled."),
        0xC00D2F0C: ("NS_E_INCOMPATIBLE_PUSH_SERVER", "The Server service that received the HTTP push request is not a compatible version of Windows Media Services (WMS). This error may indicate the push request was received by IIS instead of WMS. Ensure WMS is started and has the HTTP Server control protocol properly enabled and try again."),
        0xC00D32C8: ("NS_E_END_OF_PLAYLIST", "The playlist has reached its end."),
        0xC00D32C9: ("NS_E_USE_FILE_SOURCE", "Use file source."),
        0xC00D32CA: ("NS_E_PROPERTY_NOT_FOUND", "The property was not found."),
        0xC00D32CC: ("NS_E_PROPERTY_READ_ONLY", "The property is read only."),
        0xC00D32CD: ("NS_E_TABLE_KEY_NOT_FOUND", "The table key was not found."),
        0xC00D32CF: ("NS_E_INVALID_QUERY_OPERATOR", "Invalid query operator."),
        0xC00D32D0: ("NS_E_INVALID_QUERY_PROPERTY", "Invalid query property."),
        0xC00D32D2: ("NS_E_PROPERTY_NOT_SUPPORTED", "The property is not supported."),
        0xC00D32D4: ("NS_E_SCHEMA_CLASSIFY_FAILURE", "Schema classification failure."),
        0xC00D32D5: ("NS_E_METADATA_FORMAT_NOT_SUPPORTED", "The metadata format is not supported."),
        0xC00D32D6: ("NS_E_METADATA_NO_EDITING_CAPABILITY", "Cannot edit the metadata."),
        0xC00D32D7: ("NS_E_METADATA_CANNOT_SET_LOCALE", "Cannot set the locale id."),
        0xC00D32D8: ("NS_E_METADATA_LANGUAGE_NOT_SUPORTED", "The language is not supported in the format."),
        0xC00D32D9: ("NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE", "There is no RFC1766 name translation for the supplied locale id."),
        0xC00D32DA: ("NS_E_METADATA_NOT_AVAILABLE", "The metadata (or metadata item) is not available."),
        0xC00D32DB: ("NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE", "The cached metadata (or metadata item) is not available."),
        0xC00D32DC: ("NS_E_METADATA_INVALID_DOCUMENT_TYPE", "The metadata document is invalid."),
        0xC00D32DD: ("NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE", "The metadata content identifier is not available."),
        0xC00D32DE: ("NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE", "Cannot retrieve metadata from the offline metadata cache."),
        0xC0261003: ("ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM", "Checksum of the obtained monitor descriptor is invalid."),
        0xC0261004: ("ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK", "Monitor descriptor contains an invalid standard timing block."),
        0xC0261005: ("ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED", "Windows Management Instrumentation (WMI) data block registration failed for one of the MSMonitorClass WMI subclasses."),
        0xC0261006: ("ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK", "Provided monitor descriptor block is either corrupted or does not contain the monitor's detailed serial number."),
        0xC0261007: ("ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK", "Provided monitor descriptor block is either corrupted or does not contain the monitor's user-friendly name."),
        0xC0261008: ("ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA", "There is no monitor descriptor data at the specified (offset, size) region."),
        0xC0261009: ("ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK", "Monitor descriptor contains an invalid detailed timing block."),
        0xC0262000: ("ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER", "Exclusive mode ownership is needed to create unmanaged primary allocation."),
        0xC0262001: ("ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER", "The driver needs more direct memory access (DMA) buffer space to complete the requested operation."),
        0xC0262002: ("ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER", "Specified display adapter handle is invalid."),
        0xC0262003: ("ERROR_GRAPHICS_ADAPTER_WAS_RESET", "Specified display adapter and all of its state has been reset."),
        0xC0262004: ("ERROR_GRAPHICS_INVALID_DRIVER_MODEL", "The driver stack does not match the expected driver model."),
        0xC0262005: ("ERROR_GRAPHICS_PRESENT_MODE_CHANGED", "Present happened but ended up into the changed desktop mode."),
        0xC0262006: ("ERROR_GRAPHICS_PRESENT_OCCLUDED", "Nothing to present due to desktop occlusion."),
        0xC0262007: ("ERROR_GRAPHICS_PRESENT_DENIED", "Not able to present due to denial of desktop access."),
        0xC0262008: ("ERROR_GRAPHICS_CANNOTCOLORCONVERT", "Not able to present with color conversion."),
        0xC0262100: ("ERROR_GRAPHICS_NO_VIDEO_MEMORY", "Not enough video memory available to complete the operation."),
        0xC0262101: ("ERROR_GRAPHICS_CANT_LOCK_MEMORY", "Could not probe and lock the underlying memory of an allocation."),
        0xC0262102: ("ERROR_GRAPHICS_ALLOCATION_BUSY", "The allocation is currently busy."),
        0xC0262103: ("ERROR_GRAPHICS_TOO_MANY_REFERENCES", "An object being referenced has reach the maximum reference count already and cannot be referenced further."),
        0xC0262104: ("ERROR_GRAPHICS_TRY_AGAIN_LATER", "A problem could not be solved due to some currently existing condition. The problem should be tried again later."),
        0xC0262105: ("ERROR_GRAPHICS_TRY_AGAIN_NOW", "A problem could not be solved due to some currently existing condition. The problem should be tried again immediately."),
        0xC0262106: ("ERROR_GRAPHICS_ALLOCATION_INVALID", "The allocation is invalid."),
        0xC0262107: ("ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE", "No more unswizzling apertures are currently available."),
        0xC0262108: ("ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED", "The current allocation cannot be unswizzled by an aperture."),
        0xC0262109: ("ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION", "The request failed because a pinned allocation cannot be evicted."),
        0xC0262110: ("ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE", "The allocation cannot be used from its current segment location for the specified operation."),
        0xC0262111: ("ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION", "A locked allocation cannot be used in the current command buffer."),
        0xC0262112: ("ERROR_GRAPHICS_ALLOCATION_CLOSED", "The allocation being referenced has been closed permanently."),
        0xC0262113: ("ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE", "An invalid allocation instance is being referenced."),
        0xC0262114: ("ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE", "An invalid allocation handle is being referenced."),
        0xC0262115: ("ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE", "The allocation being referenced does not belong to the current device."),
        0xC0262116: ("ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST", "The specified allocation lost its content."),
        0xC0262200: ("ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE", "Graphics processing unit (GPU) exception is detected on the given device. The device is not able to be scheduled."),
        0xC0262300: ("ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY", "Specified video present network (VidPN) topology is invalid."),
        0xC0262301: ("ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED", "Specified VidPN topology is valid but is not supported by this model of the display adapter."),
        0xC0262302: ("ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED", "Specified VidPN topology is valid but is not supported by the display adapter at this time, due to current allocation of its resources."),
        0xC0262303: ("ERROR_GRAPHICS_INVALID_VIDPN", "Specified VidPN handle is invalid."),
        0xC0262304: ("ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE", "Specified video present source is invalid."),
        0xC0262305: ("ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET", "Specified video present target is invalid."),
        0xC0262306: ("ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED", "Specified VidPN modality is not supported (for example, at least two of the pinned modes are not cofunctional)."),
        0xC0262308: ("ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET", "Specified VidPN source mode set is invalid."),
        0xC0262309: ("ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET", "Specified VidPN target mode set is invalid."),
        0xC026230A: ("ERROR_GRAPHICS_INVALID_FREQUENCY", "Specified video signal frequency is invalid."),
        0xC026230B: ("ERROR_GRAPHICS_INVALID_ACTIVE_REGION", "Specified video signal active region is invalid."),
        0xC026230C: ("ERROR_GRAPHICS_INVALID_TOTAL_REGION", "Specified video signal total region is invalid."),
        0xC0262310: ("ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE", "Specified video present source mode is invalid."),
        0xC0262311: ("ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE", "Specified video present target mode is invalid."),
        0xC0262312: ("ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET", "Pinned mode must remain in the set on VidPN's cofunctional modality enumeration."),
        0xC0262313: ("ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY", "Specified video present path is already in the VidPN topology."),
        0xC0262314: ("ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET", "Specified mode is already in the mode set."),
        0xC0262315: ("ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET", "Specified video present source set is invalid."),
        0xC0262316: ("ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET", "Specified video present target set is invalid."),
        0xC0262317: ("ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET", "Specified video present source is already in the video present source set."),
        0xC0262318: ("ERROR_GRAPHICS_TARGET_ALREADY_IN_SET", "Specified video present target is already in the video present target set."),
        0xC0262319: ("ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH", "Specified VidPN present path is invalid."),
        0xC026231A: ("ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY", "Miniport has no recommendation for augmentation of the specified VidPN topology."),
        0xC026231B: ("ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET", "Specified monitor frequency range set is invalid."),
        0xC026231C: ("ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE", "Specified monitor frequency range is invalid."),
        0xC026231D: ("ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET", "Specified frequency range is not in the specified monitor frequency range set."),
        0xC026231F: ("ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET", "Specified frequency range is already in the specified monitor frequency range set."),
        0xC0262320: ("ERROR_GRAPHICS_STALE_MODESET", "Specified mode set is stale. Reacquire the new mode set."),
        0xC0262321: ("ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET", "Specified monitor source mode set is invalid."),
        0xC0262322: ("ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE", "Specified monitor source mode is invalid."),
        0xC0262323: ("ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN", "Miniport does not have any recommendation regarding the request to provide a functional VidPN given the current display adapter configuration."),
        0xC0262324: ("ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE", "ID of the specified mode is already used by another mode in the set."),
        0xC0262325: ("ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION", "System failed to determine a mode that is supported by both the display adapter and the monitor connected to it."),
        0xC0262326: ("ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES", "Number of video present targets must be greater than or equal to the number of video present sources."),
        0xC0262327: ("ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY", "Specified present path is not in the VidPN topology."),
        0xC0262328: ("ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE", "Display adapter must have at least one video present source."),
        0xC0262329: ("ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET", "Display adapter must have at least one video present target."),
        0xC026232A: ("ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET", "Specified monitor descriptor set is invalid."),
        0xC026232B: ("ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR", "Specified monitor descriptor is invalid."),
        0xC026232C: ("ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET", "Specified descriptor is not in the specified monitor descriptor set."),
        0xC026232D: ("ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET", "Specified descriptor is already in the specified monitor descriptor set."),
        0xC026232E: ("ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE", "ID of the specified monitor descriptor is already used by another descriptor in the set."),
        0xC026232F: ("ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE", "Specified video present target subset type is invalid."),
        0xC0262330: ("ERROR_GRAPHICS_RESOURCES_NOT_RELATED", "Two or more of the specified resources are not related to each other, as defined by the interface semantics."),
        0xC0262331: ("ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE", "ID of the specified video present source is already used by another source in the set."),
        0xC0262332: ("ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE", "ID of the specified video present target is already used by another target in the set."),
        0xC0262333: ("ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET", "Specified VidPN source cannot be used because there is no available VidPN target to connect it to."),
        0xC0262334: ("ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER", "Newly arrived monitor could not be associated with a display adapter."),
        0xC0262335: ("ERROR_GRAPHICS_NO_VIDPNMGR", "Display adapter in question does not have an associated VidPN manager."),
        0xC0262336: ("ERROR_GRAPHICS_NO_ACTIVE_VIDPN", "VidPN manager of the display adapter in question does not have an active VidPN."),
        0xC0262337: ("ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY", "Specified VidPN topology is stale. Re-acquire the new topology."),
        0xC0262338: ("ERROR_GRAPHICS_MONITOR_NOT_CONNECTED", "There is no monitor connected on the specified video present target."),
        0xC0262339: ("ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY", "Specified source is not part of the specified VidPN topology."),
        0xC026233A: ("ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE", "Specified primary surface size is invalid."),
        0xC026233B: ("ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE", "Specified visible region size is invalid."),
        0xC026233C: ("ERROR_GRAPHICS_INVALID_STRIDE", "Specified stride is invalid."),
        0xC026233D: ("ERROR_GRAPHICS_INVALID_PIXELFORMAT", "Specified pixel format is invalid."),
        0xC026233E: ("ERROR_GRAPHICS_INVALID_COLORBASIS", "Specified color basis is invalid."),
        0xC026233F: ("ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE", "Specified pixel value access mode is invalid."),
        0xC0262340: ("ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY", "Specified target is not part of the specified VidPN topology."),
        0xC0262341: ("ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT", "Failed to acquire display mode management interface."),
        0xC0262342: ("ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE", "Specified VidPN source is already owned by a display mode manager (DMM) client and cannot be used until that client releases it."),
        0xC0262343: ("ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN", "Specified VidPN is active and cannot be accessed."),
        0xC0262344: ("ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL", "Specified VidPN present path importance ordinal is invalid."),
        0xC0262345: ("ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION", "Specified VidPN present path content geometry transformation is invalid."),
        0xC0262346: ("ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED", "Specified content geometry transformation is not supported on the respective VidPN present path."),
        0xC0262347: ("ERROR_GRAPHICS_INVALID_GAMMA_RAMP", "Specified gamma ramp is invalid."),
        0xC0262348: ("ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED", "Specified gamma ramp is not supported on the respective VidPN present path."),
        0xC0262349: ("ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED", "Multisampling is not supported on the respective VidPN present path."),
        0xC026234A: ("ERROR_GRAPHICS_MODE_NOT_IN_MODESET", "Specified mode is not in the specified mode set."),
        0xC026234D: ("ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON", "Specified VidPN topology recommendation reason is invalid."),
        0xC026234E: ("ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE", "Specified VidPN present path content type is invalid."),
        0xC026234F: ("ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE", "Specified VidPN present path copy protection type is invalid."),
        0xC0262350: ("ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS", "No more than one unassigned mode set can exist at any given time for a given VidPN source or target."),
        0xC0262352: ("ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING", "The specified scan line ordering type is invalid."),
        0xC0262353: ("ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED", "Topology changes are not allowed for the specified VidPN."),
        0xC0262354: ("ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS", "All available importance ordinals are already used in the specified topology."),
        0xC0262355: ("ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT", "Specified primary surface has a different private format attribute than the current primary surface."),
        0xC0262356: ("ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM", "Specified mode pruning algorithm is invalid."),
        0xC0262400: ("ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED", "Specified display adapter child device already has an external device connected to it."),
        0xC0262401: ("ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED", "The display adapter child device does not support reporting a descriptor."),
        0xC0262430: ("ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER", "The display adapter is not linked to any other adapters."),
        0xC0262431: ("ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED", "Lead adapter in a linked configuration was not enumerated yet."),
        0xC0262432: ("ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED", "Some chain adapters in a linked configuration were not enumerated yet."),
        0xC0262433: ("ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY", "The chain of linked adapters is not ready to start because of an unknown failure."),
        0xC0262434: ("ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED", "An attempt was made to start a lead link display adapter when the chain links were not started yet."),
        0xC0262435: ("ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON", "An attempt was made to turn on a lead link display adapter when the chain links were turned off."),
        0xC0262436: ("ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE", "The adapter link was found to be in an inconsistent state. Not all adapters are in an expected PNP or power state."),
        0xC0262438: ("ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER", "The driver trying to start is not the same as the driver for the posted display adapter."),
        0xC0262500: ("ERROR_GRAPHICS_OPM_NOT_SUPPORTED", "The driver does not support Output Protection Manager (OPM)."),
        0xC0262501: ("ERROR_GRAPHICS_COPP_NOT_SUPPORTED", "The driver does not support Certified Output Protection Protocol (COPP)."),
        0xC0262502: ("ERROR_GRAPHICS_UAB_NOT_SUPPORTED", "The driver does not support a user-accessible bus (UAB)."),
        0xC0262503: ("ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS", "The specified encrypted parameters are invalid."),
        0xC0262504: ("ERROR_GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL", "An array passed to a function cannot hold all of the data that the function wants to put in it."),
        0xC0262505: ("ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST", "The GDI display device passed to this function does not have any active video outputs."),
        0xC0262506: ("ERROR_GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME", "The protected video path (PVP) cannot find an actual GDI display device that corresponds to the passed-in GDI display device name."),
        0xC0262507: ("ERROR_GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP", "This function failed because the GDI display device passed to it was not attached to the Windows desktop."),
        0xC0262508: ("ERROR_GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED", "The PVP does not support mirroring display devices because they do not have video outputs."),
        0xC026250A: ("ERROR_GRAPHICS_OPM_INVALID_POINTER", "The function failed because an invalid pointer parameter was passed to it. A pointer parameter is invalid if it is null, it points to an invalid address, it points to a kernel mode address, or it is not correctly aligned."),
        0xC026250B: ("ERROR_GRAPHICS_OPM_INTERNAL_ERROR", "An internal error caused this operation to fail."),
        0xC026250C: ("ERROR_GRAPHICS_OPM_INVALID_HANDLE", "The function failed because the caller passed in an invalid OPM user mode handle."),
        0xC026250D: ("ERROR_GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE", "This function failed because the GDI device passed to it did not have any monitors associated with it."),
        0xC026250E: ("ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH", "A certificate could not be returned because the certificate buffer passed to the function was too small."),
        0xC026250F: ("ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED", "A video output could not be created because the frame buffer is in spanning mode."),
        0xC0262510: ("ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED", "A video output could not be created because the frame buffer is in theater mode."),
        0xC0262511: ("ERROR_GRAPHICS_PVP_HFS_FAILED", "The function call failed because the display adapter's hardware functionality scan failed to validate the graphics hardware."),
        0xC0262512: ("ERROR_GRAPHICS_OPM_INVALID_SRM", "The High-Bandwidth Digital Content Protection (HDCP) System Renewability Message (SRM) passed to this function did not comply with section 5 of the HDCP 1.1 specification."),
        0xC0262513: ("ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP", "The video output cannot enable the HDCP system because it does not support it."),
        0xC0262514: ("ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP", "The video output cannot enable analog copy protection because it does not support it."),
        0xC0262515: ("ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA", "The video output cannot enable the Content Generation Management System Analog (CGMS-A) protection technology because it does not support it."),
        0xC0262516: ("ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET", "IOPMVideoOutput's GetInformation() method cannot return the version of the SRM being used because the application never successfully passed an SRM to the video output."),
        0xC0262517: ("ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH", "IOPMVideoOutput's Configure() method cannot enable the specified output protection technology because the output's screen resolution is too high."),
        0xC0262518: ("ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE", "IOPMVideoOutput's Configure() method cannot enable HDCP because the display adapter's HDCP hardware is already being used by other physical outputs."),
        0xC0262519: ("ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS", "The operating system asynchronously destroyed this OPM video output because the operating system's state changed. This error typically occurs because the monitor physical device object (PDO) associated with this video output was removed, the monitor PDO associated with this video output was stopped, the video output's session became a nonconsole session or the video output's desktop became an inactive desktop."),
        0xC026251A: ("ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS", "IOPMVideoOutput's methods cannot be called when a session is changing its type. There are currently three types of sessions: console, disconnected and remote (remote desktop protocol [RDP] or Independent Computing Architecture [ICA])."),
        0xC0262580: ("ERROR_GRAPHICS_I2C_NOT_SUPPORTED", "The monitor connected to the specified video output does not have an I2C bus."),
        0xC0262581: ("ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST", "No device on the I2C bus has the specified address."),
        0xC0262582: ("ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA", "An error occurred while transmitting data to the device on the I2C bus."),
        0xC0262583: ("ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA", "An error occurred while receiving data from the device on the I2C bus."),
        0xC0262584: ("ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED", "The monitor does not support the specified Virtual Control Panel (VCP) code."),
        0xC0262585: ("ERROR_GRAPHICS_DDCCI_INVALID_DATA", "The data received from the monitor is invalid."),
        0xC0262586: ("ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE", "A function call failed because a monitor returned an invalid Timing Status byte when the operating system used the Display Data Channel Command Interface (DDC/CI) Get Timing Report and Timing Message command to get a timing report from a monitor."),
        0xC0262587: ("ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING", "The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1 or MCCS 2 Revision 1 specification."),
        0xC0262588: ("ERROR_GRAPHICS_MCA_INTERNAL_ERROR", "An internal Monitor Configuration API error occurred."),
        0xC0262589: ("ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND", "An operation failed because a DDC/CI message had an invalid value in its command field."),
        0xC026258A: ("ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH", "This error occurred because a DDC/CI message length field contained an invalid value."),
        0xC026258B: ("ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM", "This error occurred because the value in a DDC/CI message checksum field did not match the message's computed checksum value. This error implies that the data was corrupted while it was being transmitted from a monitor to a computer."),
        0xC02625D6: ("ERROR_GRAPHICS_PMEA_INVALID_MONITOR", "The HMONITOR no longer exists, is not attached to the desktop, or corresponds to a mirroring device."),
        0xC02625D7: ("ERROR_GRAPHICS_PMEA_INVALID_D3D_DEVICE", "The Direct3D (D3D) device's GDI display device no longer exists, is not attached to the desktop, or is a mirroring display device."),
        0xC02625D8: ("ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE", "A continuous VCP code's current value is greater than its maximum value. This error code indicates that a monitor returned an invalid value."),
        0xC02625D9: ("ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION", "The monitor's VCP Version (0xDF) VCP code returned an invalid version value."),
        0xC02625DA: ("ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION", "The monitor does not comply with the Monitor Control Command Set (MCCS) specification it claims to support."),
        0xC02625DB: ("ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH", "The MCCS version in a monitor's mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version (0xDF) VCP code is used."),
        0xC02625DC: ("ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION", "The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, the MCCS 2.0 specification, or the MCCS 2.0 Revision 1 specification."),
        0xC02625DE: ("ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED", "The monitor returned an invalid monitor technology type. CRT, plasma, and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification."),
        0xC02625DF: ("ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE", "The SetMonitorColorTemperature() caller passed a color temperature to it that the current monitor did not support. CRT, plasma, and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification."),
        0xC02625E0: ("ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED", "This function can be used only if a program is running in the local console session. It cannot be used if the program is running on a remote desktop session or on a terminal server session."),
}

# Error Codes

STG_S_CONVERTED                                              = 0x00030200
STG_S_BLOCK                                                  = 0x00030201
STG_S_RETRYNOW                                               = 0x00030202
STG_S_MONITORING                                             = 0x00030203
STG_S_MULTIPLEOPENS                                          = 0x00030204
STG_S_CONSOLIDATIONFAILED                                    = 0x00030205
STG_S_CANNOTCONSOLIDATE                                      = 0x00030206
OLE_S_USEREG                                                 = 0x00040000
OLE_S_STATIC                                                 = 0x00040001
OLE_S_MAC_CLIPFORMAT                                         = 0x00040002
DRAGDROP_S_DROP                                              = 0x00040100
DRAGDROP_S_CANCEL                                            = 0x00040101
DRAGDROP_S_USEDEFAULTCURSORS                                 = 0x00040102
DATA_S_SAMEFORMATETC                                         = 0x00040130
VIEW_S_ALREADY_FROZEN                                        = 0x00040140
CACHE_S_FORMATETC_NOTSUPPORTED                               = 0x00040170
CACHE_S_SAMECACHE                                            = 0x00040171
CACHE_S_SOMECACHES_NOTUPDATED                                = 0x00040172
OLEOBJ_S_INVALIDVERB                                         = 0x00040180
OLEOBJ_S_CANNOT_DOVERB_NOW                                   = 0x00040181
OLEOBJ_S_INVALIDHWND                                         = 0x00040182
INPLACE_S_TRUNCATED                                          = 0x000401A0
CONVERT10_S_NO_PRESENTATION                                  = 0x000401C0
MK_S_REDUCED_TO_SELF                                         = 0x000401E2
MK_S_ME                                                      = 0x000401E4
MK_S_HIM                                                     = 0x000401E5
MK_S_US                                                      = 0x000401E6
MK_S_MONIKERALREADYREGISTERED                                = 0x000401E7
EVENT_S_SOME_SUBSCRIBERS_FAILED                              = 0x00040200
EVENT_S_NOSUBSCRIBERS                                        = 0x00040202
SCHED_S_TASK_READY                                           = 0x00041300
SCHED_S_TASK_RUNNING                                         = 0x00041301
SCHED_S_TASK_DISABLED                                        = 0x00041302
SCHED_S_TASK_HAS_NOT_RUN                                     = 0x00041303
SCHED_S_TASK_NO_MORE_RUNS                                    = 0x00041304
SCHED_S_TASK_NOT_SCHEDULED                                   = 0x00041305
SCHED_S_TASK_TERMINATED                                      = 0x00041306
SCHED_S_TASK_NO_VALID_TRIGGERS                               = 0x00041307
SCHED_S_EVENT_TRIGGER                                        = 0x00041308
SCHED_S_SOME_TRIGGERS_FAILED                                 = 0x0004131B
SCHED_S_BATCH_LOGON_PROBLEM                                  = 0x0004131C
XACT_S_ASYNC                                                 = 0x0004D000
XACT_S_READONLY                                              = 0x0004D002
XACT_S_SOMENORETAIN                                          = 0x0004D003
XACT_S_OKINFORM                                              = 0x0004D004
XACT_S_MADECHANGESCONTENT                                    = 0x0004D005
XACT_S_MADECHANGESINFORM                                     = 0x0004D006
XACT_S_ALLNORETAIN                                           = 0x0004D007
XACT_S_ABORTING                                              = 0x0004D008
XACT_S_SINGLEPHASE                                           = 0x0004D009
XACT_S_LOCALLY_OK                                            = 0x0004D00A
XACT_S_LASTRESOURCEMANAGER                                   = 0x0004D010
CO_S_NOTALLINTERFACES                                        = 0x00080012
CO_S_MACHINENAMENOTFOUND                                     = 0x00080013
SEC_I_CONTINUE_NEEDED                                        = 0x00090312
SEC_I_COMPLETE_NEEDED                                        = 0x00090313
SEC_I_COMPLETE_AND_CONTINUE                                  = 0x00090314
SEC_I_LOCAL_LOGON                                            = 0x00090315
SEC_I_CONTEXT_EXPIRED                                        = 0x00090317
SEC_I_INCOMPLETE_CREDENTIALS                                 = 0x00090320
SEC_I_RENEGOTIATE                                            = 0x00090321
SEC_I_NO_LSA_CONTEXT                                         = 0x00090323
SEC_I_SIGNATURE_NEEDED                                       = 0x0009035C
CRYPT_I_NEW_PROTECTION_REQUIRED                              = 0x00091012
NS_S_CALLPENDING                                             = 0x000D0000
NS_S_CALLABORTED                                             = 0x000D0001
NS_S_STREAM_TRUNCATED                                        = 0x000D0002
NS_S_REBUFFERING                                             = 0x000D0BC8
NS_S_DEGRADING_QUALITY                                       = 0x000D0BC9
NS_S_TRANSCRYPTOR_EOF                                        = 0x000D0BDB
NS_S_WMP_UI_VERSIONMISMATCH                                  = 0x000D0FE8
NS_S_WMP_EXCEPTION                                           = 0x000D0FE9
NS_S_WMP_LOADED_GIF_IMAGE                                    = 0x000D1040
NS_S_WMP_LOADED_PNG_IMAGE                                    = 0x000D1041
NS_S_WMP_LOADED_BMP_IMAGE                                    = 0x000D1042
NS_S_WMP_LOADED_JPG_IMAGE                                    = 0x000D1043
NS_S_WMG_FORCE_DROP_FRAME                                    = 0x000D104F
NS_S_WMR_ALREADYRENDERED                                     = 0x000D105F
NS_S_WMR_PINTYPEPARTIALMATCH                                 = 0x000D1060
NS_S_WMR_PINTYPEFULLMATCH                                    = 0x000D1061
NS_S_WMG_ADVISE_DROP_FRAME                                   = 0x000D1066
NS_S_WMG_ADVISE_DROP_TO_KEYFRAME                             = 0x000D1067
NS_S_NEED_TO_BUY_BURN_RIGHTS                                 = 0x000D10DB
NS_S_WMPCORE_PLAYLISTCLEARABORT                              = 0x000D10FE
NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT                         = 0x000D10FF
NS_S_WMPCORE_PLAYLIST_CREATION_PENDING                       = 0x000D1102
NS_S_WMPCORE_MEDIA_VALIDATION_PENDING                        = 0x000D1103
NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED      = 0x000D1104
NS_S_WMPCORE_COMMAND_NOT_AVAILABLE                           = 0x000D1105
NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED                    = 0x000D1106
NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS                   = 0x000D1107
NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA              = 0x000D1108
NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING               = 0x000D1109
NS_S_WMPCORE_MORE_NODES_AVAIABLE                             = 0x000D110A
NS_S_WMPBR_SUCCESS                                           = 0x000D1135
NS_S_WMPBR_PARTIALSUCCESS                                    = 0x000D1136
NS_S_WMPEFFECT_TRANSPARENT                                   = 0x000D1144
NS_S_WMPEFFECT_OPAQUE                                        = 0x000D1145
NS_S_OPERATION_PENDING                                       = 0x000D114E
NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE                       = 0x000D1359
NS_S_NAVIGATION_COMPLETE_WITH_ERRORS                         = 0x000D135E
NS_S_TRACK_ALREADY_DOWNLOADED                                = 0x000D1361
NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS              = 0x000D1519
NS_S_DRM_LICENSE_ACQUIRED                                    = 0x000D2726
NS_S_DRM_INDIVIDUALIZED                                      = 0x000D2727
NS_S_DRM_MONITOR_CANCELLED                                   = 0x000D2746
NS_S_DRM_ACQUIRE_CANCELLED                                   = 0x000D2747
NS_S_DRM_BURNABLE_TRACK                                      = 0x000D276E
NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTION            = 0x000D276F
NS_S_DRM_NEEDS_INDIVIDUALIZATION                             = 0x000D27DE
NS_S_REBOOT_RECOMMENDED                                      = 0x000D2AF8
NS_S_REBOOT_REQUIRED                                         = 0x000D2AF9
NS_S_EOSRECEDING                                             = 0x000D2F09
NS_S_CHANGENOTICE                                            = 0x000D2F0D
ERROR_FLT_IO_COMPLETE                                        = 0x001F0001
ERROR_GRAPHICS_MODE_NOT_PINNED                               = 0x00262307
ERROR_GRAPHICS_NO_PREFERRED_MODE                             = 0x0026231E
ERROR_GRAPHICS_DATASET_IS_EMPTY                              = 0x0026234B
ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET                   = 0x0026234C
ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED = 0x00262351
PLA_S_PROPERTY_IGNORED                                       = 0x00300100
ERROR_NDIS_INDICATION_REQUIRED                               = 0x00340001
TRK_S_OUT_OF_SYNC                                            = 0x0DEAD100
TRK_VOLUME_NOT_FOUND                                         = 0x0DEAD102
TRK_VOLUME_NOT_OWNED                                         = 0x0DEAD103
TRK_S_NOTIFICATION_QUOTA_EXCEEDED                            = 0x0DEAD107
NS_I_TIGER_START                                             = 0x400D004F
NS_I_CUB_START                                               = 0x400D0051
NS_I_CUB_RUNNING                                             = 0x400D0052
NS_I_DISK_START                                              = 0x400D0054
NS_I_DISK_REBUILD_STARTED                                    = 0x400D0056
NS_I_DISK_REBUILD_FINISHED                                   = 0x400D0057
NS_I_DISK_REBUILD_ABORTED                                    = 0x400D0058
NS_I_LIMIT_FUNNELS                                           = 0x400D0059
NS_I_START_DISK                                              = 0x400D005A
NS_I_STOP_DISK                                               = 0x400D005B
NS_I_STOP_CUB                                                = 0x400D005C
NS_I_KILL_USERSESSION                                        = 0x400D005D
NS_I_KILL_CONNECTION                                         = 0x400D005E
NS_I_REBUILD_DISK                                            = 0x400D005F
MCMADM_I_NO_EVENTS                                           = 0x400D0069
NS_I_LOGGING_FAILED                                          = 0x400D006E
NS_I_LIMIT_BANDWIDTH                                         = 0x400D0070
NS_I_CUB_UNFAIL_LINK                                         = 0x400D0191
NS_I_RESTRIPE_START                                          = 0x400D0193
NS_I_RESTRIPE_DONE                                           = 0x400D0194
NS_I_RESTRIPE_DISK_OUT                                       = 0x400D0196
NS_I_RESTRIPE_CUB_OUT                                        = 0x400D0197
NS_I_DISK_STOP                                               = 0x400D0198
NS_I_PLAYLIST_CHANGE_RECEDING                                = 0x400D14BE
NS_I_RECONNECTED                                             = 0x400D2EFF
NS_I_NOLOG_STOP                                              = 0x400D2F01
NS_I_EXISTING_PACKETIZER                                     = 0x400D2F03
NS_I_MANUAL_PROXY                                            = 0x400D2F04
ERROR_GRAPHICS_DRIVER_MISMATCH                               = 0x40262009
ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS                          = 0x4026242F
ERROR_GRAPHICS_LEADLINK_START_DEFERRED                       = 0x40262437
ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY                        = 0x40262439
ERROR_GRAPHICS_START_DEFERRED                                = 0x4026243A
E_PENDING                                                    = 0x8000000A
E_NOTIMPL                                                    = 0x80004001
E_NOINTERFACE                                                = 0x80004002
E_POINTER                                                    = 0x80004003
E_ABORT                                                      = 0x80004004
E_FAIL                                                       = 0x80004005
CO_E_INIT_TLS                                                = 0x80004006
CO_E_INIT_SHARED_ALLOCATOR                                   = 0x80004007
CO_E_INIT_MEMORY_ALLOCATOR                                   = 0x80004008
CO_E_INIT_CLASS_CACHE                                        = 0x80004009
CO_E_INIT_RPC_CHANNEL                                        = 0x8000400A
CO_E_INIT_TLS_SET_CHANNEL_CONTROL                            = 0x8000400B
CO_E_INIT_TLS_CHANNEL_CONTROL                                = 0x8000400C
CO_E_INIT_UNACCEPTED_USER_ALLOCATOR                          = 0x8000400D
CO_E_INIT_SCM_MUTEX_EXISTS                                   = 0x8000400E
CO_E_INIT_SCM_FILE_MAPPING_EXISTS                            = 0x8000400F
CO_E_INIT_SCM_MAP_VIEW_OF_FILE                               = 0x80004010
CO_E_INIT_SCM_EXEC_FAILURE                                   = 0x80004011
CO_E_INIT_ONLY_SINGLE_THREADED                               = 0x80004012
CO_E_CANT_REMOTE                                             = 0x80004013
CO_E_BAD_SERVER_NAME                                         = 0x80004014
CO_E_WRONG_SERVER_IDENTITY                                   = 0x80004015
CO_E_OLE1DDE_DISABLED                                        = 0x80004016
CO_E_RUNAS_SYNTAX                                            = 0x80004017
CO_E_CREATEPROCESS_FAILURE                                   = 0x80004018
CO_E_RUNAS_CREATEPROCESS_FAILURE                             = 0x80004019
CO_E_RUNAS_LOGON_FAILURE                                     = 0x8000401A
CO_E_LAUNCH_PERMSSION_DENIED                                 = 0x8000401B
CO_E_START_SERVICE_FAILURE                                   = 0x8000401C
CO_E_REMOTE_COMMUNICATION_FAILURE                            = 0x8000401D
CO_E_SERVER_START_TIMEOUT                                    = 0x8000401E
CO_E_CLSREG_INCONSISTENT                                     = 0x8000401F
CO_E_IIDREG_INCONSISTENT                                     = 0x80004020
CO_E_NOT_SUPPORTED                                           = 0x80004021
CO_E_RELOAD_DLL                                              = 0x80004022
CO_E_MSI_ERROR                                               = 0x80004023
CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT                = 0x80004024
CO_E_SERVER_PAUSED                                           = 0x80004025
CO_E_SERVER_NOT_PAUSED                                       = 0x80004026
CO_E_CLASS_DISABLED                                          = 0x80004027
CO_E_CLRNOTAVAILABLE                                         = 0x80004028
CO_E_ASYNC_WORK_REJECTED                                     = 0x80004029
CO_E_SERVER_INIT_TIMEOUT                                     = 0x8000402A
CO_E_NO_SECCTX_IN_ACTIVATE                                   = 0x8000402B
CO_E_TRACKER_CONFIG                                          = 0x80004030
CO_E_THREADPOOL_CONFIG                                       = 0x80004031
CO_E_SXS_CONFIG                                              = 0x80004032
CO_E_MALFORMED_SPN                                           = 0x80004033
E_UNEXPECTED                                                 = 0x8000FFFF
RPC_E_CALL_REJECTED                                          = 0x80010001
RPC_E_CALL_CANCELED                                          = 0x80010002
RPC_E_CANTPOST_INSENDCALL                                    = 0x80010003
RPC_E_CANTCALLOUT_INASYNCCALL                                = 0x80010004
RPC_E_CANTCALLOUT_INEXTERNALCALL                             = 0x80010005
RPC_E_CONNECTION_TERMINATED                                  = 0x80010006
RPC_E_SERVER_DIED                                            = 0x80010007
RPC_E_CLIENT_DIED                                            = 0x80010008
RPC_E_INVALID_DATAPACKET                                     = 0x80010009
RPC_E_CANTTRANSMIT_CALL                                      = 0x8001000A
RPC_E_CLIENT_CANTMARSHAL_DATA                                = 0x8001000B
RPC_E_CLIENT_CANTUNMARSHAL_DATA                              = 0x8001000C
RPC_E_SERVER_CANTMARSHAL_DATA                                = 0x8001000D
RPC_E_SERVER_CANTUNMARSHAL_DATA                              = 0x8001000E
RPC_E_INVALID_DATA                                           = 0x8001000F
RPC_E_INVALID_PARAMETER                                      = 0x80010010
RPC_E_CANTCALLOUT_AGAIN                                      = 0x80010011
RPC_E_SERVER_DIED_DNE                                        = 0x80010012
RPC_E_SYS_CALL_FAILED                                        = 0x80010100
RPC_E_OUT_OF_RESOURCES                                       = 0x80010101
RPC_E_ATTEMPTED_MULTITHREAD                                  = 0x80010102
RPC_E_NOT_REGISTERED                                         = 0x80010103
RPC_E_FAULT                                                  = 0x80010104
RPC_E_SERVERFAULT                                            = 0x80010105
RPC_E_CHANGED_MODE                                           = 0x80010106
RPC_E_INVALIDMETHOD                                          = 0x80010107
RPC_E_DISCONNECTED                                           = 0x80010108
RPC_E_RETRY                                                  = 0x80010109
RPC_E_SERVERCALL_RETRYLATER                                  = 0x8001010A
RPC_E_SERVERCALL_REJECTED                                    = 0x8001010B
RPC_E_INVALID_CALLDATA                                       = 0x8001010C
RPC_E_CANTCALLOUT_ININPUTSYNCCALL                            = 0x8001010D
RPC_E_WRONG_THREAD                                           = 0x8001010E
RPC_E_THREAD_NOT_INIT                                        = 0x8001010F
RPC_E_VERSION_MISMATCH                                       = 0x80010110
RPC_E_INVALID_HEADER                                         = 0x80010111
RPC_E_INVALID_EXTENSION                                      = 0x80010112
RPC_E_INVALID_IPID                                           = 0x80010113
RPC_E_INVALID_OBJECT                                         = 0x80010114
RPC_S_CALLPENDING                                            = 0x80010115
RPC_S_WAITONTIMER                                            = 0x80010116
RPC_E_CALL_COMPLETE                                          = 0x80010117
RPC_E_UNSECURE_CALL                                          = 0x80010118
RPC_E_TOO_LATE                                               = 0x80010119
RPC_E_NO_GOOD_SECURITY_PACKAGES                              = 0x8001011A
RPC_E_ACCESS_DENIED                                          = 0x8001011B
RPC_E_REMOTE_DISABLED                                        = 0x8001011C
RPC_E_INVALID_OBJREF                                         = 0x8001011D
RPC_E_NO_CONTEXT                                             = 0x8001011E
RPC_E_TIMEOUT                                                = 0x8001011F
RPC_E_NO_SYNC                                                = 0x80010120
RPC_E_FULLSIC_REQUIRED                                       = 0x80010121
RPC_E_INVALID_STD_NAME                                       = 0x80010122
CO_E_FAILEDTOIMPERSONATE                                     = 0x80010123
CO_E_FAILEDTOGETSECCTX                                       = 0x80010124
CO_E_FAILEDTOOPENTHREADTOKEN                                 = 0x80010125
CO_E_FAILEDTOGETTOKENINFO                                    = 0x80010126
CO_E_TRUSTEEDOESNTMATCHCLIENT                                = 0x80010127
CO_E_FAILEDTOQUERYCLIENTBLANKET                              = 0x80010128
CO_E_FAILEDTOSETDACL                                         = 0x80010129
CO_E_ACCESSCHECKFAILED                                       = 0x8001012A
CO_E_NETACCESSAPIFAILED                                      = 0x8001012B
CO_E_WRONGTRUSTEENAMESYNTAX                                  = 0x8001012C
CO_E_INVALIDSID                                              = 0x8001012D
CO_E_CONVERSIONFAILED                                        = 0x8001012E
CO_E_NOMATCHINGSIDFOUND                                      = 0x8001012F
CO_E_LOOKUPACCSIDFAILED                                      = 0x80010130
CO_E_NOMATCHINGNAMEFOUND                                     = 0x80010131
CO_E_LOOKUPACCNAMEFAILED                                     = 0x80010132
CO_E_SETSERLHNDLFAILED                                       = 0x80010133
CO_E_FAILEDTOGETWINDIR                                       = 0x80010134
CO_E_PATHTOOLONG                                             = 0x80010135
CO_E_FAILEDTOGENUUID                                         = 0x80010136
CO_E_FAILEDTOCREATEFILE                                      = 0x80010137
CO_E_FAILEDTOCLOSEHANDLE                                     = 0x80010138
CO_E_EXCEEDSYSACLLIMIT                                       = 0x80010139
CO_E_ACESINWRONGORDER                                        = 0x8001013A
CO_E_INCOMPATIBLESTREAMVERSION                               = 0x8001013B
CO_E_FAILEDTOOPENPROCESSTOKEN                                = 0x8001013C
CO_E_DECODEFAILED                                            = 0x8001013D
CO_E_ACNOTINITIALIZED                                        = 0x8001013F
CO_E_CANCEL_DISABLED                                         = 0x80010140
RPC_E_UNEXPECTED                                             = 0x8001FFFF
DISP_E_UNKNOWNINTERFACE                                      = 0x80020001
DISP_E_MEMBERNOTFOUND                                        = 0x80020003
DISP_E_PARAMNOTFOUND                                         = 0x80020004
DISP_E_TYPEMISMATCH                                          = 0x80020005
DISP_E_UNKNOWNNAME                                           = 0x80020006
DISP_E_NONAMEDARGS                                           = 0x80020007
DISP_E_BADVARTYPE                                            = 0x80020008
DISP_E_EXCEPTION                                             = 0x80020009
DISP_E_OVERFLOW                                              = 0x8002000A
DISP_E_BADINDEX                                              = 0x8002000B
DISP_E_UNKNOWNLCID                                           = 0x8002000C
DISP_E_ARRAYISLOCKED                                         = 0x8002000D
DISP_E_BADPARAMCOUNT                                         = 0x8002000E
DISP_E_PARAMNOTOPTIONAL                                      = 0x8002000F
DISP_E_BADCALLEE                                             = 0x80020010
DISP_E_NOTACOLLECTION                                        = 0x80020011
DISP_E_DIVBYZERO                                             = 0x80020012
DISP_E_BUFFERTOOSMALL                                        = 0x80020013
TYPE_E_BUFFERTOOSMALL                                        = 0x80028016
TYPE_E_FIELDNOTFOUND                                         = 0x80028017
TYPE_E_INVDATAREAD                                           = 0x80028018
TYPE_E_UNSUPFORMAT                                           = 0x80028019
TYPE_E_REGISTRYACCESS                                        = 0x8002801C
TYPE_E_LIBNOTREGISTERED                                      = 0x8002801D
TYPE_E_UNDEFINEDTYPE                                         = 0x80028027
TYPE_E_QUALIFIEDNAMEDISALLOWED                               = 0x80028028
TYPE_E_INVALIDSTATE                                          = 0x80028029
TYPE_E_WRONGTYPEKIND                                         = 0x8002802A
TYPE_E_ELEMENTNOTFOUND                                       = 0x8002802B
TYPE_E_AMBIGUOUSNAME                                         = 0x8002802C
TYPE_E_NAMECONFLICT                                          = 0x8002802D
TYPE_E_UNKNOWNLCID                                           = 0x8002802E
TYPE_E_DLLFUNCTIONNOTFOUND                                   = 0x8002802F
TYPE_E_BADMODULEKIND                                         = 0x800288BD
TYPE_E_SIZETOOBIG                                            = 0x800288C5
TYPE_E_DUPLICATEID                                           = 0x800288C6
TYPE_E_INVALIDID                                             = 0x800288CF
TYPE_E_TYPEMISMATCH                                          = 0x80028CA0
TYPE_E_OUTOFBOUNDS                                           = 0x80028CA1
TYPE_E_IOERROR                                               = 0x80028CA2
TYPE_E_CANTCREATETMPFILE                                     = 0x80028CA3
TYPE_E_CANTLOADLIBRARY                                       = 0x80029C4A
TYPE_E_INCONSISTENTPROPFUNCS                                 = 0x80029C83
TYPE_E_CIRCULARTYPE                                          = 0x80029C84
STG_E_INVALIDFUNCTION                                        = 0x80030001
STG_E_FILENOTFOUND                                           = 0x80030002
STG_E_PATHNOTFOUND                                           = 0x80030003
STG_E_TOOMANYOPENFILES                                       = 0x80030004
STG_E_ACCESSDENIED                                           = 0x80030005
STG_E_INVALIDHANDLE                                          = 0x80030006
STG_E_INSUFFICIENTMEMORY                                     = 0x80030008
STG_E_INVALIDPOINTER                                         = 0x80030009
STG_E_NOMOREFILES                                            = 0x80030012
STG_E_DISKISWRITEPROTECTED                                   = 0x80030013
STG_E_SEEKERROR                                              = 0x80030019
STG_E_WRITEFAULT                                             = 0x8003001D
STG_E_READFAULT                                              = 0x8003001E
STG_E_SHAREVIOLATION                                         = 0x80030020
STG_E_LOCKVIOLATION                                          = 0x80030021
STG_E_FILEALREADYEXISTS                                      = 0x80030050
STG_E_INVALIDPARAMETER                                       = 0x80030057
STG_E_MEDIUMFULL                                             = 0x80030070
STG_E_PROPSETMISMATCHED                                      = 0x800300F0
STG_E_ABNORMALAPIEXIT                                        = 0x800300FA
STG_E_INVALIDHEADER                                          = 0x800300FB
STG_E_INVALIDNAME                                            = 0x800300FC
STG_E_UNKNOWN                                                = 0x800300FD
STG_E_UNIMPLEMENTEDFUNCTION                                  = 0x800300FE
STG_E_INVALIDFLAG                                            = 0x800300FF
STG_E_INUSE                                                  = 0x80030100
STG_E_NOTCURRENT                                             = 0x80030101
STG_E_REVERTED                                               = 0x80030102
STG_E_CANTSAVE                                               = 0x80030103
STG_E_OLDFORMAT                                              = 0x80030104
STG_E_OLDDLL                                                 = 0x80030105
STG_E_SHAREREQUIRED                                          = 0x80030106
STG_E_NOTFILEBASEDSTORAGE                                    = 0x80030107
STG_E_EXTANTMARSHALLINGS                                     = 0x80030108
STG_E_DOCFILECORRUPT                                         = 0x80030109
STG_E_BADBASEADDRESS                                         = 0x80030110
STG_E_DOCFILETOOLARGE                                        = 0x80030111
STG_E_NOTSIMPLEFORMAT                                        = 0x80030112
STG_E_INCOMPLETE                                             = 0x80030201
STG_E_TERMINATED                                             = 0x80030202
STG_E_STATUS_COPY_PROTECTION_FAILURE                         = 0x80030305
STG_E_CSS_AUTHENTICATION_FAILURE                             = 0x80030306
STG_E_CSS_KEY_NOT_PRESENT                                    = 0x80030307
STG_E_CSS_KEY_NOT_ESTABLISHED                                = 0x80030308
STG_E_CSS_SCRAMBLED_SECTOR                                   = 0x80030309
STG_E_CSS_REGION_MISMATCH                                    = 0x8003030A
STG_E_RESETS_EXHAUSTED                                       = 0x8003030B
OLE_E_OLEVERB                                                = 0x80040000
OLE_E_ADVF                                                   = 0x80040001
OLE_E_ENUM_NOMORE                                            = 0x80040002
OLE_E_ADVISENOTSUPPORTED                                     = 0x80040003
OLE_E_NOCONNECTION                                           = 0x80040004
OLE_E_NOTRUNNING                                             = 0x80040005
OLE_E_NOCACHE                                                = 0x80040006
OLE_E_BLANK                                                  = 0x80040007
OLE_E_CLASSDIFF                                              = 0x80040008
OLE_E_CANT_GETMONIKER                                        = 0x80040009
OLE_E_CANT_BINDTOSOURCE                                      = 0x8004000A
OLE_E_STATIC                                                 = 0x8004000B
OLE_E_PROMPTSAVECANCELLED                                    = 0x8004000C
OLE_E_INVALIDRECT                                            = 0x8004000D
OLE_E_WRONGCOMPOBJ                                           = 0x8004000E
OLE_E_INVALIDHWND                                            = 0x8004000F
OLE_E_NOT_INPLACEACTIVE                                      = 0x80040010
OLE_E_CANTCONVERT                                            = 0x80040011
OLE_E_NOSTORAGE                                              = 0x80040012
DV_E_FORMATETC                                               = 0x80040064
DV_E_DVTARGETDEVICE                                          = 0x80040065
DV_E_STGMEDIUM                                               = 0x80040066
DV_E_STATDATA                                                = 0x80040067
DV_E_LINDEX                                                  = 0x80040068
DV_E_TYMED                                                   = 0x80040069
DV_E_CLIPFORMAT                                              = 0x8004006A
DV_E_DVASPECT                                                = 0x8004006B
DV_E_DVTARGETDEVICE_SIZE                                     = 0x8004006C
DV_E_NOIVIEWOBJECT                                           = 0x8004006D
DRAGDROP_E_NOTREGISTERED                                     = 0x80040100
DRAGDROP_E_ALREADYREGISTERED                                 = 0x80040101
DRAGDROP_E_INVALIDHWND                                       = 0x80040102
CLASS_E_NOAGGREGATION                                        = 0x80040110
CLASS_E_CLASSNOTAVAILABLE                                    = 0x80040111
CLASS_E_NOTLICENSED                                          = 0x80040112
VIEW_E_DRAW                                                  = 0x80040140
REGDB_E_READREGDB                                            = 0x80040150
REGDB_E_WRITEREGDB                                           = 0x80040151
REGDB_E_KEYMISSING                                           = 0x80040152
REGDB_E_INVALIDVALUE                                         = 0x80040153
REGDB_E_CLASSNOTREG                                          = 0x80040154
REGDB_E_IIDNOTREG                                            = 0x80040155
REGDB_E_BADTHREADINGMODEL                                    = 0x80040156
CAT_E_CATIDNOEXIST                                           = 0x80040160
CAT_E_NODESCRIPTION                                          = 0x80040161
CS_E_PACKAGE_NOTFOUND                                        = 0x80040164
CS_E_NOT_DELETABLE                                           = 0x80040165
CS_E_CLASS_NOTFOUND                                          = 0x80040166
CS_E_INVALID_VERSION                                         = 0x80040167
CS_E_NO_CLASSSTORE                                           = 0x80040168
CS_E_OBJECT_NOTFOUND                                         = 0x80040169
CS_E_OBJECT_ALREADY_EXISTS                                   = 0x8004016A
CS_E_INVALID_PATH                                            = 0x8004016B
CS_E_NETWORK_ERROR                                           = 0x8004016C
CS_E_ADMIN_LIMIT_EXCEEDED                                    = 0x8004016D
CS_E_SCHEMA_MISMATCH                                         = 0x8004016E
CS_E_INTERNAL_ERROR                                          = 0x8004016F
CACHE_E_NOCACHE_UPDATED                                      = 0x80040170
OLEOBJ_E_NOVERBS                                             = 0x80040180
OLEOBJ_E_INVALIDVERB                                         = 0x80040181
INPLACE_E_NOTUNDOABLE                                        = 0x800401A0
INPLACE_E_NOTOOLSPACE                                        = 0x800401A1
CONVERT10_E_OLESTREAM_GET                                    = 0x800401C0
CONVERT10_E_OLESTREAM_PUT                                    = 0x800401C1
CONVERT10_E_OLESTREAM_FMT                                    = 0x800401C2
CONVERT10_E_OLESTREAM_BITMAP_TO_DIB                          = 0x800401C3
CONVERT10_E_STG_FMT                                          = 0x800401C4
CONVERT10_E_STG_NO_STD_STREAM                                = 0x800401C5
CONVERT10_E_STG_DIB_TO_BITMAP                                = 0x800401C6
CLIPBRD_E_CANT_OPEN                                          = 0x800401D0
CLIPBRD_E_CANT_EMPTY                                         = 0x800401D1
CLIPBRD_E_CANT_SET                                           = 0x800401D2
CLIPBRD_E_BAD_DATA                                           = 0x800401D3
CLIPBRD_E_CANT_CLOSE                                         = 0x800401D4
MK_E_CONNECTMANUALLY                                         = 0x800401E0
MK_E_EXCEEDEDDEADLINE                                        = 0x800401E1
MK_E_NEEDGENERIC                                             = 0x800401E2
MK_E_UNAVAILABLE                                             = 0x800401E3
MK_E_SYNTAX                                                  = 0x800401E4
MK_E_NOOBJECT                                                = 0x800401E5
MK_E_INVALIDEXTENSION                                        = 0x800401E6
MK_E_INTERMEDIATEINTERFACENOTSUPPORTED                       = 0x800401E7
MK_E_NOTBINDABLE                                             = 0x800401E8
MK_E_NOTBOUND                                                = 0x800401E9
MK_E_CANTOPENFILE                                            = 0x800401EA
MK_E_MUSTBOTHERUSER                                          = 0x800401EB
MK_E_NOINVERSE                                               = 0x800401EC
MK_E_NOSTORAGE                                               = 0x800401ED
MK_E_NOPREFIX                                                = 0x800401EE
MK_E_ENUMERATION_FAILED                                      = 0x800401EF
CO_E_NOTINITIALIZED                                          = 0x800401F0
CO_E_ALREADYINITIALIZED                                      = 0x800401F1
CO_E_CANTDETERMINECLASS                                      = 0x800401F2
CO_E_CLASSSTRING                                             = 0x800401F3
CO_E_IIDSTRING                                               = 0x800401F4
CO_E_APPNOTFOUND                                             = 0x800401F5
CO_E_APPSINGLEUSE                                            = 0x800401F6
CO_E_ERRORINAPP                                              = 0x800401F7
CO_E_DLLNOTFOUND                                             = 0x800401F8
CO_E_ERRORINDLL                                              = 0x800401F9
CO_E_WRONGOSFORAPP                                           = 0x800401FA
CO_E_OBJNOTREG                                               = 0x800401FB
CO_E_OBJISREG                                                = 0x800401FC
CO_E_OBJNOTCONNECTED                                         = 0x800401FD
CO_E_APPDIDNTREG                                             = 0x800401FE
CO_E_RELEASED                                                = 0x800401FF
EVENT_E_ALL_SUBSCRIBERS_FAILED                               = 0x80040201
EVENT_E_QUERYSYNTAX                                          = 0x80040203
EVENT_E_QUERYFIELD                                           = 0x80040204
EVENT_E_INTERNALEXCEPTION                                    = 0x80040205
EVENT_E_INTERNALERROR                                        = 0x80040206
EVENT_E_INVALID_PER_USER_SID                                 = 0x80040207
EVENT_E_USER_EXCEPTION                                       = 0x80040208
EVENT_E_TOO_MANY_METHODS                                     = 0x80040209
EVENT_E_MISSING_EVENTCLASS                                   = 0x8004020A
EVENT_E_NOT_ALL_REMOVED                                      = 0x8004020B
EVENT_E_COMPLUS_NOT_INSTALLED                                = 0x8004020C
EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT            = 0x8004020D
EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT              = 0x8004020E
EVENT_E_INVALID_EVENT_CLASS_PARTITION                        = 0x8004020F
EVENT_E_PER_USER_SID_NOT_LOGGED_ON                           = 0x80040210
SCHED_E_TRIGGER_NOT_FOUND                                    = 0x80041309
SCHED_E_TASK_NOT_READY                                       = 0x8004130A
SCHED_E_TASK_NOT_RUNNING                                     = 0x8004130B
SCHED_E_SERVICE_NOT_INSTALLED                                = 0x8004130C
SCHED_E_CANNOT_OPEN_TASK                                     = 0x8004130D
SCHED_E_INVALID_TASK                                         = 0x8004130E
SCHED_E_ACCOUNT_INFORMATION_NOT_SET                          = 0x8004130F
SCHED_E_ACCOUNT_NAME_NOT_FOUND                               = 0x80041310
SCHED_E_ACCOUNT_DBASE_CORRUPT                                = 0x80041311
SCHED_E_NO_SECURITY_SERVICES                                 = 0x80041312
SCHED_E_UNKNOWN_OBJECT_VERSION                               = 0x80041313
SCHED_E_UNSUPPORTED_ACCOUNT_OPTION                           = 0x80041314
SCHED_E_SERVICE_NOT_RUNNING                                  = 0x80041315
SCHED_E_UNEXPECTEDNODE                                       = 0x80041316
SCHED_E_NAMESPACE                                            = 0x80041317
SCHED_E_INVALIDVALUE                                         = 0x80041318
SCHED_E_MISSINGNODE                                          = 0x80041319
SCHED_E_MALFORMEDXML                                         = 0x8004131A
SCHED_E_TOO_MANY_NODES                                       = 0x8004131D
SCHED_E_PAST_END_BOUNDARY                                    = 0x8004131E
SCHED_E_ALREADY_RUNNING                                      = 0x8004131F
SCHED_E_USER_NOT_LOGGED_ON                                   = 0x80041320
SCHED_E_INVALID_TASK_HASH                                    = 0x80041321
SCHED_E_SERVICE_NOT_AVAILABLE                                = 0x80041322
SCHED_E_SERVICE_TOO_BUSY                                     = 0x80041323
SCHED_E_TASK_ATTEMPTED                                       = 0x80041324
XACT_E_ALREADYOTHERSINGLEPHASE                               = 0x8004D000
XACT_E_CANTRETAIN                                            = 0x8004D001
XACT_E_COMMITFAILED                                          = 0x8004D002
XACT_E_COMMITPREVENTED                                       = 0x8004D003
XACT_E_HEURISTICABORT                                        = 0x8004D004
XACT_E_HEURISTICCOMMIT                                       = 0x8004D005
XACT_E_HEURISTICDAMAGE                                       = 0x8004D006
XACT_E_HEURISTICDANGER                                       = 0x8004D007
XACT_E_ISOLATIONLEVEL                                        = 0x8004D008
XACT_E_NOASYNC                                               = 0x8004D009
XACT_E_NOENLIST                                              = 0x8004D00A
XACT_E_NOISORETAIN                                           = 0x8004D00B
XACT_E_NORESOURCE                                            = 0x8004D00C
XACT_E_NOTCURRENT                                            = 0x8004D00D
XACT_E_NOTRANSACTION                                         = 0x8004D00E
XACT_E_NOTSUPPORTED                                          = 0x8004D00F
XACT_E_UNKNOWNRMGRID                                         = 0x8004D010
XACT_E_WRONGSTATE                                            = 0x8004D011
XACT_E_WRONGUOW                                              = 0x8004D012
XACT_E_XTIONEXISTS                                           = 0x8004D013
XACT_E_NOIMPORTOBJECT                                        = 0x8004D014
XACT_E_INVALIDCOOKIE                                         = 0x8004D015
XACT_E_INDOUBT                                               = 0x8004D016
XACT_E_NOTIMEOUT                                             = 0x8004D017
XACT_E_ALREADYINPROGRESS                                     = 0x8004D018
XACT_E_ABORTED                                               = 0x8004D019
XACT_E_LOGFULL                                               = 0x8004D01A
XACT_E_TMNOTAVAILABLE                                        = 0x8004D01B
XACT_E_CONNECTION_DOWN                                       = 0x8004D01C
XACT_E_CONNECTION_DENIED                                     = 0x8004D01D
XACT_E_REENLISTTIMEOUT                                       = 0x8004D01E
XACT_E_TIP_CONNECT_FAILED                                    = 0x8004D01F
XACT_E_TIP_PROTOCOL_ERROR                                    = 0x8004D020
XACT_E_TIP_PULL_FAILED                                       = 0x8004D021
XACT_E_DEST_TMNOTAVAILABLE                                   = 0x8004D022
XACT_E_TIP_DISABLED                                          = 0x8004D023
XACT_E_NETWORK_TX_DISABLED                                   = 0x8004D024
XACT_E_PARTNER_NETWORK_TX_DISABLED                           = 0x8004D025
XACT_E_XA_TX_DISABLED                                        = 0x8004D026
XACT_E_UNABLE_TO_READ_DTC_CONFIG                             = 0x8004D027
XACT_E_UNABLE_TO_LOAD_DTC_PROXY                              = 0x8004D028
XACT_E_ABORTING                                              = 0x8004D029
XACT_E_CLERKNOTFOUND                                         = 0x8004D080
XACT_E_CLERKEXISTS                                           = 0x8004D081
XACT_E_RECOVERYINPROGRESS                                    = 0x8004D082
XACT_E_TRANSACTIONCLOSED                                     = 0x8004D083
XACT_E_INVALIDLSN                                            = 0x8004D084
XACT_E_REPLAYREQUEST                                         = 0x8004D085
XACT_E_CONNECTION_REQUEST_DENIED                             = 0x8004D100
XACT_E_TOOMANY_ENLISTMENTS                                   = 0x8004D101
XACT_E_DUPLICATE_GUID                                        = 0x8004D102
XACT_E_NOTSINGLEPHASE                                        = 0x8004D103
XACT_E_RECOVERYALREADYDONE                                   = 0x8004D104
XACT_E_PROTOCOL                                              = 0x8004D105
XACT_E_RM_FAILURE                                            = 0x8004D106
XACT_E_RECOVERY_FAILED                                       = 0x8004D107
XACT_E_LU_NOT_FOUND                                          = 0x8004D108
XACT_E_DUPLICATE_LU                                          = 0x8004D109
XACT_E_LU_NOT_CONNECTED                                      = 0x8004D10A
XACT_E_DUPLICATE_TRANSID                                     = 0x8004D10B
XACT_E_LU_BUSY                                               = 0x8004D10C
XACT_E_LU_NO_RECOVERY_PROCESS                                = 0x8004D10D
XACT_E_LU_DOWN                                               = 0x8004D10E
XACT_E_LU_RECOVERING                                         = 0x8004D10F
XACT_E_LU_RECOVERY_MISMATCH                                  = 0x8004D110
XACT_E_RM_UNAVAILABLE                                        = 0x8004D111
CONTEXT_E_ABORTED                                            = 0x8004E002
CONTEXT_E_ABORTING                                           = 0x8004E003
CONTEXT_E_NOCONTEXT                                          = 0x8004E004
CONTEXT_E_WOULD_DEADLOCK                                     = 0x8004E005
CONTEXT_E_SYNCH_TIMEOUT                                      = 0x8004E006
CONTEXT_E_OLDREF                                             = 0x8004E007
CONTEXT_E_ROLENOTFOUND                                       = 0x8004E00C
CONTEXT_E_TMNOTAVAILABLE                                     = 0x8004E00F
CO_E_ACTIVATIONFAILED                                        = 0x8004E021
CO_E_ACTIVATIONFAILED_EVENTLOGGED                            = 0x8004E022
CO_E_ACTIVATIONFAILED_CATALOGERROR                           = 0x8004E023
CO_E_ACTIVATIONFAILED_TIMEOUT                                = 0x8004E024
CO_E_INITIALIZATIONFAILED                                    = 0x8004E025
CONTEXT_E_NOJIT                                              = 0x8004E026
CONTEXT_E_NOTRANSACTION                                      = 0x8004E027
CO_E_THREADINGMODEL_CHANGED                                  = 0x8004E028
CO_E_NOIISINTRINSICS                                         = 0x8004E029
CO_E_NOCOOKIES                                               = 0x8004E02A
CO_E_DBERROR                                                 = 0x8004E02B
CO_E_NOTPOOLED                                               = 0x8004E02C
CO_E_NOTCONSTRUCTED                                          = 0x8004E02D
CO_E_NOSYNCHRONIZATION                                       = 0x8004E02E
CO_E_ISOLEVELMISMATCH                                        = 0x8004E02F
CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED                        = 0x8004E030
CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED                       = 0x8004E031
E_ACCESSDENIED                                               = 0x80070005
E_OUTOFMEMORY                                                = 0x8007000E
ERROR_NOT_SUPPORTED                                          = 0x80070032
E_INVALIDARG                                                 = 0x80070057
CO_E_CLASS_CREATE_FAILED                                     = 0x80080001
CO_E_SCM_ERROR                                               = 0x80080002
CO_E_SCM_RPC_FAILURE                                         = 0x80080003
CO_E_BAD_PATH                                                = 0x80080004
CO_E_SERVER_EXEC_FAILURE                                     = 0x80080005
CO_E_OBJSRV_RPC_FAILURE                                      = 0x80080006
MK_E_NO_NORMALIZED                                           = 0x80080007
CO_E_SERVER_STOPPING                                         = 0x80080008
MEM_E_INVALID_ROOT                                           = 0x80080009
MEM_E_INVALID_LINK                                           = 0x80080010
MEM_E_INVALID_SIZE                                           = 0x80080011
CO_E_MISSING_DISPLAYNAME                                     = 0x80080015
CO_E_RUNAS_VALUE_MUST_BE_AAA                                 = 0x80080016
CO_E_ELEVATION_DISABLED                                      = 0x80080017
NTE_BAD_UID                                                  = 0x80090001
NTE_BAD_HASH                                                 = 0x80090002
NTE_BAD_KEY                                                  = 0x80090003
NTE_BAD_LEN                                                  = 0x80090004
NTE_BAD_DATA                                                 = 0x80090005
NTE_BAD_SIGNATURE                                            = 0x80090006
NTE_BAD_VER                                                  = 0x80090007
NTE_BAD_ALGID                                                = 0x80090008
NTE_BAD_FLAGS                                                = 0x80090009
NTE_BAD_TYPE                                                 = 0x8009000A
NTE_BAD_KEY_STATE                                            = 0x8009000B
NTE_BAD_HASH_STATE                                           = 0x8009000C
NTE_NO_KEY                                                   = 0x8009000D
NTE_NO_MEMORY                                                = 0x8009000E
NTE_EXISTS                                                   = 0x8009000F
NTE_PERM                                                     = 0x80090010
NTE_NOT_FOUND                                                = 0x80090011
NTE_DOUBLE_ENCRYPT                                           = 0x80090012
NTE_BAD_PROVIDER                                             = 0x80090013
NTE_BAD_PROV_TYPE                                            = 0x80090014
NTE_BAD_PUBLIC_KEY                                           = 0x80090015
NTE_BAD_KEYSET                                               = 0x80090016
NTE_PROV_TYPE_NOT_DEF                                        = 0x80090017
NTE_PROV_TYPE_ENTRY_BAD                                      = 0x80090018
NTE_KEYSET_NOT_DEF                                           = 0x80090019
NTE_KEYSET_ENTRY_BAD                                         = 0x8009001A
NTE_PROV_TYPE_NO_MATCH                                       = 0x8009001B
NTE_SIGNATURE_FILE_BAD                                       = 0x8009001C
NTE_PROVIDER_DLL_FAIL                                        = 0x8009001D
NTE_PROV_DLL_NOT_FOUND                                       = 0x8009001E
NTE_BAD_KEYSET_PARAM                                         = 0x8009001F
NTE_FAIL                                                     = 0x80090020
NTE_SYS_ERR                                                  = 0x80090021
NTE_SILENT_CONTEXT                                           = 0x80090022
NTE_TOKEN_KEYSET_STORAGE_FULL                                = 0x80090023
NTE_TEMPORARY_PROFILE                                        = 0x80090024
NTE_FIXEDPARAMETER                                           = 0x80090025
NTE_INVALID_HANDLE                                           = 0x80090026
NTE_INVALID_PARAMETER                                        = 0x80090027
NTE_BUFFER_TOO_SMALL                                         = 0x80090028
NTE_NOT_SUPPORTED                                            = 0x80090029
NTE_NO_MORE_ITEMS                                            = 0x8009002A
NTE_BUFFERS_OVERLAP                                          = 0x8009002B
NTE_DECRYPTION_FAILURE                                       = 0x8009002C
NTE_INTERNAL_ERROR                                           = 0x8009002D
NTE_UI_REQUIRED                                              = 0x8009002E
NTE_HMAC_NOT_SUPPORTED                                       = 0x8009002F
SEC_E_INSUFFICIENT_MEMORY                                    = 0x80090300
SEC_E_INVALID_HANDLE                                         = 0x80090301
SEC_E_UNSUPPORTED_FUNCTION                                   = 0x80090302
SEC_E_TARGET_UNKNOWN                                         = 0x80090303
SEC_E_INTERNAL_ERROR                                         = 0x80090304
SEC_E_SECPKG_NOT_FOUND                                       = 0x80090305
SEC_E_NOT_OWNER                                              = 0x80090306
SEC_E_CANNOT_INSTALL                                         = 0x80090307
SEC_E_INVALID_TOKEN                                          = 0x80090308
SEC_E_CANNOT_PACK                                            = 0x80090309
SEC_E_QOP_NOT_SUPPORTED                                      = 0x8009030A
SEC_E_NO_IMPERSONATION                                       = 0x8009030B
SEC_E_LOGON_DENIED                                           = 0x8009030C
SEC_E_UNKNOWN_CREDENTIALS                                    = 0x8009030D
SEC_E_NO_CREDENTIALS                                         = 0x8009030E
SEC_E_MESSAGE_ALTERED                                        = 0x8009030F
SEC_E_OUT_OF_SEQUENCE                                        = 0x80090310
SEC_E_NO_AUTHENTICATING_AUTHORITY                            = 0x80090311
SEC_E_BAD_PKGID                                              = 0x80090316
SEC_E_CONTEXT_EXPIRED                                        = 0x80090317
SEC_E_INCOMPLETE_MESSAGE                                     = 0x80090318
SEC_E_INCOMPLETE_CREDENTIALS                                 = 0x80090320
SEC_E_BUFFER_TOO_SMALL                                       = 0x80090321
SEC_E_WRONG_PRINCIPAL                                        = 0x80090322
SEC_E_TIME_SKEW                                              = 0x80090324
SEC_E_UNTRUSTED_ROOT                                         = 0x80090325
SEC_E_ILLEGAL_MESSAGE                                        = 0x80090326
SEC_E_CERT_UNKNOWN                                           = 0x80090327
SEC_E_CERT_EXPIRED                                           = 0x80090328
SEC_E_ENCRYPT_FAILURE                                        = 0x80090329
SEC_E_DECRYPT_FAILURE                                        = 0x80090330
SEC_E_ALGORITHM_MISMATCH                                     = 0x80090331
SEC_E_SECURITY_QOS_FAILED                                    = 0x80090332
SEC_E_UNFINISHED_CONTEXT_DELETED                             = 0x80090333
SEC_E_NO_TGT_REPLY                                           = 0x80090334
SEC_E_NO_IP_ADDRESSES                                        = 0x80090335
SEC_E_WRONG_CREDENTIAL_HANDLE                                = 0x80090336
SEC_E_CRYPTO_SYSTEM_INVALID                                  = 0x80090337
SEC_E_MAX_REFERRALS_EXCEEDED                                 = 0x80090338
SEC_E_MUST_BE_KDC                                            = 0x80090339
SEC_E_STRONG_CRYPTO_NOT_SUPPORTED                            = 0x8009033A
SEC_E_TOO_MANY_PRINCIPALS                                    = 0x8009033B
SEC_E_NO_PA_DATA                                             = 0x8009033C
SEC_E_PKINIT_NAME_MISMATCH                                   = 0x8009033D
SEC_E_SMARTCARD_LOGON_REQUIRED                               = 0x8009033E
SEC_E_SHUTDOWN_IN_PROGRESS                                   = 0x8009033F
SEC_E_KDC_INVALID_REQUEST                                    = 0x80090340
SEC_E_KDC_UNABLE_TO_REFER                                    = 0x80090341
SEC_E_KDC_UNKNOWN_ETYPE                                      = 0x80090342
SEC_E_UNSUPPORTED_PREAUTH                                    = 0x80090343
SEC_E_DELEGATION_REQUIRED                                    = 0x80090345
SEC_E_BAD_BINDINGS                                           = 0x80090346
SEC_E_MULTIPLE_ACCOUNTS                                      = 0x80090347
SEC_E_NO_KERB_KEY                                            = 0x80090348
SEC_E_CERT_WRONG_USAGE                                       = 0x80090349
SEC_E_DOWNGRADE_DETECTED                                     = 0x80090350
SEC_E_SMARTCARD_CERT_REVOKED                                 = 0x80090351
SEC_E_ISSUING_CA_UNTRUSTED                                   = 0x80090352
SEC_E_REVOCATION_OFFLINE_C                                   = 0x80090353
SEC_E_PKINIT_CLIENT_FAILURE                                  = 0x80090354
SEC_E_SMARTCARD_CERT_EXPIRED                                 = 0x80090355
SEC_E_NO_S4U_PROT_SUPPORT                                    = 0x80090356
SEC_E_CROSSREALM_DELEGATION_FAILURE                          = 0x80090357
SEC_E_REVOCATION_OFFLINE_KDC                                 = 0x80090358
SEC_E_ISSUING_CA_UNTRUSTED_KDC                               = 0x80090359
SEC_E_KDC_CERT_EXPIRED                                       = 0x8009035A
SEC_E_KDC_CERT_REVOKED                                       = 0x8009035B
SEC_E_INVALID_PARAMETER                                      = 0x8009035D
SEC_E_DELEGATION_POLICY                                      = 0x8009035E
SEC_E_POLICY_NLTM_ONLY                                       = 0x8009035F
CRYPT_E_MSG_ERROR                                            = 0x80091001
CRYPT_E_UNKNOWN_ALGO                                         = 0x80091002
CRYPT_E_OID_FORMAT                                           = 0x80091003
CRYPT_E_INVALID_MSG_TYPE                                     = 0x80091004
CRYPT_E_UNEXPECTED_ENCODING                                  = 0x80091005
CRYPT_E_AUTH_ATTR_MISSING                                    = 0x80091006
CRYPT_E_HASH_VALUE                                           = 0x80091007
CRYPT_E_INVALID_INDEX                                        = 0x80091008
CRYPT_E_ALREADY_DECRYPTED                                    = 0x80091009
CRYPT_E_NOT_DECRYPTED                                        = 0x8009100A
CRYPT_E_RECIPIENT_NOT_FOUND                                  = 0x8009100B
CRYPT_E_CONTROL_TYPE                                         = 0x8009100C
CRYPT_E_ISSUER_SERIALNUMBER                                  = 0x8009100D
CRYPT_E_SIGNER_NOT_FOUND                                     = 0x8009100E
CRYPT_E_ATTRIBUTES_MISSING                                   = 0x8009100F
CRYPT_E_STREAM_MSG_NOT_READY                                 = 0x80091010
CRYPT_E_STREAM_INSUFFICIENT_DATA                             = 0x80091011
CRYPT_E_BAD_LEN                                              = 0x80092001
CRYPT_E_BAD_ENCODE                                           = 0x80092002
CRYPT_E_FILE_ERROR                                           = 0x80092003
CRYPT_E_NOT_FOUND                                            = 0x80092004
CRYPT_E_EXISTS                                               = 0x80092005
CRYPT_E_NO_PROVIDER                                          = 0x80092006
CRYPT_E_SELF_SIGNED                                          = 0x80092007
CRYPT_E_DELETED_PREV                                         = 0x80092008
CRYPT_E_NO_MATCH                                             = 0x80092009
CRYPT_E_UNEXPECTED_MSG_TYPE                                  = 0x8009200A
CRYPT_E_NO_KEY_PROPERTY                                      = 0x8009200B
CRYPT_E_NO_DECRYPT_CERT                                      = 0x8009200C
CRYPT_E_BAD_MSG                                              = 0x8009200D
CRYPT_E_NO_SIGNER                                            = 0x8009200E
CRYPT_E_PENDING_CLOSE                                        = 0x8009200F
CRYPT_E_REVOKED                                              = 0x80092010
CRYPT_E_NO_REVOCATION_DLL                                    = 0x80092011
CRYPT_E_NO_REVOCATION_CHECK                                  = 0x80092012
CRYPT_E_REVOCATION_OFFLINE                                   = 0x80092013
CRYPT_E_NOT_IN_REVOCATION_DATABASE                           = 0x80092014
CRYPT_E_INVALID_NUMERIC_STRING                               = 0x80092020
CRYPT_E_INVALID_PRINTABLE_STRING                             = 0x80092021
CRYPT_E_INVALID_IA5_STRING                                   = 0x80092022
CRYPT_E_INVALID_X500_STRING                                  = 0x80092023
CRYPT_E_NOT_CHAR_STRING                                      = 0x80092024
CRYPT_E_FILERESIZED                                          = 0x80092025
CRYPT_E_SECURITY_SETTINGS                                    = 0x80092026
CRYPT_E_NO_VERIFY_USAGE_DLL                                  = 0x80092027
CRYPT_E_NO_VERIFY_USAGE_CHECK                                = 0x80092028
CRYPT_E_VERIFY_USAGE_OFFLINE                                 = 0x80092029
CRYPT_E_NOT_IN_CTL                                           = 0x8009202A
CRYPT_E_NO_TRUSTED_SIGNER                                    = 0x8009202B
CRYPT_E_MISSING_PUBKEY_PARA                                  = 0x8009202C
CRYPT_E_OSS_ERROR                                            = 0x80093000
OSS_MORE_BUF                                                 = 0x80093001
OSS_NEGATIVE_UINTEGER                                        = 0x80093002
OSS_PDU_RANGE                                                = 0x80093003
OSS_MORE_INPUT                                               = 0x80093004
OSS_DATA_ERROR                                               = 0x80093005
OSS_BAD_ARG                                                  = 0x80093006
OSS_BAD_VERSION                                              = 0x80093007
OSS_OUT_MEMORY                                               = 0x80093008
OSS_PDU_MISMATCH                                             = 0x80093009
OSS_LIMITED                                                  = 0x8009300A
OSS_BAD_PTR                                                  = 0x8009300B
OSS_BAD_TIME                                                 = 0x8009300C
OSS_INDEFINITE_NOT_SUPPORTED                                 = 0x8009300D
OSS_MEM_ERROR                                                = 0x8009300E
OSS_BAD_TABLE                                                = 0x8009300F
OSS_TOO_LONG                                                 = 0x80093010
OSS_CONSTRAINT_VIOLATED                                      = 0x80093011
OSS_FATAL_ERROR                                              = 0x80093012
OSS_ACCESS_SERIALIZATION_ERROR                               = 0x80093013
OSS_NULL_TBL                                                 = 0x80093014
OSS_NULL_FCN                                                 = 0x80093015
OSS_BAD_ENCRULES                                             = 0x80093016
OSS_UNAVAIL_ENCRULES                                         = 0x80093017
OSS_CANT_OPEN_TRACE_WINDOW                                   = 0x80093018
OSS_UNIMPLEMENTED                                            = 0x80093019
OSS_OID_DLL_NOT_LINKED                                       = 0x8009301A
OSS_CANT_OPEN_TRACE_FILE                                     = 0x8009301B
OSS_TRACE_FILE_ALREADY_OPEN                                  = 0x8009301C
OSS_TABLE_MISMATCH                                           = 0x8009301D
OSS_TYPE_NOT_SUPPORTED                                       = 0x8009301E
OSS_REAL_DLL_NOT_LINKED                                      = 0x8009301F
OSS_REAL_CODE_NOT_LINKED                                     = 0x80093020
OSS_OUT_OF_RANGE                                             = 0x80093021
OSS_COPIER_DLL_NOT_LINKED                                    = 0x80093022
OSS_CONSTRAINT_DLL_NOT_LINKED                                = 0x80093023
OSS_COMPARATOR_DLL_NOT_LINKED                                = 0x80093024
OSS_COMPARATOR_CODE_NOT_LINKED                               = 0x80093025
OSS_MEM_MGR_DLL_NOT_LINKED                                   = 0x80093026
OSS_PDV_DLL_NOT_LINKED                                       = 0x80093027
OSS_PDV_CODE_NOT_LINKED                                      = 0x80093028
OSS_API_DLL_NOT_LINKED                                       = 0x80093029
OSS_BERDER_DLL_NOT_LINKED                                    = 0x8009302A
OSS_PER_DLL_NOT_LINKED                                       = 0x8009302B
OSS_OPEN_TYPE_ERROR                                          = 0x8009302C
OSS_MUTEX_NOT_CREATED                                        = 0x8009302D
OSS_CANT_CLOSE_TRACE_FILE                                    = 0x8009302E
CRYPT_E_ASN1_ERROR                                           = 0x80093100
CRYPT_E_ASN1_INTERNAL                                        = 0x80093101
CRYPT_E_ASN1_EOD                                             = 0x80093102
CRYPT_E_ASN1_CORRUPT                                         = 0x80093103
CRYPT_E_ASN1_LARGE                                           = 0x80093104
CRYPT_E_ASN1_CONSTRAINT                                      = 0x80093105
CRYPT_E_ASN1_MEMORY                                          = 0x80093106
CRYPT_E_ASN1_OVERFLOW                                        = 0x80093107
CRYPT_E_ASN1_BADPDU                                          = 0x80093108
CRYPT_E_ASN1_BADARGS                                         = 0x80093109
CRYPT_E_ASN1_BADREAL                                         = 0x8009310A
CRYPT_E_ASN1_BADTAG                                          = 0x8009310B
CRYPT_E_ASN1_CHOICE                                          = 0x8009310C
CRYPT_E_ASN1_RULE                                            = 0x8009310D
CRYPT_E_ASN1_UTF8                                            = 0x8009310E
CRYPT_E_ASN1_PDU_TYPE                                        = 0x80093133
CRYPT_E_ASN1_NYI                                             = 0x80093134
CRYPT_E_ASN1_EXTENDED                                        = 0x80093201
CRYPT_E_ASN1_NOEOD                                           = 0x80093202
CERTSRV_E_BAD_REQUESTSUBJECT                                 = 0x80094001
CERTSRV_E_NO_REQUEST                                         = 0x80094002
CERTSRV_E_BAD_REQUESTSTATUS                                  = 0x80094003
CERTSRV_E_PROPERTY_EMPTY                                     = 0x80094004
CERTSRV_E_INVALID_CA_CERTIFICATE                             = 0x80094005
CERTSRV_E_SERVER_SUSPENDED                                   = 0x80094006
CERTSRV_E_ENCODING_LENGTH                                    = 0x80094007
CERTSRV_E_ROLECONFLICT                                       = 0x80094008
CERTSRV_E_RESTRICTEDOFFICER                                  = 0x80094009
CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED                        = 0x8009400A
CERTSRV_E_NO_VALID_KRA                                       = 0x8009400B
CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL                           = 0x8009400C
CERTSRV_E_NO_CAADMIN_DEFINED                                 = 0x8009400D
CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE                         = 0x8009400E
CERTSRV_E_NO_DB_SESSIONS                                     = 0x8009400F
CERTSRV_E_ALIGNMENT_FAULT                                    = 0x80094010
CERTSRV_E_ENROLL_DENIED                                      = 0x80094011
CERTSRV_E_TEMPLATE_DENIED                                    = 0x80094012
CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE                        = 0x80094013
CERTSRV_E_UNSUPPORTED_CERT_TYPE                              = 0x80094800
CERTSRV_E_NO_CERT_TYPE                                       = 0x80094801
CERTSRV_E_TEMPLATE_CONFLICT                                  = 0x80094802
CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED                          = 0x80094803
CERTSRV_E_ARCHIVED_KEY_REQUIRED                              = 0x80094804
CERTSRV_E_SMIME_REQUIRED                                     = 0x80094805
CERTSRV_E_BAD_RENEWAL_SUBJECT                                = 0x80094806
CERTSRV_E_BAD_TEMPLATE_VERSION                               = 0x80094807
CERTSRV_E_TEMPLATE_POLICY_REQUIRED                           = 0x80094808
CERTSRV_E_SIGNATURE_POLICY_REQUIRED                          = 0x80094809
CERTSRV_E_SIGNATURE_COUNT                                    = 0x8009480A
CERTSRV_E_SIGNATURE_REJECTED                                 = 0x8009480B
CERTSRV_E_ISSUANCE_POLICY_REQUIRED                           = 0x8009480C
CERTSRV_E_SUBJECT_UPN_REQUIRED                               = 0x8009480D
CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED                    = 0x8009480E
CERTSRV_E_SUBJECT_DNS_REQUIRED                               = 0x8009480F
CERTSRV_E_ARCHIVED_KEY_UNEXPECTED                            = 0x80094810
CERTSRV_E_KEY_LENGTH                                         = 0x80094811
CERTSRV_E_SUBJECT_EMAIL_REQUIRED                             = 0x80094812
CERTSRV_E_UNKNOWN_CERT_TYPE                                  = 0x80094813
CERTSRV_E_CERT_TYPE_OVERLAP                                  = 0x80094814
CERTSRV_E_TOO_MANY_SIGNATURES                                = 0x80094815
CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY                             = 0x80094816
CERTSRV_E_INVALID_EK                                         = 0x80094817
CERTSRV_E_KEY_ATTESTATION                                    = 0x8009481A
XENROLL_E_KEY_NOT_EXPORTABLE                                 = 0x80095000
XENROLL_E_CANNOT_ADD_ROOT_CERT                               = 0x80095001
XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND                         = 0x80095002
XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH                        = 0x80095003
XENROLL_E_RESPONSE_KA_HASH_MISMATCH                          = 0x80095004
XENROLL_E_KEYSPEC_SMIME_MISMATCH                             = 0x80095005
TRUST_E_SYSTEM_ERROR                                         = 0x80096001
TRUST_E_NO_SIGNER_CERT                                       = 0x80096002
TRUST_E_COUNTER_SIGNER                                       = 0x80096003
TRUST_E_CERT_SIGNATURE                                       = 0x80096004
TRUST_E_TIME_STAMP                                           = 0x80096005
TRUST_E_BAD_DIGEST                                           = 0x80096010
TRUST_E_BASIC_CONSTRAINTS                                    = 0x80096019
TRUST_E_FINANCIAL_CRITERIA                                   = 0x8009601E
MSSIPOTF_E_OUTOFMEMRANGE                                     = 0x80097001
MSSIPOTF_E_CANTGETOBJECT                                     = 0x80097002
MSSIPOTF_E_NOHEADTABLE                                       = 0x80097003
MSSIPOTF_E_BAD_MAGICNUMBER                                   = 0x80097004
MSSIPOTF_E_BAD_OFFSET_TABLE                                  = 0x80097005
MSSIPOTF_E_TABLE_TAGORDER                                    = 0x80097006
MSSIPOTF_E_TABLE_LONGWORD                                    = 0x80097007
MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT                         = 0x80097008
MSSIPOTF_E_TABLES_OVERLAP                                    = 0x80097009
MSSIPOTF_E_TABLE_PADBYTES                                    = 0x8009700A
MSSIPOTF_E_FILETOOSMALL                                      = 0x8009700B
MSSIPOTF_E_TABLE_CHECKSUM                                    = 0x8009700C
MSSIPOTF_E_FILE_CHECKSUM                                     = 0x8009700D
MSSIPOTF_E_FAILED_POLICY                                     = 0x80097010
MSSIPOTF_E_FAILED_HINTS_CHECK                                = 0x80097011
MSSIPOTF_E_NOT_OPENTYPE                                      = 0x80097012
MSSIPOTF_E_FILE                                              = 0x80097013
MSSIPOTF_E_CRYPT                                             = 0x80097014
MSSIPOTF_E_BADVERSION                                        = 0x80097015
MSSIPOTF_E_DSIG_STRUCTURE                                    = 0x80097016
MSSIPOTF_E_PCONST_CHECK                                      = 0x80097017
MSSIPOTF_E_STRUCTURE                                         = 0x80097018
ERROR_CRED_REQUIRES_CONFIRMATION                             = 0x80097019
TRUST_E_PROVIDER_UNKNOWN                                     = 0x800B0001
TRUST_E_ACTION_UNKNOWN                                       = 0x800B0002
TRUST_E_SUBJECT_FORM_UNKNOWN                                 = 0x800B0003
TRUST_E_SUBJECT_NOT_TRUSTED                                  = 0x800B0004
DIGSIG_E_ENCODE                                              = 0x800B0005
DIGSIG_E_DECODE                                              = 0x800B0006
DIGSIG_E_EXTENSIBILITY                                       = 0x800B0007
DIGSIG_E_CRYPTO                                              = 0x800B0008
PERSIST_E_SIZEDEFINITE                                       = 0x800B0009
PERSIST_E_SIZEINDEFINITE                                     = 0x800B000A
PERSIST_E_NOTSELFSIZING                                      = 0x800B000B
TRUST_E_NOSIGNATURE                                          = 0x800B0100
CERT_E_EXPIRED                                               = 0x800B0101
CERT_E_VALIDITYPERIODNESTING                                 = 0x800B0102
CERT_E_ROLE                                                  = 0x800B0103
CERT_E_PATHLENCONST                                          = 0x800B0104
CERT_E_CRITICAL                                              = 0x800B0105
CERT_E_PURPOSE                                               = 0x800B0106
CERT_E_ISSUERCHAINING                                        = 0x800B0107
CERT_E_MALFORMED                                             = 0x800B0108
CERT_E_UNTRUSTEDROOT                                         = 0x800B0109
CERT_E_CHAINING                                              = 0x800B010A
TRUST_E_FAIL                                                 = 0x800B010B
CERT_E_REVOKED                                               = 0x800B010C
CERT_E_UNTRUSTEDTESTROOT                                     = 0x800B010D
CERT_E_REVOCATION_FAILURE                                    = 0x800B010E
CERT_E_CN_NO_MATCH                                           = 0x800B010F
CERT_E_WRONG_USAGE                                           = 0x800B0110
TRUST_E_EXPLICIT_DISTRUST                                    = 0x800B0111
CERT_E_UNTRUSTEDCA                                           = 0x800B0112
CERT_E_INVALID_POLICY                                        = 0x800B0113
CERT_E_INVALID_NAME                                          = 0x800B0114
NS_W_SERVER_BANDWIDTH_LIMIT                                  = 0x800D0003
NS_W_FILE_BANDWIDTH_LIMIT                                    = 0x800D0004
NS_W_UNKNOWN_EVENT                                           = 0x800D0060
NS_I_CATATONIC_FAILURE                                       = 0x800D0199
NS_I_CATATONIC_AUTO_UNFAIL                                   = 0x800D019A
SPAPI_E_EXPECTED_SECTION_NAME                                = 0x800F0000
SPAPI_E_BAD_SECTION_NAME_LINE                                = 0x800F0001
SPAPI_E_SECTION_NAME_TOO_LONG                                = 0x800F0002
SPAPI_E_GENERAL_SYNTAX                                       = 0x800F0003
SPAPI_E_WRONG_INF_STYLE                                      = 0x800F0100
SPAPI_E_SECTION_NOT_FOUND                                    = 0x800F0101
SPAPI_E_LINE_NOT_FOUND                                       = 0x800F0102
SPAPI_E_NO_BACKUP                                            = 0x800F0103
SPAPI_E_NO_ASSOCIATED_CLASS                                  = 0x800F0200
SPAPI_E_CLASS_MISMATCH                                       = 0x800F0201
SPAPI_E_DUPLICATE_FOUND                                      = 0x800F0202
SPAPI_E_NO_DRIVER_SELECTED                                   = 0x800F0203
SPAPI_E_KEY_DOES_NOT_EXIST                                   = 0x800F0204
SPAPI_E_INVALID_DEVINST_NAME                                 = 0x800F0205
SPAPI_E_INVALID_CLASS                                        = 0x800F0206
SPAPI_E_DEVINST_ALREADY_EXISTS                               = 0x800F0207
SPAPI_E_DEVINFO_NOT_REGISTERED                               = 0x800F0208
SPAPI_E_INVALID_REG_PROPERTY                                 = 0x800F0209
SPAPI_E_NO_INF                                               = 0x800F020A
SPAPI_E_NO_SUCH_DEVINST                                      = 0x800F020B
SPAPI_E_CANT_LOAD_CLASS_ICON                                 = 0x800F020C
SPAPI_E_INVALID_CLASS_INSTALLER                              = 0x800F020D
SPAPI_E_DI_DO_DEFAULT                                        = 0x800F020E
SPAPI_E_DI_NOFILECOPY                                        = 0x800F020F
SPAPI_E_INVALID_HWPROFILE                                    = 0x800F0210
SPAPI_E_NO_DEVICE_SELECTED                                   = 0x800F0211
SPAPI_E_DEVINFO_LIST_LOCKED                                  = 0x800F0212
SPAPI_E_DEVINFO_DATA_LOCKED                                  = 0x800F0213
SPAPI_E_DI_BAD_PATH                                          = 0x800F0214
SPAPI_E_NO_CLASSINSTALL_PARAMS                               = 0x800F0215
SPAPI_E_FILEQUEUE_LOCKED                                     = 0x800F0216
SPAPI_E_BAD_SERVICE_INSTALLSECT                              = 0x800F0217
SPAPI_E_NO_CLASS_DRIVER_LIST                                 = 0x800F0218
SPAPI_E_NO_ASSOCIATED_SERVICE                                = 0x800F0219
SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE                          = 0x800F021A
SPAPI_E_DEVICE_INTERFACE_ACTIVE                              = 0x800F021B
SPAPI_E_DEVICE_INTERFACE_REMOVED                             = 0x800F021C
SPAPI_E_BAD_INTERFACE_INSTALLSECT                            = 0x800F021D
SPAPI_E_NO_SUCH_INTERFACE_CLASS                              = 0x800F021E
SPAPI_E_INVALID_REFERENCE_STRING                             = 0x800F021F
SPAPI_E_INVALID_MACHINENAME                                  = 0x800F0220
SPAPI_E_REMOTE_COMM_FAILURE                                  = 0x800F0221
SPAPI_E_MACHINE_UNAVAILABLE                                  = 0x800F0222
SPAPI_E_NO_CONFIGMGR_SERVICES                                = 0x800F0223
SPAPI_E_INVALID_PROPPAGE_PROVIDER                            = 0x800F0224
SPAPI_E_NO_SUCH_DEVICE_INTERFACE                             = 0x800F0225
SPAPI_E_DI_POSTPROCESSING_REQUIRED                           = 0x800F0226
SPAPI_E_INVALID_COINSTALLER                                  = 0x800F0227
SPAPI_E_NO_COMPAT_DRIVERS                                    = 0x800F0228
SPAPI_E_NO_DEVICE_ICON                                       = 0x800F0229
SPAPI_E_INVALID_INF_LOGCONFIG                                = 0x800F022A
SPAPI_E_DI_DONT_INSTALL                                      = 0x800F022B
SPAPI_E_INVALID_FILTER_DRIVER                                = 0x800F022C
SPAPI_E_NON_WINDOWS_NT_DRIVER                                = 0x800F022D
SPAPI_E_NON_WINDOWS_DRIVER                                   = 0x800F022E
SPAPI_E_NO_CATALOG_FOR_OEM_INF                               = 0x800F022F
SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE                           = 0x800F0230
SPAPI_E_NOT_DISABLEABLE                                      = 0x800F0231
SPAPI_E_CANT_REMOVE_DEVINST                                  = 0x800F0232
SPAPI_E_INVALID_TARGET                                       = 0x800F0233
SPAPI_E_DRIVER_NONNATIVE                                     = 0x800F0234
SPAPI_E_IN_WOW64                                             = 0x800F0235
SPAPI_E_SET_SYSTEM_RESTORE_POINT                             = 0x800F0236
SPAPI_E_INCORRECTLY_COPIED_INF                               = 0x800F0237
SPAPI_E_SCE_DISABLED                                         = 0x800F0238
SPAPI_E_UNKNOWN_EXCEPTION                                    = 0x800F0239
SPAPI_E_PNP_REGISTRY_ERROR                                   = 0x800F023A
SPAPI_E_REMOTE_REQUEST_UNSUPPORTED                           = 0x800F023B
SPAPI_E_NOT_AN_INSTALLED_OEM_INF                             = 0x800F023C
SPAPI_E_INF_IN_USE_BY_DEVICES                                = 0x800F023D
SPAPI_E_DI_FUNCTION_OBSOLETE                                 = 0x800F023E
SPAPI_E_NO_AUTHENTICODE_CATALOG                              = 0x800F023F
SPAPI_E_AUTHENTICODE_DISALLOWED                              = 0x800F0240
SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER                       = 0x800F0241
SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED                   = 0x800F0242
SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED                   = 0x800F0243
SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH                       = 0x800F0244
SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE                       = 0x800F0245
SPAPI_E_DEVICE_INSTALLER_NOT_READY                           = 0x800F0246
SPAPI_E_DRIVER_STORE_ADD_FAILED                              = 0x800F0247
SPAPI_E_DEVICE_INSTALL_BLOCKED                               = 0x800F0248
SPAPI_E_DRIVER_INSTALL_BLOCKED                               = 0x800F0249
SPAPI_E_WRONG_INF_TYPE                                       = 0x800F024A
SPAPI_E_FILE_HASH_NOT_IN_CATALOG                             = 0x800F024B
SPAPI_E_DRIVER_STORE_DELETE_FAILED                           = 0x800F024C
SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW                         = 0x800F0300
SPAPI_E_ERROR_NOT_INSTALLED                                  = 0x800F1000
SCARD_F_INTERNAL_ERROR                                       = 0x80100001
SCARD_E_CANCELLED                                            = 0x80100002
SCARD_E_INVALID_HANDLE                                       = 0x80100003
SCARD_E_INVALID_PARAMETER                                    = 0x80100004
SCARD_E_INVALID_TARGET                                       = 0x80100005
SCARD_E_NO_MEMORY                                            = 0x80100006
SCARD_F_WAITED_TOO_LONG                                      = 0x80100007
SCARD_E_INSUFFICIENT_BUFFER                                  = 0x80100008
SCARD_E_UNKNOWN_READER                                       = 0x80100009
SCARD_E_TIMEOUT                                              = 0x8010000A
SCARD_E_SHARING_VIOLATION                                    = 0x8010000B
SCARD_E_NO_SMARTCARD                                         = 0x8010000C
SCARD_E_UNKNOWN_CARD                                         = 0x8010000D
SCARD_E_CANT_DISPOSE                                         = 0x8010000E
SCARD_E_PROTO_MISMATCH                                       = 0x8010000F
SCARD_E_NOT_READY                                            = 0x80100010
SCARD_E_INVALID_VALUE                                        = 0x80100011
SCARD_E_SYSTEM_CANCELLED                                     = 0x80100012
SCARD_F_COMM_ERROR                                           = 0x80100013
SCARD_F_UNKNOWN_ERROR                                        = 0x80100014
SCARD_E_INVALID_ATR                                          = 0x80100015
SCARD_E_NOT_TRANSACTED                                       = 0x80100016
SCARD_E_READER_UNAVAILABLE                                   = 0x80100017
SCARD_P_SHUTDOWN                                             = 0x80100018
SCARD_E_PCI_TOO_SMALL                                        = 0x80100019
SCARD_E_READER_UNSUPPORTED                                   = 0x8010001A
SCARD_E_DUPLICATE_READER                                     = 0x8010001B
SCARD_E_CARD_UNSUPPORTED                                     = 0x8010001C
SCARD_E_NO_SERVICE                                           = 0x8010001D
SCARD_E_SERVICE_STOPPED                                      = 0x8010001E
SCARD_E_UNEXPECTED                                           = 0x8010001F
SCARD_E_ICC_INSTALLATION                                     = 0x80100020
SCARD_E_ICC_CREATEORDER                                      = 0x80100021
SCARD_E_UNSUPPORTED_FEATURE                                  = 0x80100022
SCARD_E_DIR_NOT_FOUND                                        = 0x80100023
SCARD_E_FILE_NOT_FOUND                                       = 0x80100024
SCARD_E_NO_DIR                                               = 0x80100025
SCARD_E_NO_FILE                                              = 0x80100026
SCARD_E_NO_ACCESS                                            = 0x80100027
SCARD_E_WRITE_TOO_MANY                                       = 0x80100028
SCARD_E_BAD_SEEK                                             = 0x80100029
SCARD_E_INVALID_CHV                                          = 0x8010002A
SCARD_E_UNKNOWN_RES_MNG                                      = 0x8010002B
SCARD_E_NO_SUCH_CERTIFICATE                                  = 0x8010002C
SCARD_E_CERTIFICATE_UNAVAILABLE                              = 0x8010002D
SCARD_E_NO_READERS_AVAILABLE                                 = 0x8010002E
SCARD_E_COMM_DATA_LOST                                       = 0x8010002F
SCARD_E_NO_KEY_CONTAINER                                     = 0x80100030
SCARD_E_SERVER_TOO_BUSY                                      = 0x80100031
SCARD_W_UNSUPPORTED_CARD                                     = 0x80100065
SCARD_W_UNRESPONSIVE_CARD                                    = 0x80100066
SCARD_W_UNPOWERED_CARD                                       = 0x80100067
SCARD_W_RESET_CARD                                           = 0x80100068
SCARD_W_REMOVED_CARD                                         = 0x80100069
SCARD_W_SECURITY_VIOLATION                                   = 0x8010006A
SCARD_W_WRONG_CHV                                            = 0x8010006B
SCARD_W_CHV_BLOCKED                                          = 0x8010006C
SCARD_W_EOF                                                  = 0x8010006D
SCARD_W_CANCELLED_BY_USER                                    = 0x8010006E
SCARD_W_CARD_NOT_AUTHENTICATED                               = 0x8010006F
COMADMIN_E_OBJECTERRORS                                      = 0x80110401
COMADMIN_E_OBJECTINVALID                                     = 0x80110402
COMADMIN_E_KEYMISSING                                        = 0x80110403
COMADMIN_E_ALREADYINSTALLED                                  = 0x80110404
COMADMIN_E_APP_FILE_WRITEFAIL                                = 0x80110407
COMADMIN_E_APP_FILE_READFAIL                                 = 0x80110408
COMADMIN_E_APP_FILE_VERSION                                  = 0x80110409
COMADMIN_E_BADPATH                                           = 0x8011040A
COMADMIN_E_APPLICATIONEXISTS                                 = 0x8011040B
COMADMIN_E_ROLEEXISTS                                        = 0x8011040C
COMADMIN_E_CANTCOPYFILE                                      = 0x8011040D
COMADMIN_E_NOUSER                                            = 0x8011040F
COMADMIN_E_INVALIDUSERIDS                                    = 0x80110410
COMADMIN_E_NOREGISTRYCLSID                                   = 0x80110411
COMADMIN_E_BADREGISTRYPROGID                                 = 0x80110412
COMADMIN_E_AUTHENTICATIONLEVEL                               = 0x80110413
COMADMIN_E_USERPASSWDNOTVALID                                = 0x80110414
COMADMIN_E_CLSIDORIIDMISMATCH                                = 0x80110418
COMADMIN_E_REMOTEINTERFACE                                   = 0x80110419
COMADMIN_E_DLLREGISTERSERVER                                 = 0x8011041A
COMADMIN_E_NOSERVERSHARE                                     = 0x8011041B
COMADMIN_E_DLLLOADFAILED                                     = 0x8011041D
COMADMIN_E_BADREGISTRYLIBID                                  = 0x8011041E
COMADMIN_E_APPDIRNOTFOUND                                    = 0x8011041F
COMADMIN_E_REGISTRARFAILED                                   = 0x80110423
COMADMIN_E_COMPFILE_DOESNOTEXIST                             = 0x80110424
COMADMIN_E_COMPFILE_LOADDLLFAIL                              = 0x80110425
COMADMIN_E_COMPFILE_GETCLASSOBJ                              = 0x80110426
COMADMIN_E_COMPFILE_CLASSNOTAVAIL                            = 0x80110427
COMADMIN_E_COMPFILE_BADTLB                                   = 0x80110428
COMADMIN_E_COMPFILE_NOTINSTALLABLE                           = 0x80110429
COMADMIN_E_NOTCHANGEABLE                                     = 0x8011042A
COMADMIN_E_NOTDELETEABLE                                     = 0x8011042B
COMADMIN_E_SESSION                                           = 0x8011042C
COMADMIN_E_COMP_MOVE_LOCKED                                  = 0x8011042D
COMADMIN_E_COMP_MOVE_BAD_DEST                                = 0x8011042E
COMADMIN_E_REGISTERTLB                                       = 0x80110430
COMADMIN_E_SYSTEMAPP                                         = 0x80110433
COMADMIN_E_COMPFILE_NOREGISTRAR                              = 0x80110434
COMADMIN_E_COREQCOMPINSTALLED                                = 0x80110435
COMADMIN_E_SERVICENOTINSTALLED                               = 0x80110436
COMADMIN_E_PROPERTYSAVEFAILED                                = 0x80110437
COMADMIN_E_OBJECTEXISTS                                      = 0x80110438
COMADMIN_E_COMPONENTEXISTS                                   = 0x80110439
COMADMIN_E_REGFILE_CORRUPT                                   = 0x8011043B
COMADMIN_E_PROPERTY_OVERFLOW                                 = 0x8011043C
COMADMIN_E_NOTINREGISTRY                                     = 0x8011043E
COMADMIN_E_OBJECTNOTPOOLABLE                                 = 0x8011043F
COMADMIN_E_APPLID_MATCHES_CLSID                              = 0x80110446
COMADMIN_E_ROLE_DOES_NOT_EXIST                               = 0x80110447
COMADMIN_E_START_APP_NEEDS_COMPONENTS                        = 0x80110448
COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM                       = 0x80110449
COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY                          = 0x8011044A
COMADMIN_E_CAN_NOT_START_APP                                 = 0x8011044B
COMADMIN_E_CAN_NOT_EXPORT_SYS_APP                            = 0x8011044C
COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT                       = 0x8011044D
COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER                     = 0x8011044E
COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE                        = 0x8011044F
COMADMIN_E_BASE_PARTITION_ONLY                               = 0x80110450
COMADMIN_E_START_APP_DISABLED                                = 0x80110451
COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME                      = 0x80110457
COMADMIN_E_CAT_INVALID_PARTITION_NAME                        = 0x80110458
COMADMIN_E_CAT_PARTITION_IN_USE                              = 0x80110459
COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES                    = 0x8011045A
COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED               = 0x8011045B
COMADMIN_E_AMBIGUOUS_APPLICATION_NAME                        = 0x8011045C
COMADMIN_E_AMBIGUOUS_PARTITION_NAME                          = 0x8011045D
COMADMIN_E_REGDB_NOTINITIALIZED                              = 0x80110472
COMADMIN_E_REGDB_NOTOPEN                                     = 0x80110473
COMADMIN_E_REGDB_SYSTEMERR                                   = 0x80110474
COMADMIN_E_REGDB_ALREADYRUNNING                              = 0x80110475
COMADMIN_E_MIG_VERSIONNOTSUPPORTED                           = 0x80110480
COMADMIN_E_MIG_SCHEMANOTFOUND                                = 0x80110481
COMADMIN_E_CAT_BITNESSMISMATCH                               = 0x80110482
COMADMIN_E_CAT_UNACCEPTABLEBITNESS                           = 0x80110483
COMADMIN_E_CAT_WRONGAPPBITNESS                               = 0x80110484
COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED                    = 0x80110485
COMADMIN_E_CAT_SERVERFAULT                                   = 0x80110486
COMQC_E_APPLICATION_NOT_QUEUED                               = 0x80110600
COMQC_E_NO_QUEUEABLE_INTERFACES                              = 0x80110601
COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE                        = 0x80110602
COMQC_E_NO_IPERSISTSTREAM                                    = 0x80110603
COMQC_E_BAD_MESSAGE                                          = 0x80110604
COMQC_E_UNAUTHENTICATED                                      = 0x80110605
COMQC_E_UNTRUSTED_ENQUEUER                                   = 0x80110606
MSDTC_E_DUPLICATE_RESOURCE                                   = 0x80110701
COMADMIN_E_OBJECT_PARENT_MISSING                             = 0x80110808
COMADMIN_E_OBJECT_DOES_NOT_EXIST                             = 0x80110809
COMADMIN_E_APP_NOT_RUNNING                                   = 0x8011080A
COMADMIN_E_INVALID_PARTITION                                 = 0x8011080B
COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE                 = 0x8011080D
COMADMIN_E_USER_IN_SET                                       = 0x8011080E
COMADMIN_E_CANTRECYCLELIBRARYAPPS                            = 0x8011080F
COMADMIN_E_CANTRECYCLESERVICEAPPS                            = 0x80110811
COMADMIN_E_PROCESSALREADYRECYCLED                            = 0x80110812
COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED                     = 0x80110813
COMADMIN_E_CANTMAKEINPROCSERVICE                             = 0x80110814
COMADMIN_E_PROGIDINUSEBYCLSID                                = 0x80110815
COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET                      = 0x80110816
COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED                     = 0x80110817
COMADMIN_E_PARTITION_ACCESSDENIED                            = 0x80110818
COMADMIN_E_PARTITION_MSI_ONLY                                = 0x80110819
COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT             = 0x8011081A
COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS     = 0x8011081B
COMADMIN_E_COMP_MOVE_SOURCE                                  = 0x8011081C
COMADMIN_E_COMP_MOVE_DEST                                    = 0x8011081D
COMADMIN_E_COMP_MOVE_PRIVATE                                 = 0x8011081E
COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET                     = 0x8011081F
COMADMIN_E_CANNOT_ALIAS_EVENTCLASS                           = 0x80110820
COMADMIN_E_PRIVATE_ACCESSDENIED                              = 0x80110821
COMADMIN_E_SAFERINVALID                                      = 0x80110822
COMADMIN_E_REGISTRY_ACCESSDENIED                             = 0x80110823
COMADMIN_E_PARTITIONS_DISABLED                               = 0x80110824
ERROR_FLT_NO_HANDLER_DEFINED                                 = 0x801F0001
ERROR_FLT_CONTEXT_ALREADY_DEFINED                            = 0x801F0002
ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST                       = 0x801F0003
ERROR_FLT_DISALLOW_FAST_IO                                   = 0x801F0004
ERROR_FLT_INVALID_NAME_REQUEST                               = 0x801F0005
ERROR_FLT_NOT_SAFE_TO_POST_OPERATION                         = 0x801F0006
ERROR_FLT_NOT_INITIALIZED                                    = 0x801F0007
ERROR_FLT_FILTER_NOT_READY                                   = 0x801F0008
ERROR_FLT_POST_OPERATION_CLEANUP                             = 0x801F0009
ERROR_FLT_INTERNAL_ERROR                                     = 0x801F000A
ERROR_FLT_DELETING_OBJECT                                    = 0x801F000B
ERROR_FLT_MUST_BE_NONPAGED_POOL                              = 0x801F000C
ERROR_FLT_DUPLICATE_ENTRY                                    = 0x801F000D
ERROR_FLT_CBDQ_DISABLED                                      = 0x801F000E
ERROR_FLT_DO_NOT_ATTACH                                      = 0x801F000F
ERROR_FLT_DO_NOT_DETACH                                      = 0x801F0010
ERROR_FLT_INSTANCE_ALTITUDE_COLLISION                        = 0x801F0011
ERROR_FLT_INSTANCE_NAME_COLLISION                            = 0x801F0012
ERROR_FLT_FILTER_NOT_FOUND                                   = 0x801F0013
ERROR_FLT_VOLUME_NOT_FOUND                                   = 0x801F0014
ERROR_FLT_INSTANCE_NOT_FOUND                                 = 0x801F0015
ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND                       = 0x801F0016
ERROR_FLT_INVALID_CONTEXT_REGISTRATION                       = 0x801F0017
ERROR_FLT_NAME_CACHE_MISS                                    = 0x801F0018
ERROR_FLT_NO_DEVICE_OBJECT                                   = 0x801F0019
ERROR_FLT_VOLUME_ALREADY_MOUNTED                             = 0x801F001A
ERROR_FLT_ALREADY_ENLISTED                                   = 0x801F001B
ERROR_FLT_CONTEXT_ALREADY_LINKED                             = 0x801F001C
ERROR_FLT_NO_WAITER_FOR_REPLY                                = 0x801F0020
ERROR_HUNG_DISPLAY_DRIVER_THREAD                             = 0x80260001
ERROR_MONITOR_NO_DESCRIPTOR                                  = 0x80261001
ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT                      = 0x80261002
DWM_E_COMPOSITIONDISABLED                                    = 0x80263001
DWM_E_REMOTING_NOT_SUPPORTED                                 = 0x80263002
DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE                       = 0x80263003
DWM_E_NOT_QUEUING_PRESENTS                                   = 0x80263004
TPM_E_ERROR_MASK                                             = 0x80280000
TPM_E_AUTHFAIL                                               = 0x80280001
TPM_E_BADINDEX                                               = 0x80280002
TPM_E_BAD_PARAMETER                                          = 0x80280003
TPM_E_AUDITFAILURE                                           = 0x80280004
TPM_E_CLEAR_DISABLED                                         = 0x80280005
TPM_E_DEACTIVATED                                            = 0x80280006
TPM_E_DISABLED                                               = 0x80280007
TPM_E_DISABLED_CMD                                           = 0x80280008
TPM_E_FAIL                                                   = 0x80280009
TPM_E_BAD_ORDINAL                                            = 0x8028000A
TPM_E_INSTALL_DISABLED                                       = 0x8028000B
TPM_E_INVALID_KEYHANDLE                                      = 0x8028000C
TPM_E_KEYNOTFOUND                                            = 0x8028000D
TPM_E_INAPPROPRIATE_ENC                                      = 0x8028000E
TPM_E_MIGRATEFAIL                                            = 0x8028000F
TPM_E_INVALID_PCR_INFO                                       = 0x80280010
TPM_E_NOSPACE                                                = 0x80280011
TPM_E_NOSRK                                                  = 0x80280012
TPM_E_NOTSEALED_BLOB                                         = 0x80280013
TPM_E_OWNER_SET                                              = 0x80280014
TPM_E_RESOURCES                                              = 0x80280015
TPM_E_SHORTRANDOM                                            = 0x80280016
TPM_E_SIZE                                                   = 0x80280017
TPM_E_WRONGPCRVAL                                            = 0x80280018
TPM_E_BAD_PARAM_SIZE                                         = 0x80280019
TPM_E_SHA_THREAD                                             = 0x8028001A
TPM_E_SHA_ERROR                                              = 0x8028001B
TPM_E_FAILEDSELFTEST                                         = 0x8028001C
TPM_E_AUTH2FAIL                                              = 0x8028001D
TPM_E_BADTAG                                                 = 0x8028001E
TPM_E_IOERROR                                                = 0x8028001F
TPM_E_ENCRYPT_ERROR                                          = 0x80280020
TPM_E_DECRYPT_ERROR                                          = 0x80280021
TPM_E_INVALID_AUTHHANDLE                                     = 0x80280022
TPM_E_NO_ENDORSEMENT                                         = 0x80280023
TPM_E_INVALID_KEYUSAGE                                       = 0x80280024
TPM_E_WRONG_ENTITYTYPE                                       = 0x80280025
TPM_E_INVALID_POSTINIT                                       = 0x80280026
TPM_E_INAPPROPRIATE_SIG                                      = 0x80280027
TPM_E_BAD_KEY_PROPERTY                                       = 0x80280028
TPM_E_BAD_MIGRATION                                          = 0x80280029
TPM_E_BAD_SCHEME                                             = 0x8028002A
TPM_E_BAD_DATASIZE                                           = 0x8028002B
TPM_E_BAD_MODE                                               = 0x8028002C
TPM_E_BAD_PRESENCE                                           = 0x8028002D
TPM_E_BAD_VERSION                                            = 0x8028002E
TPM_E_NO_WRAP_TRANSPORT                                      = 0x8028002F
TPM_E_AUDITFAIL_UNSUCCESSFUL                                 = 0x80280030
TPM_E_AUDITFAIL_SUCCESSFUL                                   = 0x80280031
TPM_E_NOTRESETABLE                                           = 0x80280032
TPM_E_NOTLOCAL                                               = 0x80280033
TPM_E_BAD_TYPE                                               = 0x80280034
TPM_E_INVALID_RESOURCE                                       = 0x80280035
TPM_E_NOTFIPS                                                = 0x80280036
TPM_E_INVALID_FAMILY                                         = 0x80280037
TPM_E_NO_NV_PERMISSION                                       = 0x80280038
TPM_E_REQUIRES_SIGN                                          = 0x80280039
TPM_E_KEY_NOTSUPPORTED                                       = 0x8028003A
TPM_E_AUTH_CONFLICT                                          = 0x8028003B
TPM_E_AREA_LOCKED                                            = 0x8028003C
TPM_E_BAD_LOCALITY                                           = 0x8028003D
TPM_E_READ_ONLY                                              = 0x8028003E
TPM_E_PER_NOWRITE                                            = 0x8028003F
TPM_E_FAMILYCOUNT                                            = 0x80280040
TPM_E_WRITE_LOCKED                                           = 0x80280041
TPM_E_BAD_ATTRIBUTES                                         = 0x80280042
TPM_E_INVALID_STRUCTURE                                      = 0x80280043
TPM_E_KEY_OWNER_CONTROL                                      = 0x80280044
TPM_E_BAD_COUNTER                                            = 0x80280045
TPM_E_NOT_FULLWRITE                                          = 0x80280046
TPM_E_CONTEXT_GAP                                            = 0x80280047
TPM_E_MAXNVWRITES                                            = 0x80280048
TPM_E_NOOPERATOR                                             = 0x80280049
TPM_E_RESOURCEMISSING                                        = 0x8028004A
TPM_E_DELEGATE_LOCK                                          = 0x8028004B
TPM_E_DELEGATE_FAMILY                                        = 0x8028004C
TPM_E_DELEGATE_ADMIN                                         = 0x8028004D
TPM_E_TRANSPORT_NOTEXCLUSIVE                                 = 0x8028004E
TPM_E_OWNER_CONTROL                                          = 0x8028004F
TPM_E_DAA_RESOURCES                                          = 0x80280050
TPM_E_DAA_INPUT_DATA0                                        = 0x80280051
TPM_E_DAA_INPUT_DATA1                                        = 0x80280052
TPM_E_DAA_ISSUER_SETTINGS                                    = 0x80280053
TPM_E_DAA_TPM_SETTINGS                                       = 0x80280054
TPM_E_DAA_STAGE                                              = 0x80280055
TPM_E_DAA_ISSUER_VALIDITY                                    = 0x80280056
TPM_E_DAA_WRONG_W                                            = 0x80280057
TPM_E_BAD_HANDLE                                             = 0x80280058
TPM_E_BAD_DELEGATE                                           = 0x80280059
TPM_E_BADCONTEXT                                             = 0x8028005A
TPM_E_TOOMANYCONTEXTS                                        = 0x8028005B
TPM_E_MA_TICKET_SIGNATURE                                    = 0x8028005C
TPM_E_MA_DESTINATION                                         = 0x8028005D
TPM_E_MA_SOURCE                                              = 0x8028005E
TPM_E_MA_AUTHORITY                                           = 0x8028005F
TPM_E_PERMANENTEK                                            = 0x80280061
TPM_E_BAD_SIGNATURE                                          = 0x80280062
TPM_E_NOCONTEXTSPACE                                         = 0x80280063
TPM_E_COMMAND_BLOCKED                                        = 0x80280400
TPM_E_INVALID_HANDLE                                         = 0x80280401
TPM_E_DUPLICATE_VHANDLE                                      = 0x80280402
TPM_E_EMBEDDED_COMMAND_BLOCKED                               = 0x80280403
TPM_E_EMBEDDED_COMMAND_UNSUPPORTED                           = 0x80280404
TPM_E_RETRY                                                  = 0x80280800
TPM_E_NEEDS_SELFTEST                                         = 0x80280801
TPM_E_DOING_SELFTEST                                         = 0x80280802
TPM_E_DEFEND_LOCK_RUNNING                                    = 0x80280803
TBS_E_INTERNAL_ERROR                                         = 0x80284001
TBS_E_BAD_PARAMETER                                          = 0x80284002
TBS_E_INVALID_OUTPUT_POINTER                                 = 0x80284003
TBS_E_INVALID_CONTEXT                                        = 0x80284004
TBS_E_INSUFFICIENT_BUFFER                                    = 0x80284005
TBS_E_IOERROR                                                = 0x80284006
TBS_E_INVALID_CONTEXT_PARAM                                  = 0x80284007
TBS_E_SERVICE_NOT_RUNNING                                    = 0x80284008
TBS_E_TOO_MANY_TBS_CONTEXTS                                  = 0x80284009
TBS_E_TOO_MANY_RESOURCES                                     = 0x8028400A
TBS_E_SERVICE_START_PENDING                                  = 0x8028400B
TBS_E_PPI_NOT_SUPPORTED                                      = 0x8028400C
TBS_E_COMMAND_CANCELED                                       = 0x8028400D
TBS_E_BUFFER_TOO_LARGE                                       = 0x8028400E
TPMAPI_E_INVALID_STATE                                       = 0x80290100
TPMAPI_E_NOT_ENOUGH_DATA                                     = 0x80290101
TPMAPI_E_TOO_MUCH_DATA                                       = 0x80290102
TPMAPI_E_INVALID_OUTPUT_POINTER                              = 0x80290103
TPMAPI_E_INVALID_PARAMETER                                   = 0x80290104
TPMAPI_E_OUT_OF_MEMORY                                       = 0x80290105
TPMAPI_E_BUFFER_TOO_SMALL                                    = 0x80290106
TPMAPI_E_INTERNAL_ERROR                                      = 0x80290107
TPMAPI_E_ACCESS_DENIED                                       = 0x80290108
TPMAPI_E_AUTHORIZATION_FAILED                                = 0x80290109
TPMAPI_E_INVALID_CONTEXT_HANDLE                              = 0x8029010A
TPMAPI_E_TBS_COMMUNICATION_ERROR                             = 0x8029010B
TPMAPI_E_TPM_COMMAND_ERROR                                   = 0x8029010C
TPMAPI_E_MESSAGE_TOO_LARGE                                   = 0x8029010D
TPMAPI_E_INVALID_ENCODING                                    = 0x8029010E
TPMAPI_E_INVALID_KEY_SIZE                                    = 0x8029010F
TPMAPI_E_ENCRYPTION_FAILED                                   = 0x80290110
TPMAPI_E_INVALID_KEY_PARAMS                                  = 0x80290111
TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB                = 0x80290112
TPMAPI_E_INVALID_PCR_INDEX                                   = 0x80290113
TPMAPI_E_INVALID_DELEGATE_BLOB                               = 0x80290114
TPMAPI_E_INVALID_CONTEXT_PARAMS                              = 0x80290115
TPMAPI_E_INVALID_KEY_BLOB                                    = 0x80290116
TPMAPI_E_INVALID_PCR_DATA                                    = 0x80290117
TPMAPI_E_INVALID_OWNER_AUTH                                  = 0x80290118
TBSIMP_E_BUFFER_TOO_SMALL                                    = 0x80290200
TBSIMP_E_CLEANUP_FAILED                                      = 0x80290201
TBSIMP_E_INVALID_CONTEXT_HANDLE                              = 0x80290202
TBSIMP_E_INVALID_CONTEXT_PARAM                               = 0x80290203
TBSIMP_E_TPM_ERROR                                           = 0x80290204
TBSIMP_E_HASH_BAD_KEY                                        = 0x80290205
TBSIMP_E_DUPLICATE_VHANDLE                                   = 0x80290206
TBSIMP_E_INVALID_OUTPUT_POINTER                              = 0x80290207
TBSIMP_E_INVALID_PARAMETER                                   = 0x80290208
TBSIMP_E_RPC_INIT_FAILED                                     = 0x80290209
TBSIMP_E_SCHEDULER_NOT_RUNNING                               = 0x8029020A
TBSIMP_E_COMMAND_CANCELED                                    = 0x8029020B
TBSIMP_E_OUT_OF_MEMORY                                       = 0x8029020C
TBSIMP_E_LIST_NO_MORE_ITEMS                                  = 0x8029020D
TBSIMP_E_LIST_NOT_FOUND                                      = 0x8029020E
TBSIMP_E_NOT_ENOUGH_SPACE                                    = 0x8029020F
TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS                             = 0x80290210
TBSIMP_E_COMMAND_FAILED                                      = 0x80290211
TBSIMP_E_UNKNOWN_ORDINAL                                     = 0x80290212
TBSIMP_E_RESOURCE_EXPIRED                                    = 0x80290213
TBSIMP_E_INVALID_RESOURCE                                    = 0x80290214
TBSIMP_E_NOTHING_TO_UNLOAD                                   = 0x80290215
TBSIMP_E_HASH_TABLE_FULL                                     = 0x80290216
TBSIMP_E_TOO_MANY_TBS_CONTEXTS                               = 0x80290217
TBSIMP_E_TOO_MANY_RESOURCES                                  = 0x80290218
TBSIMP_E_PPI_NOT_SUPPORTED                                   = 0x80290219
TBSIMP_E_TPM_INCOMPATIBLE                                    = 0x8029021A
TPM_E_PPI_ACPI_FAILURE                                       = 0x80290300
TPM_E_PPI_USER_ABORT                                         = 0x80290301
TPM_E_PPI_BIOS_FAILURE                                       = 0x80290302
TPM_E_PPI_NOT_SUPPORTED                                      = 0x80290303
PLA_E_DCS_NOT_FOUND                                          = 0x80300002
PLA_E_TOO_MANY_FOLDERS                                       = 0x80300045
PLA_E_NO_MIN_DISK                                            = 0x80300070
PLA_E_DCS_IN_USE                                             = 0x803000AA
PLA_E_DCS_ALREADY_EXISTS                                     = 0x803000B7
PLA_E_PROPERTY_CONFLICT                                      = 0x80300101
PLA_E_DCS_SINGLETON_REQUIRED                                 = 0x80300102
PLA_E_CREDENTIALS_REQUIRED                                   = 0x80300103
PLA_E_DCS_NOT_RUNNING                                        = 0x80300104
PLA_E_CONFLICT_INCL_EXCL_API                                 = 0x80300105
PLA_E_NETWORK_EXE_NOT_VALID                                  = 0x80300106
PLA_E_EXE_ALREADY_CONFIGURED                                 = 0x80300107
PLA_E_EXE_PATH_NOT_VALID                                     = 0x80300108
PLA_E_DC_ALREADY_EXISTS                                      = 0x80300109
PLA_E_DCS_START_WAIT_TIMEOUT                                 = 0x8030010A
PLA_E_DC_START_WAIT_TIMEOUT                                  = 0x8030010B
PLA_E_REPORT_WAIT_TIMEOUT                                    = 0x8030010C
PLA_E_NO_DUPLICATES                                          = 0x8030010D
PLA_E_EXE_FULL_PATH_REQUIRED                                 = 0x8030010E
PLA_E_INVALID_SESSION_NAME                                   = 0x8030010F
PLA_E_PLA_CHANNEL_NOT_ENABLED                                = 0x80300110
PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED                          = 0x80300111
FVE_E_LOCKED_VOLUME                                          = 0x80310000
FVE_E_NOT_ENCRYPTED                                          = 0x80310001
FVE_E_NO_TPM_BIOS                                            = 0x80310002
FVE_E_NO_MBR_METRIC                                          = 0x80310003
FVE_E_NO_BOOTSECTOR_METRIC                                   = 0x80310004
FVE_E_NO_BOOTMGR_METRIC                                      = 0x80310005
FVE_E_WRONG_BOOTMGR                                          = 0x80310006
FVE_E_SECURE_KEY_REQUIRED                                    = 0x80310007
FVE_E_NOT_ACTIVATED                                          = 0x80310008
FVE_E_ACTION_NOT_ALLOWED                                     = 0x80310009
FVE_E_AD_SCHEMA_NOT_INSTALLED                                = 0x8031000A
FVE_E_AD_INVALID_DATATYPE                                    = 0x8031000B
FVE_E_AD_INVALID_DATASIZE                                    = 0x8031000C
FVE_E_AD_NO_VALUES                                           = 0x8031000D
FVE_E_AD_ATTR_NOT_SET                                        = 0x8031000E
FVE_E_AD_GUID_NOT_FOUND                                      = 0x8031000F
FVE_E_BAD_INFORMATION                                        = 0x80310010
FVE_E_TOO_SMALL                                              = 0x80310011
FVE_E_SYSTEM_VOLUME                                          = 0x80310012
FVE_E_FAILED_WRONG_FS                                        = 0x80310013
FVE_E_FAILED_BAD_FS                                          = 0x80310014
FVE_E_NOT_SUPPORTED                                          = 0x80310015
FVE_E_BAD_DATA                                               = 0x80310016
FVE_E_VOLUME_NOT_BOUND                                       = 0x80310017
FVE_E_TPM_NOT_OWNED                                          = 0x80310018
FVE_E_NOT_DATA_VOLUME                                        = 0x80310019
FVE_E_AD_INSUFFICIENT_BUFFER                                 = 0x8031001A
FVE_E_CONV_READ                                              = 0x8031001B
FVE_E_CONV_WRITE                                             = 0x8031001C
FVE_E_KEY_REQUIRED                                           = 0x8031001D
FVE_E_CLUSTERING_NOT_SUPPORTED                               = 0x8031001E
FVE_E_VOLUME_BOUND_ALREADY                                   = 0x8031001F
FVE_E_OS_NOT_PROTECTED                                       = 0x80310020
FVE_E_PROTECTION_DISABLED                                    = 0x80310021
FVE_E_RECOVERY_KEY_REQUIRED                                  = 0x80310022
FVE_E_FOREIGN_VOLUME                                         = 0x80310023
FVE_E_OVERLAPPED_UPDATE                                      = 0x80310024
FVE_E_TPM_SRK_AUTH_NOT_ZERO                                  = 0x80310025
FVE_E_FAILED_SECTOR_SIZE                                     = 0x80310026
FVE_E_FAILED_AUTHENTICATION                                  = 0x80310027
FVE_E_NOT_OS_VOLUME                                          = 0x80310028
FVE_E_AUTOUNLOCK_ENABLED                                     = 0x80310029
FVE_E_WRONG_BOOTSECTOR                                       = 0x8031002A
FVE_E_WRONG_SYSTEM_FS                                        = 0x8031002B
FVE_E_POLICY_PASSWORD_REQUIRED                               = 0x8031002C
FVE_E_CANNOT_SET_FVEK_ENCRYPTED                              = 0x8031002D
FVE_E_CANNOT_ENCRYPT_NO_KEY                                  = 0x8031002E
FVE_E_BOOTABLE_CDDVD                                         = 0x80310030
FVE_E_PROTECTOR_EXISTS                                       = 0x80310031
FVE_E_RELATIVE_PATH                                          = 0x80310032
FWP_E_CALLOUT_NOT_FOUND                                      = 0x80320001
FWP_E_CONDITION_NOT_FOUND                                    = 0x80320002
FWP_E_FILTER_NOT_FOUND                                       = 0x80320003
FWP_E_LAYER_NOT_FOUND                                        = 0x80320004
FWP_E_PROVIDER_NOT_FOUND                                     = 0x80320005
FWP_E_PROVIDER_CONTEXT_NOT_FOUND                             = 0x80320006
FWP_E_SUBLAYER_NOT_FOUND                                     = 0x80320007
FWP_E_NOT_FOUND                                              = 0x80320008
FWP_E_ALREADY_EXISTS                                         = 0x80320009
FWP_E_IN_USE                                                 = 0x8032000A
FWP_E_DYNAMIC_SESSION_IN_PROGRESS                            = 0x8032000B
FWP_E_WRONG_SESSION                                          = 0x8032000C
FWP_E_NO_TXN_IN_PROGRESS                                     = 0x8032000D
FWP_E_TXN_IN_PROGRESS                                        = 0x8032000E
FWP_E_TXN_ABORTED                                            = 0x8032000F
FWP_E_SESSION_ABORTED                                        = 0x80320010
FWP_E_INCOMPATIBLE_TXN                                       = 0x80320011
FWP_E_TIMEOUT                                                = 0x80320012
FWP_E_NET_EVENTS_DISABLED                                    = 0x80320013
FWP_E_INCOMPATIBLE_LAYER                                     = 0x80320014
FWP_E_KM_CLIENTS_ONLY                                        = 0x80320015
FWP_E_LIFETIME_MISMATCH                                      = 0x80320016
FWP_E_BUILTIN_OBJECT                                         = 0x80320017
FWP_E_TOO_MANY_BOOTTIME_FILTERS                              = 0x80320018
FWP_E_NOTIFICATION_DROPPED                                   = 0x80320019
FWP_E_TRAFFIC_MISMATCH                                       = 0x8032001A
FWP_E_INCOMPATIBLE_SA_STATE                                  = 0x8032001B
FWP_E_NULL_POINTER                                           = 0x8032001C
FWP_E_INVALID_ENUMERATOR                                     = 0x8032001D
FWP_E_INVALID_FLAGS                                          = 0x8032001E
FWP_E_INVALID_NET_MASK                                       = 0x8032001F
FWP_E_INVALID_RANGE                                          = 0x80320020
FWP_E_INVALID_INTERVAL                                       = 0x80320021
FWP_E_ZERO_LENGTH_ARRAY                                      = 0x80320022
FWP_E_NULL_DISPLAY_NAME                                      = 0x80320023
FWP_E_INVALID_ACTION_TYPE                                    = 0x80320024
FWP_E_INVALID_WEIGHT                                         = 0x80320025
FWP_E_MATCH_TYPE_MISMATCH                                    = 0x80320026
FWP_E_TYPE_MISMATCH                                          = 0x80320027
FWP_E_OUT_OF_BOUNDS                                          = 0x80320028
FWP_E_RESERVED                                               = 0x80320029
FWP_E_DUPLICATE_CONDITION                                    = 0x8032002A
FWP_E_DUPLICATE_KEYMOD                                       = 0x8032002B
FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER                         = 0x8032002C
FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER                      = 0x8032002D
FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER                        = 0x8032002E
FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT                      = 0x8032002F
FWP_E_INCOMPATIBLE_AUTH_METHOD                               = 0x80320030
FWP_E_INCOMPATIBLE_DH_GROUP                                  = 0x80320031
FWP_E_EM_NOT_SUPPORTED                                       = 0x80320032
FWP_E_NEVER_MATCH                                            = 0x80320033
FWP_E_PROVIDER_CONTEXT_MISMATCH                              = 0x80320034
FWP_E_INVALID_PARAMETER                                      = 0x80320035
FWP_E_TOO_MANY_SUBLAYERS                                     = 0x80320036
FWP_E_CALLOUT_NOTIFICATION_FAILED                            = 0x80320037
FWP_E_INCOMPATIBLE_AUTH_CONFIG                               = 0x80320038
FWP_E_INCOMPATIBLE_CIPHER_CONFIG                             = 0x80320039
ERROR_NDIS_INTERFACE_CLOSING                                 = 0x80340002
ERROR_NDIS_BAD_VERSION                                       = 0x80340004
ERROR_NDIS_BAD_CHARACTERISTICS                               = 0x80340005
ERROR_NDIS_ADAPTER_NOT_FOUND                                 = 0x80340006
ERROR_NDIS_OPEN_FAILED                                       = 0x80340007
ERROR_NDIS_DEVICE_FAILED                                     = 0x80340008
ERROR_NDIS_MULTICAST_FULL                                    = 0x80340009
ERROR_NDIS_MULTICAST_EXISTS                                  = 0x8034000A
ERROR_NDIS_MULTICAST_NOT_FOUND                               = 0x8034000B
ERROR_NDIS_REQUEST_ABORTED                                   = 0x8034000C
ERROR_NDIS_RESET_IN_PROGRESS                                 = 0x8034000D
ERROR_NDIS_INVALID_PACKET                                    = 0x8034000F
ERROR_NDIS_INVALID_DEVICE_REQUEST                            = 0x80340010
ERROR_NDIS_ADAPTER_NOT_READY                                 = 0x80340011
ERROR_NDIS_INVALID_LENGTH                                    = 0x80340014
ERROR_NDIS_INVALID_DATA                                      = 0x80340015
ERROR_NDIS_BUFFER_TOO_SHORT                                  = 0x80340016
ERROR_NDIS_INVALID_OID                                       = 0x80340017
ERROR_NDIS_ADAPTER_REMOVED                                   = 0x80340018
ERROR_NDIS_UNSUPPORTED_MEDIA                                 = 0x80340019
ERROR_NDIS_GROUP_ADDRESS_IN_USE                              = 0x8034001A
ERROR_NDIS_FILE_NOT_FOUND                                    = 0x8034001B
ERROR_NDIS_ERROR_READING_FILE                                = 0x8034001C
ERROR_NDIS_ALREADY_MAPPED                                    = 0x8034001D
ERROR_NDIS_RESOURCE_CONFLICT                                 = 0x8034001E
ERROR_NDIS_MEDIA_DISCONNECTED                                = 0x8034001F
ERROR_NDIS_INVALID_ADDRESS                                   = 0x80340022
ERROR_NDIS_PAUSED                                            = 0x8034002A
ERROR_NDIS_INTERFACE_NOT_FOUND                               = 0x8034002B
ERROR_NDIS_UNSUPPORTED_REVISION                              = 0x8034002C
ERROR_NDIS_INVALID_PORT                                      = 0x8034002D
ERROR_NDIS_INVALID_PORT_STATE                                = 0x8034002E
ERROR_NDIS_NOT_SUPPORTED                                     = 0x803400BB
ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED                         = 0x80342000
ERROR_NDIS_DOT11_MEDIA_IN_USE                                = 0x80342001
ERROR_NDIS_DOT11_POWER_STATE_INVALID                         = 0x80342002
TRK_E_NOT_FOUND                                              = 0x8DEAD01B
TRK_E_VOLUME_QUOTA_EXCEEDED                                  = 0x8DEAD01C
TRK_SERVER_TOO_BUSY                                          = 0x8DEAD01E
ERROR_AUDITING_DISABLED                                      = 0xC0090001
ERROR_ALL_SIDS_FILTERED                                      = 0xC0090002
ERROR_BIZRULES_NOT_ENABLED                                   = 0xC0090003
NS_E_NOCONNECTION                                            = 0xC00D0005
NS_E_CANNOTCONNECT                                           = 0xC00D0006
NS_E_CANNOTDESTROYTITLE                                      = 0xC00D0007
NS_E_CANNOTRENAMETITLE                                       = 0xC00D0008
NS_E_CANNOTOFFLINEDISK                                       = 0xC00D0009
NS_E_CANNOTONLINEDISK                                        = 0xC00D000A
NS_E_NOREGISTEREDWALKER                                      = 0xC00D000B
NS_E_NOFUNNEL                                                = 0xC00D000C
NS_E_NO_LOCALPLAY                                            = 0xC00D000D
NS_E_NETWORK_BUSY                                            = 0xC00D000E
NS_E_TOO_MANY_SESS                                           = 0xC00D000F
NS_E_ALREADY_CONNECTED                                       = 0xC00D0010
NS_E_INVALID_INDEX                                           = 0xC00D0011
NS_E_PROTOCOL_MISMATCH                                       = 0xC00D0012
NS_E_TIMEOUT                                                 = 0xC00D0013
NS_E_NET_WRITE                                               = 0xC00D0014
NS_E_NET_READ                                                = 0xC00D0015
NS_E_DISK_WRITE                                              = 0xC00D0016
NS_E_DISK_READ                                               = 0xC00D0017
NS_E_FILE_WRITE                                              = 0xC00D0018
NS_E_FILE_READ                                               = 0xC00D0019
NS_E_FILE_NOT_FOUND                                          = 0xC00D001A
NS_E_FILE_EXISTS                                             = 0xC00D001B
NS_E_INVALID_NAME                                            = 0xC00D001C
NS_E_FILE_OPEN_FAILED                                        = 0xC00D001D
NS_E_FILE_ALLOCATION_FAILED                                  = 0xC00D001E
NS_E_FILE_INIT_FAILED                                        = 0xC00D001F
NS_E_FILE_PLAY_FAILED                                        = 0xC00D0020
NS_E_SET_DISK_UID_FAILED                                     = 0xC00D0021
NS_E_INDUCED                                                 = 0xC00D0022
NS_E_CCLINK_DOWN                                             = 0xC00D0023
NS_E_INTERNAL                                                = 0xC00D0024
NS_E_BUSY                                                    = 0xC00D0025
NS_E_UNRECOGNIZED_STREAM_TYPE                                = 0xC00D0026
NS_E_NETWORK_SERVICE_FAILURE                                 = 0xC00D0027
NS_E_NETWORK_RESOURCE_FAILURE                                = 0xC00D0028
NS_E_CONNECTION_FAILURE                                      = 0xC00D0029
NS_E_SHUTDOWN                                                = 0xC00D002A
NS_E_INVALID_REQUEST                                         = 0xC00D002B
NS_E_INSUFFICIENT_BANDWIDTH                                  = 0xC00D002C
NS_E_NOT_REBUILDING                                          = 0xC00D002D
NS_E_LATE_OPERATION                                          = 0xC00D002E
NS_E_INVALID_DATA                                            = 0xC00D002F
NS_E_FILE_BANDWIDTH_LIMIT                                    = 0xC00D0030
NS_E_OPEN_FILE_LIMIT                                         = 0xC00D0031
NS_E_BAD_CONTROL_DATA                                        = 0xC00D0032
NS_E_NO_STREAM                                               = 0xC00D0033
NS_E_STREAM_END                                              = 0xC00D0034
NS_E_SERVER_NOT_FOUND                                        = 0xC00D0035
NS_E_DUPLICATE_NAME                                          = 0xC00D0036
NS_E_DUPLICATE_ADDRESS                                       = 0xC00D0037
NS_E_BAD_MULTICAST_ADDRESS                                   = 0xC00D0038
NS_E_BAD_ADAPTER_ADDRESS                                     = 0xC00D0039
NS_E_BAD_DELIVERY_MODE                                       = 0xC00D003A
NS_E_INVALID_CHANNEL                                         = 0xC00D003B
NS_E_INVALID_STREAM                                          = 0xC00D003C
NS_E_INVALID_ARCHIVE                                         = 0xC00D003D
NS_E_NOTITLES                                                = 0xC00D003E
NS_E_INVALID_CLIENT                                          = 0xC00D003F
NS_E_INVALID_BLACKHOLE_ADDRESS                               = 0xC00D0040
NS_E_INCOMPATIBLE_FORMAT                                     = 0xC00D0041
NS_E_INVALID_KEY                                             = 0xC00D0042
NS_E_INVALID_PORT                                            = 0xC00D0043
NS_E_INVALID_TTL                                             = 0xC00D0044
NS_E_STRIDE_REFUSED                                          = 0xC00D0045
NS_E_MMSAUTOSERVER_CANTFINDWALKER                            = 0xC00D0046
NS_E_MAX_BITRATE                                             = 0xC00D0047
NS_E_LOGFILEPERIOD                                           = 0xC00D0048
NS_E_MAX_CLIENTS                                             = 0xC00D0049
NS_E_LOG_FILE_SIZE                                           = 0xC00D004A
NS_E_MAX_FILERATE                                            = 0xC00D004B
NS_E_WALKER_UNKNOWN                                          = 0xC00D004C
NS_E_WALKER_SERVER                                           = 0xC00D004D
NS_E_WALKER_USAGE                                            = 0xC00D004E
NS_E_TIGER_FAIL                                              = 0xC00D0050
NS_E_CUB_FAIL                                                = 0xC00D0053
NS_E_DISK_FAIL                                               = 0xC00D0055
NS_E_MAX_FUNNELS_ALERT                                       = 0xC00D0060
NS_E_ALLOCATE_FILE_FAIL                                      = 0xC00D0061
NS_E_PAGING_ERROR                                            = 0xC00D0062
NS_E_BAD_BLOCK0_VERSION                                      = 0xC00D0063
NS_E_BAD_DISK_UID                                            = 0xC00D0064
NS_E_BAD_FSMAJOR_VERSION                                     = 0xC00D0065
NS_E_BAD_STAMPNUMBER                                         = 0xC00D0066
NS_E_PARTIALLY_REBUILT_DISK                                  = 0xC00D0067
NS_E_ENACTPLAN_GIVEUP                                        = 0xC00D0068
MCMADM_E_REGKEY_NOT_FOUND                                    = 0xC00D006A
NS_E_NO_FORMATS                                              = 0xC00D006B
NS_E_NO_REFERENCES                                           = 0xC00D006C
NS_E_WAVE_OPEN                                               = 0xC00D006D
NS_E_CANNOTCONNECTEVENTS                                     = 0xC00D006F
NS_E_NO_DEVICE                                               = 0xC00D0071
NS_E_NO_SPECIFIED_DEVICE                                     = 0xC00D0072
NS_E_MONITOR_GIVEUP                                          = 0xC00D00C8
NS_E_REMIRRORED_DISK                                         = 0xC00D00C9
NS_E_INSUFFICIENT_DATA                                       = 0xC00D00CA
NS_E_ASSERT                                                  = 0xC00D00CB
NS_E_BAD_ADAPTER_NAME                                        = 0xC00D00CC
NS_E_NOT_LICENSED                                            = 0xC00D00CD
NS_E_NO_SERVER_CONTACT                                       = 0xC00D00CE
NS_E_TOO_MANY_TITLES                                         = 0xC00D00CF
NS_E_TITLE_SIZE_EXCEEDED                                     = 0xC00D00D0
NS_E_UDP_DISABLED                                            = 0xC00D00D1
NS_E_TCP_DISABLED                                            = 0xC00D00D2
NS_E_HTTP_DISABLED                                           = 0xC00D00D3
NS_E_LICENSE_EXPIRED                                         = 0xC00D00D4
NS_E_TITLE_BITRATE                                           = 0xC00D00D5
NS_E_EMPTY_PROGRAM_NAME                                      = 0xC00D00D6
NS_E_MISSING_CHANNEL                                         = 0xC00D00D7
NS_E_NO_CHANNELS                                             = 0xC00D00D8
NS_E_INVALID_INDEX2                                          = 0xC00D00D9
NS_E_CUB_FAIL_LINK                                           = 0xC00D0190
NS_E_BAD_CUB_UID                                             = 0xC00D0192
NS_E_GLITCH_MODE                                             = 0xC00D0195
NS_E_NO_MEDIA_PROTOCOL                                       = 0xC00D019B
NS_E_NOTHING_TO_DO                                           = 0xC00D07F1
NS_E_NO_MULTICAST                                            = 0xC00D07F2
NS_E_INVALID_INPUT_FORMAT                                    = 0xC00D0BB8
NS_E_MSAUDIO_NOT_INSTALLED                                   = 0xC00D0BB9
NS_E_UNEXPECTED_MSAUDIO_ERROR                                = 0xC00D0BBA
NS_E_INVALID_OUTPUT_FORMAT                                   = 0xC00D0BBB
NS_E_NOT_CONFIGURED                                          = 0xC00D0BBC
NS_E_PROTECTED_CONTENT                                       = 0xC00D0BBD
NS_E_LICENSE_REQUIRED                                        = 0xC00D0BBE
NS_E_TAMPERED_CONTENT                                        = 0xC00D0BBF
NS_E_LICENSE_OUTOFDATE                                       = 0xC00D0BC0
NS_E_LICENSE_INCORRECT_RIGHTS                                = 0xC00D0BC1
NS_E_AUDIO_CODEC_NOT_INSTALLED                               = 0xC00D0BC2
NS_E_AUDIO_CODEC_ERROR                                       = 0xC00D0BC3
NS_E_VIDEO_CODEC_NOT_INSTALLED                               = 0xC00D0BC4
NS_E_VIDEO_CODEC_ERROR                                       = 0xC00D0BC5
NS_E_INVALIDPROFILE                                          = 0xC00D0BC6
NS_E_INCOMPATIBLE_VERSION                                    = 0xC00D0BC7
NS_E_OFFLINE_MODE                                            = 0xC00D0BCA
NS_E_NOT_CONNECTED                                           = 0xC00D0BCB
NS_E_TOO_MUCH_DATA                                           = 0xC00D0BCC
NS_E_UNSUPPORTED_PROPERTY                                    = 0xC00D0BCD
NS_E_8BIT_WAVE_UNSUPPORTED                                   = 0xC00D0BCE
NS_E_NO_MORE_SAMPLES                                         = 0xC00D0BCF
NS_E_INVALID_SAMPLING_RATE                                   = 0xC00D0BD0
NS_E_MAX_PACKET_SIZE_TOO_SMALL                               = 0xC00D0BD1
NS_E_LATE_PACKET                                             = 0xC00D0BD2
NS_E_DUPLICATE_PACKET                                        = 0xC00D0BD3
NS_E_SDK_BUFFERTOOSMALL                                      = 0xC00D0BD4
NS_E_INVALID_NUM_PASSES                                      = 0xC00D0BD5
NS_E_ATTRIBUTE_READ_ONLY                                     = 0xC00D0BD6
NS_E_ATTRIBUTE_NOT_ALLOWED                                   = 0xC00D0BD7
NS_E_INVALID_EDL                                             = 0xC00D0BD8
NS_E_DATA_UNIT_EXTENSION_TOO_LARGE                           = 0xC00D0BD9
NS_E_CODEC_DMO_ERROR                                         = 0xC00D0BDA
NS_E_FEATURE_DISABLED_BY_GROUP_POLICY                        = 0xC00D0BDC
NS_E_FEATURE_DISABLED_IN_SKU                                 = 0xC00D0BDD
NS_E_NO_CD                                                   = 0xC00D0FA0
NS_E_CANT_READ_DIGITAL                                       = 0xC00D0FA1
NS_E_DEVICE_DISCONNECTED                                     = 0xC00D0FA2
NS_E_DEVICE_NOT_SUPPORT_FORMAT                               = 0xC00D0FA3
NS_E_SLOW_READ_DIGITAL                                       = 0xC00D0FA4
NS_E_MIXER_INVALID_LINE                                      = 0xC00D0FA5
NS_E_MIXER_INVALID_CONTROL                                   = 0xC00D0FA6
NS_E_MIXER_INVALID_VALUE                                     = 0xC00D0FA7
NS_E_MIXER_UNKNOWN_MMRESULT                                  = 0xC00D0FA8
NS_E_USER_STOP                                               = 0xC00D0FA9
NS_E_MP3_FORMAT_NOT_FOUND                                    = 0xC00D0FAA
NS_E_CD_READ_ERROR_NO_CORRECTION                             = 0xC00D0FAB
NS_E_CD_READ_ERROR                                           = 0xC00D0FAC
NS_E_CD_SLOW_COPY                                            = 0xC00D0FAD
NS_E_CD_COPYTO_CD                                            = 0xC00D0FAE
NS_E_MIXER_NODRIVER                                          = 0xC00D0FAF
NS_E_REDBOOK_ENABLED_WHILE_COPYING                           = 0xC00D0FB0
NS_E_CD_REFRESH                                              = 0xC00D0FB1
NS_E_CD_DRIVER_PROBLEM                                       = 0xC00D0FB2
NS_E_WONT_DO_DIGITAL                                         = 0xC00D0FB3
NS_E_WMPXML_NOERROR                                          = 0xC00D0FB4
NS_E_WMPXML_ENDOFDATA                                        = 0xC00D0FB5
NS_E_WMPXML_PARSEERROR                                       = 0xC00D0FB6
NS_E_WMPXML_ATTRIBUTENOTFOUND                                = 0xC00D0FB7
NS_E_WMPXML_PINOTFOUND                                       = 0xC00D0FB8
NS_E_WMPXML_EMPTYDOC                                         = 0xC00D0FB9
NS_E_WMP_PATH_ALREADY_IN_LIBRARY                             = 0xC00D0FBA
NS_E_WMP_FILESCANALREADYSTARTED                              = 0xC00D0FBE
NS_E_WMP_HME_INVALIDOBJECTID                                 = 0xC00D0FBF
NS_E_WMP_MF_CODE_EXPIRED                                     = 0xC00D0FC0
NS_E_WMP_HME_NOTSEARCHABLEFORITEMS                           = 0xC00D0FC1
NS_E_WMP_ADDTOLIBRARY_FAILED                                 = 0xC00D0FC7
NS_E_WMP_WINDOWSAPIFAILURE                                   = 0xC00D0FC8
NS_E_WMP_RECORDING_NOT_ALLOWED                               = 0xC00D0FC9
NS_E_DEVICE_NOT_READY                                        = 0xC00D0FCA
NS_E_DAMAGED_FILE                                            = 0xC00D0FCB
NS_E_MPDB_GENERIC                                            = 0xC00D0FCC
NS_E_FILE_FAILED_CHECKS                                      = 0xC00D0FCD
NS_E_MEDIA_LIBRARY_FAILED                                    = 0xC00D0FCE
NS_E_SHARING_VIOLATION                                       = 0xC00D0FCF
NS_E_NO_ERROR_STRING_FOUND                                   = 0xC00D0FD0
NS_E_WMPOCX_NO_REMOTE_CORE                                   = 0xC00D0FD1
NS_E_WMPOCX_NO_ACTIVE_CORE                                   = 0xC00D0FD2
NS_E_WMPOCX_NOT_RUNNING_REMOTELY                             = 0xC00D0FD3
NS_E_WMPOCX_NO_REMOTE_WINDOW                                 = 0xC00D0FD4
NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE                         = 0xC00D0FD5
NS_E_PLUGIN_NOTSHUTDOWN                                      = 0xC00D0FD6
NS_E_WMP_CANNOT_FIND_FOLDER                                  = 0xC00D0FD7
NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED                     = 0xC00D0FD8
NS_E_WMP_PLUGINDLL_NOTFOUND                                  = 0xC00D0FD9
NS_E_NEED_TO_ASK_USER                                        = 0xC00D0FDA
NS_E_WMPOCX_PLAYER_NOT_DOCKED                                = 0xC00D0FDB
NS_E_WMP_EXTERNAL_NOTREADY                                   = 0xC00D0FDC
NS_E_WMP_MLS_STALE_DATA                                      = 0xC00D0FDD
NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED                          = 0xC00D0FDE
NS_E_WMP_UI_VERSIONMISMATCH                                  = 0xC00D0FDF
NS_E_WMP_UI_NOTATHEMEFILE                                    = 0xC00D0FE0
NS_E_WMP_UI_SUBELEMENTNOTFOUND                               = 0xC00D0FE1
NS_E_WMP_UI_VERSIONPARSE                                     = 0xC00D0FE2
NS_E_WMP_UI_VIEWIDNOTFOUND                                   = 0xC00D0FE3
NS_E_WMP_UI_PASSTHROUGH                                      = 0xC00D0FE4
NS_E_WMP_UI_OBJECTNOTFOUND                                   = 0xC00D0FE5
NS_E_WMP_UI_SECONDHANDLER                                    = 0xC00D0FE6
NS_E_WMP_UI_NOSKININZIP                                      = 0xC00D0FE7
NS_E_WMP_URLDOWNLOADFAILED                                   = 0xC00D0FEA
NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN                              = 0xC00D0FEB
NS_E_WMP_INVALID_SKIN                                        = 0xC00D0FEC
NS_E_WMP_SENDMAILFAILED                                      = 0xC00D0FED
NS_E_WMP_LOCKEDINSKINMODE                                    = 0xC00D0FEE
NS_E_WMP_FAILED_TO_SAVE_FILE                                 = 0xC00D0FEF
NS_E_WMP_SAVEAS_READONLY                                     = 0xC00D0FF0
NS_E_WMP_FAILED_TO_SAVE_PLAYLIST                             = 0xC00D0FF1
NS_E_WMP_FAILED_TO_OPEN_WMD                                  = 0xC00D0FF2
NS_E_WMP_CANT_PLAY_PROTECTED                                 = 0xC00D0FF3
NS_E_SHARING_STATE_OUT_OF_SYNC                               = 0xC00D0FF4
NS_E_WMPOCX_REMOTE_PLAYER_ALREADY_RUNNING                    = 0xC00D0FFA
NS_E_WMP_RBC_JPGMAPPINGIMAGE                                 = 0xC00D1004
NS_E_WMP_JPGTRANSPARENCY                                     = 0xC00D1005
NS_E_WMP_INVALID_MAX_VAL                                     = 0xC00D1009
NS_E_WMP_INVALID_MIN_VAL                                     = 0xC00D100A
NS_E_WMP_CS_JPGPOSITIONIMAGE                                 = 0xC00D100E
NS_E_WMP_CS_NOTEVENLYDIVISIBLE                               = 0xC00D100F
NS_E_WMPZIP_NOTAZIPFILE                                      = 0xC00D1018
NS_E_WMPZIP_CORRUPT                                          = 0xC00D1019
NS_E_WMPZIP_FILENOTFOUND                                     = 0xC00D101A
NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED                          = 0xC00D1022
NS_E_WMP_IMAGE_INVALID_FORMAT                                = 0xC00D1023
NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE                            = 0xC00D1024
NS_E_WMP_GIF_INVALID_FORMAT                                  = 0xC00D1025
NS_E_WMP_GIF_BAD_VERSION_NUMBER                              = 0xC00D1026
NS_E_WMP_GIF_NO_IMAGE_IN_FILE                                = 0xC00D1027
NS_E_WMP_PNG_INVALIDFORMAT                                   = 0xC00D1028
NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH                            = 0xC00D1029
NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION                         = 0xC00D102A
NS_E_WMP_PNG_UNSUPPORTED_FILTER                              = 0xC00D102B
NS_E_WMP_PNG_UNSUPPORTED_INTERLACE                           = 0xC00D102C
NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC                             = 0xC00D102D
NS_E_WMP_BMP_INVALID_BITMASK                                 = 0xC00D102E
NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED                         = 0xC00D102F
NS_E_WMP_BMP_BITMAP_NOT_CREATED                              = 0xC00D1030
NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED                         = 0xC00D1031
NS_E_WMP_BMP_INVALID_FORMAT                                  = 0xC00D1032
NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL                        = 0xC00D1033
NS_E_WMP_JPG_INVALID_FORMAT                                  = 0xC00D1034
NS_E_WMP_JPG_BAD_DCTSIZE                                     = 0xC00D1035
NS_E_WMP_JPG_BAD_VERSION_NUMBER                              = 0xC00D1036
NS_E_WMP_JPG_BAD_PRECISION                                   = 0xC00D1037
NS_E_WMP_JPG_CCIR601_NOTIMPL                                 = 0xC00D1038
NS_E_WMP_JPG_NO_IMAGE_IN_FILE                                = 0xC00D1039
NS_E_WMP_JPG_READ_ERROR                                      = 0xC00D103A
NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL                            = 0xC00D103B
NS_E_WMP_JPG_IMAGE_TOO_BIG                                   = 0xC00D103C
NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE                            = 0xC00D103D
NS_E_WMP_JPG_SOF_UNSUPPORTED                                 = 0xC00D103E
NS_E_WMP_JPG_UNKNOWN_MARKER                                  = 0xC00D103F
NS_E_WMP_FAILED_TO_OPEN_IMAGE                                = 0xC00D1044
NS_E_WMP_DAI_SONGTOOSHORT                                    = 0xC00D1049
NS_E_WMG_RATEUNAVAILABLE                                     = 0xC00D104A
NS_E_WMG_PLUGINUNAVAILABLE                                   = 0xC00D104B
NS_E_WMG_CANNOTQUEUE                                         = 0xC00D104C
NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED                 = 0xC00D104D
NS_E_WMG_UNEXPECTEDPREROLLSTATUS                             = 0xC00D104E
NS_E_WMG_INVALID_COPP_CERTIFICATE                            = 0xC00D1051
NS_E_WMG_COPP_SECURITY_INVALID                               = 0xC00D1052
NS_E_WMG_COPP_UNSUPPORTED                                    = 0xC00D1053
NS_E_WMG_INVALIDSTATE                                        = 0xC00D1054
NS_E_WMG_SINKALREADYEXISTS                                   = 0xC00D1055
NS_E_WMG_NOSDKINTERFACE                                      = 0xC00D1056
NS_E_WMG_NOTALLOUTPUTSRENDERED                               = 0xC00D1057
NS_E_WMG_FILETRANSFERNOTALLOWED                              = 0xC00D1058
NS_E_WMR_UNSUPPORTEDSTREAM                                   = 0xC00D1059
NS_E_WMR_PINNOTFOUND                                         = 0xC00D105A
NS_E_WMR_WAITINGONFORMATSWITCH                               = 0xC00D105B
NS_E_WMR_NOSOURCEFILTER                                      = 0xC00D105C
NS_E_WMR_PINTYPENOMATCH                                      = 0xC00D105D
NS_E_WMR_NOCALLBACKAVAILABLE                                 = 0xC00D105E
NS_E_WMR_SAMPLEPROPERTYNOTSET                                = 0xC00D1062
NS_E_WMR_CANNOT_RENDER_BINARY_STREAM                         = 0xC00D1063
NS_E_WMG_LICENSE_TAMPERED                                    = 0xC00D1064
NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM                        = 0xC00D1065
NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT                        = 0xC00D1068
NS_E_ASX_INVALIDFORMAT                                       = 0xC00D1069
NS_E_ASX_INVALIDVERSION                                      = 0xC00D106A
NS_E_ASX_INVALID_REPEAT_BLOCK                                = 0xC00D106B
NS_E_ASX_NOTHING_TO_WRITE                                    = 0xC00D106C
NS_E_URLLIST_INVALIDFORMAT                                   = 0xC00D106D
NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST                            = 0xC00D106E
NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS                            = 0xC00D106F
NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE                             = 0xC00D1070
NS_E_WMX_ITEM_DOES_NOT_EXIST                                 = 0xC00D1071
NS_E_WMX_ITEM_TYPE_ILLEGAL                                   = 0xC00D1072
NS_E_WMX_ITEM_UNSETTABLE                                     = 0xC00D1073
NS_E_WMX_PLAYLIST_EMPTY                                      = 0xC00D1074
NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED                 = 0xC00D1075
NS_E_WMX_INVALID_FORMAT_OVER_NESTING                         = 0xC00D1076
NS_E_WMPCORE_NOSOURCEURLSTRING                               = 0xC00D107C
NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT                      = 0xC00D107D
NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE      = 0xC00D107E
NS_E_WMPCORE_BUFFERTOOSMALL                                  = 0xC00D107F
NS_E_WMPCORE_UNAVAILABLE                                     = 0xC00D1080
NS_E_WMPCORE_INVALIDPLAYLISTMODE                             = 0xC00D1081
NS_E_WMPCORE_ITEMNOTINPLAYLIST                               = 0xC00D1086
NS_E_WMPCORE_PLAYLISTEMPTY                                   = 0xC00D1087
NS_E_WMPCORE_NOBROWSER                                       = 0xC00D1088
NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL                          = 0xC00D1089
NS_E_WMPCORE_GRAPH_NOT_IN_LIST                               = 0xC00D108A
NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA                  = 0xC00D108B
NS_E_WMPCORE_ERRORSINKNOTREGISTERED                          = 0xC00D108C
NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE                        = 0xC00D108D
NS_E_WMPCORE_WEBHELPFAILED                                   = 0xC00D108E
NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED                       = 0xC00D108F
NS_E_WMPCORE_NO_REF_IN_ENTRY                                 = 0xC00D1090
NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY                   = 0xC00D1091
NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL                 = 0xC00D1092
NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY                  = 0xC00D1093
NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL                = 0xC00D1094
NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY              = 0xC00D1095
NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL            = 0xC00D1096
NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY             = 0xC00D1097
NS_E_WMPCORE_LIST_ENTRY_NO_REF                               = 0xC00D1098
NS_E_WMPCORE_MISNAMED_FILE                                   = 0xC00D1099
NS_E_WMPCORE_CODEC_NOT_TRUSTED                               = 0xC00D109A
NS_E_WMPCORE_CODEC_NOT_FOUND                                 = 0xC00D109B
NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED                      = 0xC00D109C
NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST                      = 0xC00D109D
NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST                        = 0xC00D109E
NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE                    = 0xC00D109F
NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED               = 0xC00D10A0
NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND          = 0xC00D10A1
NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED            = 0xC00D10A2
NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED             = 0xC00D10A3
NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY                       = 0xC00D10A4
NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME                          = 0xC00D10A5
NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT                 = 0xC00D10A6
NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY                            = 0xC00D10A7
NS_E_WMPCORE_PLAYLIST_STACK_EMPTY                            = 0xC00D10A8
NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE                        = 0xC00D10A9
NS_E_WMPCORE_USER_CANCEL                                     = 0xC00D10AB
NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY                           = 0xC00D10AC
NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE                = 0xC00D10AD
NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE                  = 0xC00D10AE
NS_E_WMPCORE_INVALID_PLAYLIST_URL                            = 0xC00D10AF
NS_E_WMPCORE_MISMATCHED_RUNTIME                              = 0xC00D10B0
NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS                 = 0xC00D10B1
NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION                = 0xC00D10B2
NS_E_WMPCORE_MEDIA_UNAVAILABLE                               = 0xC00D10B3
NS_E_WMPCORE_WMX_ENTRYREF_NO_REF                             = 0xC00D10B4
NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST                   = 0xC00D10B5
NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS    = 0xC00D10B6
NS_E_WMPCORE_BUSY                                            = 0xC00D10B7
NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE                = 0xC00D10B8
NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST                         = 0xC00D10B9
NS_E_WMPCORE_FILE_NOT_FOUND                                  = 0xC00D10BA
NS_E_WMPCORE_TEMP_FILE_NOT_FOUND                             = 0xC00D10BB
NS_E_WMDM_REVOKED                                            = 0xC00D10BC
NS_E_DDRAW_GENERIC                                           = 0xC00D10BD
NS_E_DISPLAY_MODE_CHANGE_FAILED                              = 0xC00D10BE
NS_E_PLAYLIST_CONTAINS_ERRORS                                = 0xC00D10BF
NS_E_CHANGING_PROXY_NAME                                     = 0xC00D10C0
NS_E_CHANGING_PROXY_PORT                                     = 0xC00D10C1
NS_E_CHANGING_PROXY_EXCEPTIONLIST                            = 0xC00D10C2
NS_E_CHANGING_PROXYBYPASS                                    = 0xC00D10C3
NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND                       = 0xC00D10C4
NS_E_GRAPH_NOAUDIOLANGUAGE                                   = 0xC00D10C5
NS_E_GRAPH_NOAUDIOLANGUAGESELECTED                           = 0xC00D10C6
NS_E_CORECD_NOTAMEDIACD                                      = 0xC00D10C7
NS_E_WMPCORE_MEDIA_URL_TOO_LONG                              = 0xC00D10C8
NS_E_WMPFLASH_CANT_FIND_COM_SERVER                           = 0xC00D10C9
NS_E_WMPFLASH_INCOMPATIBLEVERSION                            = 0xC00D10CA
NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS               = 0xC00D10CB
NS_E_NEED_CORE_REFERENCE                                     = 0xC00D10CC
NS_E_MEDIACD_READ_ERROR                                      = 0xC00D10CD
NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS                           = 0xC00D10CE
NS_E_FLASH_PLAYBACK_NOT_ALLOWED                              = 0xC00D10CF
NS_E_UNABLE_TO_CREATE_RIP_LOCATION                           = 0xC00D10D0
NS_E_WMPCORE_SOME_CODECS_MISSING                             = 0xC00D10D1
NS_E_WMP_RIP_FAILED                                          = 0xC00D10D2
NS_E_WMP_FAILED_TO_RIP_TRACK                                 = 0xC00D10D3
NS_E_WMP_ERASE_FAILED                                        = 0xC00D10D4
NS_E_WMP_FORMAT_FAILED                                       = 0xC00D10D5
NS_E_WMP_CANNOT_BURN_NON_LOCAL_FILE                          = 0xC00D10D6
NS_E_WMP_FILE_TYPE_CANNOT_BURN_TO_AUDIO_CD                   = 0xC00D10D7
NS_E_WMP_FILE_DOES_NOT_FIT_ON_CD                             = 0xC00D10D8
NS_E_WMP_FILE_NO_DURATION                                    = 0xC00D10D9
NS_E_PDA_FAILED_TO_BURN                                      = 0xC00D10DA
NS_E_FAILED_DOWNLOAD_ABORT_BURN                              = 0xC00D10DC
NS_E_WMPCORE_DEVICE_DRIVERS_MISSING                          = 0xC00D10DD
NS_E_WMPIM_USEROFFLINE                                       = 0xC00D1126
NS_E_WMPIM_USERCANCELED                                      = 0xC00D1127
NS_E_WMPIM_DIALUPFAILED                                      = 0xC00D1128
NS_E_WINSOCK_ERROR_STRING                                    = 0xC00D1129
NS_E_WMPBR_NOLISTENER                                        = 0xC00D1130
NS_E_WMPBR_BACKUPCANCEL                                      = 0xC00D1131
NS_E_WMPBR_RESTORECANCEL                                     = 0xC00D1132
NS_E_WMPBR_ERRORWITHURL                                      = 0xC00D1133
NS_E_WMPBR_NAMECOLLISION                                     = 0xC00D1134
NS_E_WMPBR_DRIVE_INVALID                                     = 0xC00D1137
NS_E_WMPBR_BACKUPRESTOREFAILED                               = 0xC00D1138
NS_E_WMP_CONVERT_FILE_FAILED                                 = 0xC00D1158
NS_E_WMP_CONVERT_NO_RIGHTS_ERRORURL                          = 0xC00D1159
NS_E_WMP_CONVERT_NO_RIGHTS_NOERRORURL                        = 0xC00D115A
NS_E_WMP_CONVERT_FILE_CORRUPT                                = 0xC00D115B
NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_ERRORURL                 = 0xC00D115C
NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_NOERRORURL               = 0xC00D115D
NS_E_WMP_CONVERT_PLUGIN_UNKNOWN_FILE_OWNER                   = 0xC00D115E
NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_NS                         = 0xC00D1160
NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_FAILED                     = 0xC00D1161
NS_E_DVD_NO_SUBPICTURE_STREAM                                = 0xC00D1162
NS_E_DVD_COPY_PROTECT                                        = 0xC00D1163
NS_E_DVD_AUTHORING_PROBLEM                                   = 0xC00D1164
NS_E_DVD_INVALID_DISC_REGION                                 = 0xC00D1165
NS_E_DVD_COMPATIBLE_VIDEO_CARD                               = 0xC00D1166
NS_E_DVD_MACROVISION                                         = 0xC00D1167
NS_E_DVD_SYSTEM_DECODER_REGION                               = 0xC00D1168
NS_E_DVD_DISC_DECODER_REGION                                 = 0xC00D1169
NS_E_DVD_NO_VIDEO_STREAM                                     = 0xC00D116A
NS_E_DVD_NO_AUDIO_STREAM                                     = 0xC00D116B
NS_E_DVD_GRAPH_BUILDING                                      = 0xC00D116C
NS_E_DVD_NO_DECODER                                          = 0xC00D116D
NS_E_DVD_PARENTAL                                            = 0xC00D116E
NS_E_DVD_CANNOT_JUMP                                         = 0xC00D116F
NS_E_DVD_DEVICE_CONTENTION                                   = 0xC00D1170
NS_E_DVD_NO_VIDEO_MEMORY                                     = 0xC00D1171
NS_E_DVD_CANNOT_COPY_PROTECTED                               = 0xC00D1172
NS_E_DVD_REQUIRED_PROPERTY_NOT_SET                           = 0xC00D1173
NS_E_DVD_INVALID_TITLE_CHAPTER                               = 0xC00D1174
NS_E_NO_CD_BURNER                                            = 0xC00D1176
NS_E_DEVICE_IS_NOT_READY                                     = 0xC00D1177
NS_E_PDA_UNSUPPORTED_FORMAT                                  = 0xC00D1178
NS_E_NO_PDA                                                  = 0xC00D1179
NS_E_PDA_UNSPECIFIED_ERROR                                   = 0xC00D117A
NS_E_MEMSTORAGE_BAD_DATA                                     = 0xC00D117B
NS_E_PDA_FAIL_SELECT_DEVICE                                  = 0xC00D117C
NS_E_PDA_FAIL_READ_WAVE_FILE                                 = 0xC00D117D
NS_E_IMAPI_LOSSOFSTREAMING                                   = 0xC00D117E
NS_E_PDA_DEVICE_FULL                                         = 0xC00D117F
NS_E_FAIL_LAUNCH_ROXIO_PLUGIN                                = 0xC00D1180
NS_E_PDA_DEVICE_FULL_IN_SESSION                              = 0xC00D1181
NS_E_IMAPI_MEDIUM_INVALIDTYPE                                = 0xC00D1182
NS_E_PDA_MANUALDEVICE                                        = 0xC00D1183
NS_E_PDA_PARTNERSHIPNOTEXIST                                 = 0xC00D1184
NS_E_PDA_CANNOT_CREATE_ADDITIONAL_SYNC_RELATIONSHIP          = 0xC00D1185
NS_E_PDA_NO_TRANSCODE_OF_DRM                                 = 0xC00D1186
NS_E_PDA_TRANSCODECACHEFULL                                  = 0xC00D1187
NS_E_PDA_TOO_MANY_FILE_COLLISIONS                            = 0xC00D1188
NS_E_PDA_CANNOT_TRANSCODE                                    = 0xC00D1189
NS_E_PDA_TOO_MANY_FILES_IN_DIRECTORY                         = 0xC00D118A
NS_E_PROCESSINGSHOWSYNCWIZARD                                = 0xC00D118B
NS_E_PDA_TRANSCODE_NOT_PERMITTED                             = 0xC00D118C
NS_E_PDA_INITIALIZINGDEVICES                                 = 0xC00D118D
NS_E_PDA_OBSOLETE_SP                                         = 0xC00D118E
NS_E_PDA_TITLE_COLLISION                                     = 0xC00D118F
NS_E_PDA_DEVICESUPPORTDISABLED                               = 0xC00D1190
NS_E_PDA_NO_LONGER_AVAILABLE                                 = 0xC00D1191
NS_E_PDA_ENCODER_NOT_RESPONDING                              = 0xC00D1192
NS_E_PDA_CANNOT_SYNC_FROM_LOCATION                           = 0xC00D1193
NS_E_WMP_PROTOCOL_PROBLEM                                    = 0xC00D1194
NS_E_WMP_NO_DISK_SPACE                                       = 0xC00D1195
NS_E_WMP_LOGON_FAILURE                                       = 0xC00D1196
NS_E_WMP_CANNOT_FIND_FILE                                    = 0xC00D1197
NS_E_WMP_SERVER_INACCESSIBLE                                 = 0xC00D1198
NS_E_WMP_UNSUPPORTED_FORMAT                                  = 0xC00D1199
NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT                            = 0xC00D119A
NS_E_WMP_PLAYLIST_EXISTS                                     = 0xC00D119B
NS_E_WMP_NONMEDIA_FILES                                      = 0xC00D119C
NS_E_WMP_INVALID_ASX                                         = 0xC00D119D
NS_E_WMP_ALREADY_IN_USE                                      = 0xC00D119E
NS_E_WMP_IMAPI_FAILURE                                       = 0xC00D119F
NS_E_WMP_WMDM_FAILURE                                        = 0xC00D11A0
NS_E_WMP_CODEC_NEEDED_WITH_4CC                               = 0xC00D11A1
NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG                         = 0xC00D11A2
NS_E_WMP_MSSAP_NOT_AVAILABLE                                 = 0xC00D11A3
NS_E_WMP_WMDM_INTERFACEDEAD                                  = 0xC00D11A4
NS_E_WMP_WMDM_NOTCERTIFIED                                   = 0xC00D11A5
NS_E_WMP_WMDM_LICENSE_NOTEXIST                               = 0xC00D11A6
NS_E_WMP_WMDM_LICENSE_EXPIRED                                = 0xC00D11A7
NS_E_WMP_WMDM_BUSY                                           = 0xC00D11A8
NS_E_WMP_WMDM_NORIGHTS                                       = 0xC00D11A9
NS_E_WMP_WMDM_INCORRECT_RIGHTS                               = 0xC00D11AA
NS_E_WMP_IMAPI_GENERIC                                       = 0xC00D11AB
NS_E_WMP_IMAPI_DEVICE_NOTPRESENT                             = 0xC00D11AD
NS_E_WMP_IMAPI_DEVICE_BUSY                                   = 0xC00D11AE
NS_E_WMP_IMAPI_LOSS_OF_STREAMING                             = 0xC00D11AF
NS_E_WMP_SERVER_UNAVAILABLE                                  = 0xC00D11B0
NS_E_WMP_FILE_OPEN_FAILED                                    = 0xC00D11B1
NS_E_WMP_VERIFY_ONLINE                                       = 0xC00D11B2
NS_E_WMP_SERVER_NOT_RESPONDING                               = 0xC00D11B3
NS_E_WMP_DRM_CORRUPT_BACKUP                                  = 0xC00D11B4
NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE                      = 0xC00D11B5
NS_E_WMP_NETWORK_FIREWALL                                    = 0xC00D11B6
NS_E_WMP_NO_REMOVABLE_MEDIA                                  = 0xC00D11B7
NS_E_WMP_PROXY_CONNECT_TIMEOUT                               = 0xC00D11B8
NS_E_WMP_NEED_UPGRADE                                        = 0xC00D11B9
NS_E_WMP_AUDIO_HW_PROBLEM                                    = 0xC00D11BA
NS_E_WMP_INVALID_PROTOCOL                                    = 0xC00D11BB
NS_E_WMP_INVALID_LIBRARY_ADD                                 = 0xC00D11BC
NS_E_WMP_MMS_NOT_SUPPORTED                                   = 0xC00D11BD
NS_E_WMP_NO_PROTOCOLS_SELECTED                               = 0xC00D11BE
NS_E_WMP_GOFULLSCREEN_FAILED                                 = 0xC00D11BF
NS_E_WMP_NETWORK_ERROR                                       = 0xC00D11C0
NS_E_WMP_CONNECT_TIMEOUT                                     = 0xC00D11C1
NS_E_WMP_MULTICAST_DISABLED                                  = 0xC00D11C2
NS_E_WMP_SERVER_DNS_TIMEOUT                                  = 0xC00D11C3
NS_E_WMP_PROXY_NOT_FOUND                                     = 0xC00D11C4
NS_E_WMP_TAMPERED_CONTENT                                    = 0xC00D11C5
NS_E_WMP_OUTOFMEMORY                                         = 0xC00D11C6
NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED                           = 0xC00D11C7
NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED                           = 0xC00D11C8
NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE                            = 0xC00D11C9
NS_E_WMP_DRM_DRIVER_AUTH_FAILURE                             = 0xC00D11CA
NS_E_WMP_NETWORK_RESOURCE_FAILURE                            = 0xC00D11CB
NS_E_WMP_UPGRADE_APPLICATION                                 = 0xC00D11CC
NS_E_WMP_UNKNOWN_ERROR                                       = 0xC00D11CD
NS_E_WMP_INVALID_KEY                                         = 0xC00D11CE
NS_E_WMP_CD_ANOTHER_USER                                     = 0xC00D11CF
NS_E_WMP_DRM_NEEDS_AUTHORIZATION                             = 0xC00D11D0
NS_E_WMP_BAD_DRIVER                                          = 0xC00D11D1
NS_E_WMP_ACCESS_DENIED                                       = 0xC00D11D2
NS_E_WMP_LICENSE_RESTRICTS                                   = 0xC00D11D3
NS_E_WMP_INVALID_REQUEST                                     = 0xC00D11D4
NS_E_WMP_CD_STASH_NO_SPACE                                   = 0xC00D11D5
NS_E_WMP_DRM_NEW_HARDWARE                                    = 0xC00D11D6
NS_E_WMP_DRM_INVALID_SIG                                     = 0xC00D11D7
NS_E_WMP_DRM_CANNOT_RESTORE                                  = 0xC00D11D8
NS_E_WMP_BURN_DISC_OVERFLOW                                  = 0xC00D11D9
NS_E_WMP_DRM_GENERIC_LICENSE_FAILURE                         = 0xC00D11DA
NS_E_WMP_DRM_NO_SECURE_CLOCK                                 = 0xC00D11DB
NS_E_WMP_DRM_NO_RIGHTS                                       = 0xC00D11DC
NS_E_WMP_DRM_INDIV_FAILED                                    = 0xC00D11DD
NS_E_WMP_SERVER_NONEWCONNECTIONS                             = 0xC00D11DE
NS_E_WMP_MULTIPLE_ERROR_IN_PLAYLIST                          = 0xC00D11DF
NS_E_WMP_IMAPI2_ERASE_FAIL                                   = 0xC00D11E0
NS_E_WMP_IMAPI2_ERASE_DEVICE_BUSY                            = 0xC00D11E1
NS_E_WMP_DRM_COMPONENT_FAILURE                               = 0xC00D11E2
NS_E_WMP_DRM_NO_DEVICE_CERT                                  = 0xC00D11E3
NS_E_WMP_SERVER_SECURITY_ERROR                               = 0xC00D11E4
NS_E_WMP_AUDIO_DEVICE_LOST                                   = 0xC00D11E5
NS_E_WMP_IMAPI_MEDIA_INCOMPATIBLE                            = 0xC00D11E6
NS_E_SYNCWIZ_DEVICE_FULL                                     = 0xC00D11EE
NS_E_SYNCWIZ_CANNOT_CHANGE_SETTINGS                          = 0xC00D11EF
NS_E_TRANSCODE_DELETECACHEERROR                              = 0xC00D11F0
NS_E_CD_NO_BUFFERS_READ                                      = 0xC00D11F8
NS_E_CD_EMPTY_TRACK_QUEUE                                    = 0xC00D11F9
NS_E_CD_NO_READER                                            = 0xC00D11FA
NS_E_CD_ISRC_INVALID                                         = 0xC00D11FB
NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID                         = 0xC00D11FC
NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION                  = 0xC00D11FD
NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS                         = 0xC00D11FE
NS_E_CD_QUEUEING_DISABLED                                    = 0xC00D11FF
NS_E_WMP_DRM_ACQUIRING_LICENSE                               = 0xC00D1202
NS_E_WMP_DRM_LICENSE_EXPIRED                                 = 0xC00D1203
NS_E_WMP_DRM_LICENSE_NOTACQUIRED                             = 0xC00D1204
NS_E_WMP_DRM_LICENSE_NOTENABLED                              = 0xC00D1205
NS_E_WMP_DRM_LICENSE_UNUSABLE                                = 0xC00D1206
NS_E_WMP_DRM_LICENSE_CONTENT_REVOKED                         = 0xC00D1207
NS_E_WMP_DRM_LICENSE_NOSAP                                   = 0xC00D1208
NS_E_WMP_DRM_UNABLE_TO_ACQUIRE_LICENSE                       = 0xC00D1209
NS_E_WMP_LICENSE_REQUIRED                                    = 0xC00D120A
NS_E_WMP_PROTECTED_CONTENT                                   = 0xC00D120B
NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED                         = 0xC00D122A
NS_E_PDA_CANNOT_SYNC_FROM_INTERNET                           = 0xC00D1234
NS_E_PDA_CANNOT_SYNC_INVALID_PLAYLIST                        = 0xC00D1235
NS_E_PDA_FAILED_TO_SYNCHRONIZE_FILE                          = 0xC00D1236
NS_E_PDA_SYNC_FAILED                                         = 0xC00D1237
NS_E_PDA_DELETE_FAILED                                       = 0xC00D1238
NS_E_PDA_FAILED_TO_RETRIEVE_FILE                             = 0xC00D1239
NS_E_PDA_DEVICE_NOT_RESPONDING                               = 0xC00D123A
NS_E_PDA_FAILED_TO_TRANSCODE_PHOTO                           = 0xC00D123B
NS_E_PDA_FAILED_TO_ENCRYPT_TRANSCODED_FILE                   = 0xC00D123C
NS_E_PDA_CANNOT_TRANSCODE_TO_AUDIO                           = 0xC00D123D
NS_E_PDA_CANNOT_TRANSCODE_TO_VIDEO                           = 0xC00D123E
NS_E_PDA_CANNOT_TRANSCODE_TO_IMAGE                           = 0xC00D123F
NS_E_PDA_RETRIEVED_FILE_FILENAME_TOO_LONG                    = 0xC00D1240
NS_E_PDA_CEWMDM_DRM_ERROR                                    = 0xC00D1241
NS_E_INCOMPLETE_PLAYLIST                                     = 0xC00D1242
NS_E_PDA_SYNC_RUNNING                                        = 0xC00D1243
NS_E_PDA_SYNC_LOGIN_ERROR                                    = 0xC00D1244
NS_E_PDA_TRANSCODE_CODEC_NOT_FOUND                           = 0xC00D1245
NS_E_CANNOT_SYNC_DRM_TO_NON_JANUS_DEVICE                     = 0xC00D1246
NS_E_CANNOT_SYNC_PREVIOUS_SYNC_RUNNING                       = 0xC00D1247
NS_E_WMP_HWND_NOTFOUND                                       = 0xC00D125C
NS_E_BKGDOWNLOAD_WRONG_NO_FILES                              = 0xC00D125D
NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB                        = 0xC00D125E
NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB                          = 0xC00D125F
NS_E_BKGDOWNLOAD_NOJOBPOINTER                                = 0xC00D1260
NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE                         = 0xC00D1261
NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE                   = 0xC00D1262
NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE                     = 0xC00D1263
NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE                     = 0xC00D1264
NS_E_BKGDOWNLOAD_CALLFUNCFAILED                              = 0xC00D1265
NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT                             = 0xC00D1266
NS_E_BKGDOWNLOAD_CALLFUNCENDED                               = 0xC00D1267
NS_E_BKGDOWNLOAD_WMDUNPACKFAILED                             = 0xC00D1268
NS_E_BKGDOWNLOAD_FAILEDINITIALIZE                            = 0xC00D1269
NS_E_INTERFACE_NOT_REGISTERED_IN_GIT                         = 0xC00D126A
NS_E_BKGDOWNLOAD_INVALID_FILE_NAME                           = 0xC00D126B
NS_E_IMAGE_DOWNLOAD_FAILED                                   = 0xC00D128E
NS_E_WMP_UDRM_NOUSERLIST                                     = 0xC00D12C0
NS_E_WMP_DRM_NOT_ACQUIRING                                   = 0xC00D12C1
NS_E_WMP_BSTR_TOO_LONG                                       = 0xC00D12F2
NS_E_WMP_AUTOPLAY_INVALID_STATE                              = 0xC00D12FC
NS_E_WMP_COMPONENT_REVOKED                                   = 0xC00D1306
NS_E_CURL_NOTSAFE                                            = 0xC00D1324
NS_E_CURL_INVALIDCHAR                                        = 0xC00D1325
NS_E_CURL_INVALIDHOSTNAME                                    = 0xC00D1326
NS_E_CURL_INVALIDPATH                                        = 0xC00D1327
NS_E_CURL_INVALIDSCHEME                                      = 0xC00D1328
NS_E_CURL_INVALIDURL                                         = 0xC00D1329
NS_E_CURL_CANTWALK                                           = 0xC00D132B
NS_E_CURL_INVALIDPORT                                        = 0xC00D132C
NS_E_CURLHELPER_NOTADIRECTORY                                = 0xC00D132D
NS_E_CURLHELPER_NOTAFILE                                     = 0xC00D132E
NS_E_CURL_CANTDECODE                                         = 0xC00D132F
NS_E_CURLHELPER_NOTRELATIVE                                  = 0xC00D1330
NS_E_CURL_INVALIDBUFFERSIZE                                  = 0xC00D1331
NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED                 = 0xC00D1356
NS_E_CANNOT_BUY_OR_DOWNLOAD_FROM_MULTIPLE_SERVICES           = 0xC00D1357
NS_E_CANNOT_BUY_OR_DOWNLOAD_CONTENT                          = 0xC00D1358
NS_E_NOT_CONTENT_PARTNER_TRACK                               = 0xC00D135A
NS_E_TRACK_DOWNLOAD_REQUIRES_ALBUM_PURCHASE                  = 0xC00D135B
NS_E_TRACK_DOWNLOAD_REQUIRES_PURCHASE                        = 0xC00D135C
NS_E_TRACK_PURCHASE_MAXIMUM_EXCEEDED                         = 0xC00D135D
NS_E_SUBSCRIPTIONSERVICE_LOGIN_FAILED                        = 0xC00D135F
NS_E_SUBSCRIPTIONSERVICE_DOWNLOAD_TIMEOUT                    = 0xC00D1360
NS_E_CONTENT_PARTNER_STILL_INITIALIZING                      = 0xC00D1362
NS_E_OPEN_CONTAINING_FOLDER_FAILED                           = 0xC00D1363
NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES                          = 0xC00D136A
NS_E_REDIRECT                                                = 0xC00D1388
NS_E_STALE_PRESENTATION                                      = 0xC00D1389
NS_E_NAMESPACE_WRONG_PERSIST                                 = 0xC00D138A
NS_E_NAMESPACE_WRONG_TYPE                                    = 0xC00D138B
NS_E_NAMESPACE_NODE_CONFLICT                                 = 0xC00D138C
NS_E_NAMESPACE_NODE_NOT_FOUND                                = 0xC00D138D
NS_E_NAMESPACE_BUFFER_TOO_SMALL                              = 0xC00D138E
NS_E_NAMESPACE_TOO_MANY_CALLBACKS                            = 0xC00D138F
NS_E_NAMESPACE_DUPLICATE_CALLBACK                            = 0xC00D1390
NS_E_NAMESPACE_CALLBACK_NOT_FOUND                            = 0xC00D1391
NS_E_NAMESPACE_NAME_TOO_LONG                                 = 0xC00D1392
NS_E_NAMESPACE_DUPLICATE_NAME                                = 0xC00D1393
NS_E_NAMESPACE_EMPTY_NAME                                    = 0xC00D1394
NS_E_NAMESPACE_INDEX_TOO_LARGE                               = 0xC00D1395
NS_E_NAMESPACE_BAD_NAME                                      = 0xC00D1396
NS_E_NAMESPACE_WRONG_SECURITY                                = 0xC00D1397
NS_E_CACHE_ARCHIVE_CONFLICT                                  = 0xC00D13EC
NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND                           = 0xC00D13ED
NS_E_CACHE_ORIGIN_SERVER_TIMEOUT                             = 0xC00D13EE
NS_E_CACHE_NOT_BROADCAST                                     = 0xC00D13EF
NS_E_CACHE_CANNOT_BE_CACHED                                  = 0xC00D13F0
NS_E_CACHE_NOT_MODIFIED                                      = 0xC00D13F1
NS_E_CANNOT_REMOVE_PUBLISHING_POINT                          = 0xC00D1450
NS_E_CANNOT_REMOVE_PLUGIN                                    = 0xC00D1451
NS_E_WRONG_PUBLISHING_POINT_TYPE                             = 0xC00D1452
NS_E_UNSUPPORTED_LOAD_TYPE                                   = 0xC00D1453
NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION                  = 0xC00D1454
NS_E_INVALID_PUBLISHING_POINT_NAME                           = 0xC00D1455
NS_E_TOO_MANY_MULTICAST_SINKS                                = 0xC00D1456
NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED          = 0xC00D1457
NS_E_MULTICAST_PLUGIN_NOT_ENABLED                            = 0xC00D1458
NS_E_INVALID_OPERATING_SYSTEM_VERSION                        = 0xC00D1459
NS_E_PUBLISHING_POINT_REMOVED                                = 0xC00D145A
NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST             = 0xC00D145B
NS_E_UNSUPPORTED_LANGUAGE                                    = 0xC00D145C
NS_E_WRONG_OS_VERSION                                        = 0xC00D145D
NS_E_PUBLISHING_POINT_STOPPED                                = 0xC00D145E
NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING                          = 0xC00D14B4
NS_E_EMPTY_PLAYLIST                                          = 0xC00D14B5
NS_E_PLAYLIST_PARSE_FAILURE                                  = 0xC00D14B6
NS_E_PLAYLIST_UNSUPPORTED_ENTRY                              = 0xC00D14B7
NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST                          = 0xC00D14B8
NS_E_PLAYLIST_ENTRY_SEEK                                     = 0xC00D14B9
NS_E_PLAYLIST_RECURSIVE_PLAYLISTS                            = 0xC00D14BA
NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS                      = 0xC00D14BB
NS_E_PLAYLIST_SHUTDOWN                                       = 0xC00D14BC
NS_E_PLAYLIST_END_RECEDING                                   = 0xC00D14BD
NS_E_DATAPATH_NO_SINK                                        = 0xC00D1518
NS_E_INVALID_PUSH_TEMPLATE                                   = 0xC00D151A
NS_E_INVALID_PUSH_PUBLISHING_POINT                           = 0xC00D151B
NS_E_CRITICAL_ERROR                                          = 0xC00D151C
NS_E_NO_NEW_CONNECTIONS                                      = 0xC00D151D
NS_E_WSX_INVALID_VERSION                                     = 0xC00D151E
NS_E_HEADER_MISMATCH                                         = 0xC00D151F
NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME                    = 0xC00D1520
NS_E_NO_SCRIPT_ENGINE                                        = 0xC00D157C
NS_E_PLUGIN_ERROR_REPORTED                                   = 0xC00D157D
NS_E_SOURCE_PLUGIN_NOT_FOUND                                 = 0xC00D157E
NS_E_PLAYLIST_PLUGIN_NOT_FOUND                               = 0xC00D157F
NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED                   = 0xC00D1580
NS_E_MEDIA_PARSER_INVALID_FORMAT                             = 0xC00D1581
NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED                           = 0xC00D1582
NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER                      = 0xC00D1583
NS_E_WIZARD_RUNNING                                          = 0xC00D1584
NS_E_INVALID_LOG_URL                                         = 0xC00D1585
NS_E_INVALID_MTU_RANGE                                       = 0xC00D1586
NS_E_INVALID_PLAY_STATISTICS                                 = 0xC00D1587
NS_E_LOG_NEED_TO_BE_SKIPPED                                  = 0xC00D1588
NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED             = 0xC00D1589
NS_E_PORT_IN_USE                                             = 0xC00D158A
NS_E_PORT_IN_USE_HTTP                                        = 0xC00D158B
NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE         = 0xC00D158C
NS_E_ARCHIVE_REACH_QUOTA                                     = 0xC00D158D
NS_E_ARCHIVE_ABORT_DUE_TO_BCAST                              = 0xC00D158E
NS_E_ARCHIVE_GAP_DETECTED                                    = 0xC00D158F
NS_E_AUTHORIZATION_FILE_NOT_FOUND                            = 0xC00D1590
NS_E_BAD_MARKIN                                              = 0xC00D1B58
NS_E_BAD_MARKOUT                                             = 0xC00D1B59
NS_E_NOMATCHING_MEDIASOURCE                                  = 0xC00D1B5A
NS_E_UNSUPPORTED_SOURCETYPE                                  = 0xC00D1B5B
NS_E_TOO_MANY_AUDIO                                          = 0xC00D1B5C
NS_E_TOO_MANY_VIDEO                                          = 0xC00D1B5D
NS_E_NOMATCHING_ELEMENT                                      = 0xC00D1B5E
NS_E_MISMATCHED_MEDIACONTENT                                 = 0xC00D1B5F
NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP                        = 0xC00D1B60
NS_E_AUDIODEVICE_BUSY                                        = 0xC00D1B61
NS_E_AUDIODEVICE_UNEXPECTED                                  = 0xC00D1B62
NS_E_AUDIODEVICE_BADFORMAT                                   = 0xC00D1B63
NS_E_VIDEODEVICE_BUSY                                        = 0xC00D1B64
NS_E_VIDEODEVICE_UNEXPECTED                                  = 0xC00D1B65
NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING                       = 0xC00D1B66
NS_E_NO_PROFILE_IN_SOURCEGROUP                               = 0xC00D1B67
NS_E_VIDEODRIVER_UNSTABLE                                    = 0xC00D1B68
NS_E_VIDCAPSTARTFAILED                                       = 0xC00D1B69
NS_E_VIDSOURCECOMPRESSION                                    = 0xC00D1B6A
NS_E_VIDSOURCESIZE                                           = 0xC00D1B6B
NS_E_ICMQUERYFORMAT                                          = 0xC00D1B6C
NS_E_VIDCAPCREATEWINDOW                                      = 0xC00D1B6D
NS_E_VIDCAPDRVINUSE                                          = 0xC00D1B6E
NS_E_NO_MEDIAFORMAT_IN_SOURCE                                = 0xC00D1B6F
NS_E_NO_VALID_OUTPUT_STREAM                                  = 0xC00D1B70
NS_E_NO_VALID_SOURCE_PLUGIN                                  = 0xC00D1B71
NS_E_NO_ACTIVE_SOURCEGROUP                                   = 0xC00D1B72
NS_E_NO_SCRIPT_STREAM                                        = 0xC00D1B73
NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING                      = 0xC00D1B74
NS_E_INVALIDPACKETSIZE                                       = 0xC00D1B75
NS_E_PLUGIN_CLSID_INVALID                                    = 0xC00D1B76
NS_E_UNSUPPORTED_ARCHIVETYPE                                 = 0xC00D1B77
NS_E_UNSUPPORTED_ARCHIVEOPERATION                            = 0xC00D1B78
NS_E_ARCHIVE_FILENAME_NOTSET                                 = 0xC00D1B79
NS_E_SOURCEGROUP_NOTPREPARED                                 = 0xC00D1B7A
NS_E_PROFILE_MISMATCH                                        = 0xC00D1B7B
NS_E_INCORRECTCLIPSETTINGS                                   = 0xC00D1B7C
NS_E_NOSTATSAVAILABLE                                        = 0xC00D1B7D
NS_E_NOTARCHIVING                                            = 0xC00D1B7E
NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED                       = 0xC00D1B7F
NS_E_NOSOURCEGROUPS                                          = 0xC00D1B80
NS_E_INVALIDINPUTFPS                                         = 0xC00D1B81
NS_E_NO_DATAVIEW_SUPPORT                                     = 0xC00D1B82
NS_E_CODEC_UNAVAILABLE                                       = 0xC00D1B83
NS_E_ARCHIVE_SAME_AS_INPUT                                   = 0xC00D1B84
NS_E_SOURCE_NOTSPECIFIED                                     = 0xC00D1B85
NS_E_NO_REALTIME_TIMECOMPRESSION                             = 0xC00D1B86
NS_E_UNSUPPORTED_ENCODER_DEVICE                              = 0xC00D1B87
NS_E_UNEXPECTED_DISPLAY_SETTINGS                             = 0xC00D1B88
NS_E_NO_AUDIODATA                                            = 0xC00D1B89
NS_E_INPUTSOURCE_PROBLEM                                     = 0xC00D1B8A
NS_E_WME_VERSION_MISMATCH                                    = 0xC00D1B8B
NS_E_NO_REALTIME_PREPROCESS                                  = 0xC00D1B8C
NS_E_NO_REPEAT_PREPROCESS                                    = 0xC00D1B8D
NS_E_CANNOT_PAUSE_LIVEBROADCAST                              = 0xC00D1B8E
NS_E_DRM_PROFILE_NOT_SET                                     = 0xC00D1B8F
NS_E_DUPLICATE_DRMPROFILE                                    = 0xC00D1B90
NS_E_INVALID_DEVICE                                          = 0xC00D1B91
NS_E_SPEECHEDL_ON_NON_MIXEDMODE                              = 0xC00D1B92
NS_E_DRM_PASSWORD_TOO_LONG                                   = 0xC00D1B93
NS_E_DEVCONTROL_FAILED_SEEK                                  = 0xC00D1B94
NS_E_INTERLACE_REQUIRE_SAMESIZE                              = 0xC00D1B95
NS_E_TOO_MANY_DEVICECONTROL                                  = 0xC00D1B96
NS_E_NO_MULTIPASS_FOR_LIVEDEVICE                             = 0xC00D1B97
NS_E_MISSING_AUDIENCE                                        = 0xC00D1B98
NS_E_AUDIENCE_CONTENTTYPE_MISMATCH                           = 0xC00D1B99
NS_E_MISSING_SOURCE_INDEX                                    = 0xC00D1B9A
NS_E_NUM_LANGUAGE_MISMATCH                                   = 0xC00D1B9B
NS_E_LANGUAGE_MISMATCH                                       = 0xC00D1B9C
NS_E_VBRMODE_MISMATCH                                        = 0xC00D1B9D
NS_E_INVALID_INPUT_AUDIENCE_INDEX                            = 0xC00D1B9E
NS_E_INVALID_INPUT_LANGUAGE                                  = 0xC00D1B9F
NS_E_INVALID_INPUT_STREAM                                    = 0xC00D1BA0
NS_E_EXPECT_MONO_WAV_INPUT                                   = 0xC00D1BA1
NS_E_INPUT_WAVFORMAT_MISMATCH                                = 0xC00D1BA2
NS_E_RECORDQ_DISK_FULL                                       = 0xC00D1BA3
NS_E_NO_PAL_INVERSE_TELECINE                                 = 0xC00D1BA4
NS_E_ACTIVE_SG_DEVICE_DISCONNECTED                           = 0xC00D1BA5
NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED                   = 0xC00D1BA6
NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER                         = 0xC00D1BA7
NS_E_INPUT_DOESNOT_SUPPORT_SMPTE                             = 0xC00D1BA8
NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS                     = 0xC00D1BA9
NS_E_BAD_CONTENTEDL                                          = 0xC00D1BAA
NS_E_INTERLACEMODE_MISMATCH                                  = 0xC00D1BAB
NS_E_NONSQUAREPIXELMODE_MISMATCH                             = 0xC00D1BAC
NS_E_SMPTEMODE_MISMATCH                                      = 0xC00D1BAD
NS_E_END_OF_TAPE                                             = 0xC00D1BAE
NS_E_NO_MEDIA_IN_AUDIENCE                                    = 0xC00D1BAF
NS_E_NO_AUDIENCES                                            = 0xC00D1BB0
NS_E_NO_AUDIO_COMPAT                                         = 0xC00D1BB1
NS_E_INVALID_VBR_COMPAT                                      = 0xC00D1BB2
NS_E_NO_PROFILE_NAME                                         = 0xC00D1BB3
NS_E_INVALID_VBR_WITH_UNCOMP                                 = 0xC00D1BB4
NS_E_MULTIPLE_VBR_AUDIENCES                                  = 0xC00D1BB5
NS_E_UNCOMP_COMP_COMBINATION                                 = 0xC00D1BB6
NS_E_MULTIPLE_AUDIO_CODECS                                   = 0xC00D1BB7
NS_E_MULTIPLE_AUDIO_FORMATS                                  = 0xC00D1BB8
NS_E_AUDIO_BITRATE_STEPDOWN                                  = 0xC00D1BB9
NS_E_INVALID_AUDIO_PEAKRATE                                  = 0xC00D1BBA
NS_E_INVALID_AUDIO_PEAKRATE_2                                = 0xC00D1BBB
NS_E_INVALID_AUDIO_BUFFERMAX                                 = 0xC00D1BBC
NS_E_MULTIPLE_VIDEO_CODECS                                   = 0xC00D1BBD
NS_E_MULTIPLE_VIDEO_SIZES                                    = 0xC00D1BBE
NS_E_INVALID_VIDEO_BITRATE                                   = 0xC00D1BBF
NS_E_VIDEO_BITRATE_STEPDOWN                                  = 0xC00D1BC0
NS_E_INVALID_VIDEO_PEAKRATE                                  = 0xC00D1BC1
NS_E_INVALID_VIDEO_PEAKRATE_2                                = 0xC00D1BC2
NS_E_INVALID_VIDEO_WIDTH                                     = 0xC00D1BC3
NS_E_INVALID_VIDEO_HEIGHT                                    = 0xC00D1BC4
NS_E_INVALID_VIDEO_FPS                                       = 0xC00D1BC5
NS_E_INVALID_VIDEO_KEYFRAME                                  = 0xC00D1BC6
NS_E_INVALID_VIDEO_IQUALITY                                  = 0xC00D1BC7
NS_E_INVALID_VIDEO_CQUALITY                                  = 0xC00D1BC8
NS_E_INVALID_VIDEO_BUFFER                                    = 0xC00D1BC9
NS_E_INVALID_VIDEO_BUFFERMAX                                 = 0xC00D1BCA
NS_E_INVALID_VIDEO_BUFFERMAX_2                               = 0xC00D1BCB
NS_E_INVALID_VIDEO_WIDTH_ALIGN                               = 0xC00D1BCC
NS_E_INVALID_VIDEO_HEIGHT_ALIGN                              = 0xC00D1BCD
NS_E_MULTIPLE_SCRIPT_BITRATES                                = 0xC00D1BCE
NS_E_INVALID_SCRIPT_BITRATE                                  = 0xC00D1BCF
NS_E_MULTIPLE_FILE_BITRATES                                  = 0xC00D1BD0
NS_E_INVALID_FILE_BITRATE                                    = 0xC00D1BD1
NS_E_SAME_AS_INPUT_COMBINATION                               = 0xC00D1BD2
NS_E_SOURCE_CANNOT_LOOP                                      = 0xC00D1BD3
NS_E_INVALID_FOLDDOWN_COEFFICIENTS                           = 0xC00D1BD4
NS_E_DRMPROFILE_NOTFOUND                                     = 0xC00D1BD5
NS_E_INVALID_TIMECODE                                        = 0xC00D1BD6
NS_E_NO_AUDIO_TIMECOMPRESSION                                = 0xC00D1BD7
NS_E_NO_TWOPASS_TIMECOMPRESSION                              = 0xC00D1BD8
NS_E_TIMECODE_REQUIRES_VIDEOSTREAM                           = 0xC00D1BD9
NS_E_NO_MBR_WITH_TIMECODE                                    = 0xC00D1BDA
NS_E_INVALID_INTERLACEMODE                                   = 0xC00D1BDB
NS_E_INVALID_INTERLACE_COMPAT                                = 0xC00D1BDC
NS_E_INVALID_NONSQUAREPIXEL_COMPAT                           = 0xC00D1BDD
NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL                      = 0xC00D1BDE
NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR           = 0xC00D1BDF
NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT                            = 0xC00D1BE0
NS_E_DEVICECONTROL_UNSTABLE                                  = 0xC00D1BE1
NS_E_INVALID_PIXEL_ASPECT_RATIO                              = 0xC00D1BE2
NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH                 = 0xC00D1BE3
NS_E_INVALID_PROFILE_CONTENTTYPE                             = 0xC00D1BE4
NS_E_TRANSFORM_PLUGIN_NOT_FOUND                              = 0xC00D1BE5
NS_E_TRANSFORM_PLUGIN_INVALID                                = 0xC00D1BE6
NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS                       = 0xC00D1BE7
NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING             = 0xC00D1BE8
NS_E_MARKIN_UNSUPPORTED                                      = 0xC00D1BE9
NS_E_DRM_INVALID_APPLICATION                                 = 0xC00D2711
NS_E_DRM_LICENSE_STORE_ERROR                                 = 0xC00D2712
NS_E_DRM_SECURE_STORE_ERROR                                  = 0xC00D2713
NS_E_DRM_LICENSE_STORE_SAVE_ERROR                            = 0xC00D2714
NS_E_DRM_SECURE_STORE_UNLOCK_ERROR                           = 0xC00D2715
NS_E_DRM_INVALID_CONTENT                                     = 0xC00D2716
NS_E_DRM_UNABLE_TO_OPEN_LICENSE                              = 0xC00D2717
NS_E_DRM_INVALID_LICENSE                                     = 0xC00D2718
NS_E_DRM_INVALID_MACHINE                                     = 0xC00D2719
NS_E_DRM_ENUM_LICENSE_FAILED                                 = 0xC00D271B
NS_E_DRM_INVALID_LICENSE_REQUEST                             = 0xC00D271C
NS_E_DRM_UNABLE_TO_INITIALIZE                                = 0xC00D271D
NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE                           = 0xC00D271E
NS_E_DRM_INVALID_LICENSE_ACQUIRED                            = 0xC00D271F
NS_E_DRM_NO_RIGHTS                                           = 0xC00D2720
NS_E_DRM_KEY_ERROR                                           = 0xC00D2721
NS_E_DRM_ENCRYPT_ERROR                                       = 0xC00D2722
NS_E_DRM_DECRYPT_ERROR                                       = 0xC00D2723
NS_E_DRM_LICENSE_INVALID_XML                                 = 0xC00D2725
NS_E_DRM_NEEDS_INDIVIDUALIZATION                             = 0xC00D2728
NS_E_DRM_ALREADY_INDIVIDUALIZED                              = 0xC00D2729
NS_E_DRM_ACTION_NOT_QUERIED                                  = 0xC00D272A
NS_E_DRM_ACQUIRING_LICENSE                                   = 0xC00D272B
NS_E_DRM_INDIVIDUALIZING                                     = 0xC00D272C
NS_E_BACKUP_RESTORE_FAILURE                                  = 0xC00D272D
NS_E_BACKUP_RESTORE_BAD_REQUEST_ID                           = 0xC00D272E
NS_E_DRM_PARAMETERS_MISMATCHED                               = 0xC00D272F
NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT                     = 0xC00D2730
NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT                        = 0xC00D2731
NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT                     = 0xC00D2732
NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT                     = 0xC00D2733
NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT                  = 0xC00D2734
NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT                      = 0xC00D2735
NS_E_DRM_INDIVIDUALIZE_ERROR                                 = 0xC00D2736
NS_E_DRM_LICENSE_OPEN_ERROR                                  = 0xC00D2737
NS_E_DRM_LICENSE_CLOSE_ERROR                                 = 0xC00D2738
NS_E_DRM_GET_LICENSE_ERROR                                   = 0xC00D2739
NS_E_DRM_QUERY_ERROR                                         = 0xC00D273A
NS_E_DRM_REPORT_ERROR                                        = 0xC00D273B
NS_E_DRM_GET_LICENSESTRING_ERROR                             = 0xC00D273C
NS_E_DRM_GET_CONTENTSTRING_ERROR                             = 0xC00D273D
NS_E_DRM_MONITOR_ERROR                                       = 0xC00D273E
NS_E_DRM_UNABLE_TO_SET_PARAMETER                             = 0xC00D273F
NS_E_DRM_INVALID_APPDATA                                     = 0xC00D2740
NS_E_DRM_INVALID_APPDATA_VERSION                             = 0xC00D2741
NS_E_DRM_BACKUP_EXISTS                                       = 0xC00D2742
NS_E_DRM_BACKUP_CORRUPT                                      = 0xC00D2743
NS_E_DRM_BACKUPRESTORE_BUSY                                  = 0xC00D2744
NS_E_BACKUP_RESTORE_BAD_DATA                                 = 0xC00D2745
NS_E_DRM_LICENSE_UNUSABLE                                    = 0xC00D2748
NS_E_DRM_INVALID_PROPERTY                                    = 0xC00D2749
NS_E_DRM_SECURE_STORE_NOT_FOUND                              = 0xC00D274A
NS_E_DRM_CACHED_CONTENT_ERROR                                = 0xC00D274B
NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE                        = 0xC00D274C
NS_E_DRM_DRIVER_AUTH_FAILURE                                 = 0xC00D274D
NS_E_DRM_NEED_UPGRADE_MSSAP                                  = 0xC00D274E
NS_E_DRM_REOPEN_CONTENT                                      = 0xC00D274F
NS_E_DRM_DRIVER_DIGIOUT_FAILURE                              = 0xC00D2750
NS_E_DRM_INVALID_SECURESTORE_PASSWORD                        = 0xC00D2751
NS_E_DRM_APPCERT_REVOKED                                     = 0xC00D2752
NS_E_DRM_RESTORE_FRAUD                                       = 0xC00D2753
NS_E_DRM_HARDWARE_INCONSISTENT                               = 0xC00D2754
NS_E_DRM_SDMI_TRIGGER                                        = 0xC00D2755
NS_E_DRM_SDMI_NOMORECOPIES                                   = 0xC00D2756
NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT                      = 0xC00D2757
NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT                        = 0xC00D2758
NS_E_DRM_LICENSE_NOTACQUIRED                                 = 0xC00D2759
NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT                      = 0xC00D275A
NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT                  = 0xC00D275B
NS_E_DRM_BUFFER_TOO_SMALL                                    = 0xC00D275C
NS_E_DRM_UNSUPPORTED_PROPERTY                                = 0xC00D275D
NS_E_DRM_ERROR_BAD_NET_RESP                                  = 0xC00D275E
NS_E_DRM_STORE_NOTALLSTORED                                  = 0xC00D275F
NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID                = 0xC00D2760
NS_E_DRM_INVALID_DATA                                        = 0xC00D2761
NS_E_DRM_POLICY_DISABLE_ONLINE                               = 0xC00D2762
NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT              = 0xC00D2763
NS_E_DRM_NOT_CONFIGURED                                      = 0xC00D2764
NS_E_DRM_DEVICE_ACTIVATION_CANCELED                          = 0xC00D2765
NS_E_BACKUP_RESTORE_TOO_MANY_RESETS                          = 0xC00D2766
NS_E_DRM_DEBUGGING_NOT_ALLOWED                               = 0xC00D2767
NS_E_DRM_OPERATION_CANCELED                                  = 0xC00D2768
NS_E_DRM_RESTRICTIONS_NOT_RETRIEVED                          = 0xC00D2769
NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_OBJECT                    = 0xC00D276A
NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_BURN_OBJECT               = 0xC00D276B
NS_E_DRM_UNABLE_TO_CREATE_DEVICE_REGISTRATION_OBJECT         = 0xC00D276C
NS_E_DRM_UNABLE_TO_CREATE_METERING_OBJECT                    = 0xC00D276D
NS_E_DRM_TRACK_EXCEEDED_PLAYLIST_RESTICTION                  = 0xC00D2770
NS_E_DRM_TRACK_EXCEEDED_TRACKBURN_RESTRICTION                = 0xC00D2771
NS_E_DRM_UNABLE_TO_GET_DEVICE_CERT                           = 0xC00D2772
NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK                          = 0xC00D2773
NS_E_DRM_UNABLE_TO_SET_SECURE_CLOCK                          = 0xC00D2774
NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK_FROM_SERVER              = 0xC00D2775
NS_E_DRM_POLICY_METERING_DISABLED                            = 0xC00D2776
NS_E_DRM_TRANSFER_CHAINED_LICENSES_UNSUPPORTED               = 0xC00D2777
NS_E_DRM_SDK_VERSIONMISMATCH                                 = 0xC00D2778
NS_E_DRM_LIC_NEEDS_DEVICE_CLOCK_SET                          = 0xC00D2779
NS_E_LICENSE_HEADER_MISSING_URL                              = 0xC00D277A
NS_E_DEVICE_NOT_WMDRM_DEVICE                                 = 0xC00D277B
NS_E_DRM_INVALID_APPCERT                                     = 0xC00D277C
NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_PETITION           = 0xC00D277D
NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_CHALLENGE          = 0xC00D277E
NS_E_DRM_CHECKPOINT_FAILED                                   = 0xC00D277F
NS_E_DRM_BB_UNABLE_TO_INITIALIZE                             = 0xC00D2780
NS_E_DRM_UNABLE_TO_LOAD_HARDWARE_ID                          = 0xC00D2781
NS_E_DRM_UNABLE_TO_OPEN_DATA_STORE                           = 0xC00D2782
NS_E_DRM_DATASTORE_CORRUPT                                   = 0xC00D2783
NS_E_DRM_UNABLE_TO_CREATE_INMEMORYSTORE_OBJECT               = 0xC00D2784
NS_E_DRM_STUBLIB_REQUIRED                                    = 0xC00D2785
NS_E_DRM_UNABLE_TO_CREATE_CERTIFICATE_OBJECT                 = 0xC00D2786
NS_E_DRM_MIGRATION_TARGET_NOT_ONLINE                         = 0xC00D2787
NS_E_DRM_INVALID_MIGRATION_IMAGE                             = 0xC00D2788
NS_E_DRM_MIGRATION_TARGET_STATES_CORRUPTED                   = 0xC00D2789
NS_E_DRM_MIGRATION_IMPORTER_NOT_AVAILABLE                    = 0xC00D278A
NS_DRM_E_MIGRATION_UPGRADE_WITH_DIFF_SID                     = 0xC00D278B
NS_DRM_E_MIGRATION_SOURCE_MACHINE_IN_USE                     = 0xC00D278C
NS_DRM_E_MIGRATION_TARGET_MACHINE_LESS_THAN_LH               = 0xC00D278D
NS_DRM_E_MIGRATION_IMAGE_ALREADY_EXISTS                      = 0xC00D278E
NS_E_DRM_HARDWAREID_MISMATCH                                 = 0xC00D278F
NS_E_INVALID_DRMV2CLT_STUBLIB                                = 0xC00D2790
NS_E_DRM_MIGRATION_INVALID_LEGACYV2_DATA                     = 0xC00D2791
NS_E_DRM_MIGRATION_LICENSE_ALREADY_EXISTS                    = 0xC00D2792
NS_E_DRM_MIGRATION_INVALID_LEGACYV2_SST_PASSWORD             = 0xC00D2793
NS_E_DRM_MIGRATION_NOT_SUPPORTED                             = 0xC00D2794
NS_E_DRM_UNABLE_TO_CREATE_MIGRATION_IMPORTER_OBJECT          = 0xC00D2795
NS_E_DRM_CHECKPOINT_MISMATCH                                 = 0xC00D2796
NS_E_DRM_CHECKPOINT_CORRUPT                                  = 0xC00D2797
NS_E_REG_FLUSH_FAILURE                                       = 0xC00D2798
NS_E_HDS_KEY_MISMATCH                                        = 0xC00D2799
NS_E_DRM_MIGRATION_OPERATION_CANCELLED                       = 0xC00D279A
NS_E_DRM_MIGRATION_OBJECT_IN_USE                             = 0xC00D279B
NS_E_DRM_MALFORMED_CONTENT_HEADER                            = 0xC00D279C
NS_E_DRM_LICENSE_EXPIRED                                     = 0xC00D27D8
NS_E_DRM_LICENSE_NOTENABLED                                  = 0xC00D27D9
NS_E_DRM_LICENSE_APPSECLOW                                   = 0xC00D27DA
NS_E_DRM_STORE_NEEDINDI                                      = 0xC00D27DB
NS_E_DRM_STORE_NOTALLOWED                                    = 0xC00D27DC
NS_E_DRM_LICENSE_APP_NOTALLOWED                              = 0xC00D27DD
NS_E_DRM_LICENSE_CERT_EXPIRED                                = 0xC00D27DF
NS_E_DRM_LICENSE_SECLOW                                      = 0xC00D27E0
NS_E_DRM_LICENSE_CONTENT_REVOKED                             = 0xC00D27E1
NS_E_DRM_DEVICE_NOT_REGISTERED                               = 0xC00D27E2
NS_E_DRM_LICENSE_NOSAP                                       = 0xC00D280A
NS_E_DRM_LICENSE_NOSVP                                       = 0xC00D280B
NS_E_DRM_LICENSE_NOWDM                                       = 0xC00D280C
NS_E_DRM_LICENSE_NOTRUSTEDCODEC                              = 0xC00D280D
NS_E_DRM_SOURCEID_NOT_SUPPORTED                              = 0xC00D280E
NS_E_DRM_NEEDS_UPGRADE_TEMPFILE                              = 0xC00D283D
NS_E_DRM_NEED_UPGRADE_PD                                     = 0xC00D283E
NS_E_DRM_SIGNATURE_FAILURE                                   = 0xC00D283F
NS_E_DRM_LICENSE_SERVER_INFO_MISSING                         = 0xC00D2840
NS_E_DRM_BUSY                                                = 0xC00D2841
NS_E_DRM_PD_TOO_MANY_DEVICES                                 = 0xC00D2842
NS_E_DRM_INDIV_FRAUD                                         = 0xC00D2843
NS_E_DRM_INDIV_NO_CABS                                       = 0xC00D2844
NS_E_DRM_INDIV_SERVICE_UNAVAILABLE                           = 0xC00D2845
NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE                         = 0xC00D2846
NS_E_DRM_CLIENT_CODE_EXPIRED                                 = 0xC00D2847
NS_E_DRM_NO_UPLINK_LICENSE                                   = 0xC00D2848
NS_E_DRM_INVALID_KID                                         = 0xC00D2849
NS_E_DRM_LICENSE_INITIALIZATION_ERROR                        = 0xC00D284A
NS_E_DRM_CHAIN_TOO_LONG                                      = 0xC00D284C
NS_E_DRM_UNSUPPORTED_ALGORITHM                               = 0xC00D284D
NS_E_DRM_LICENSE_DELETION_ERROR                              = 0xC00D284E
NS_E_DRM_INVALID_CERTIFICATE                                 = 0xC00D28A0
NS_E_DRM_CERTIFICATE_REVOKED                                 = 0xC00D28A1
NS_E_DRM_LICENSE_UNAVAILABLE                                 = 0xC00D28A2
NS_E_DRM_DEVICE_LIMIT_REACHED                                = 0xC00D28A3
NS_E_DRM_UNABLE_TO_VERIFY_PROXIMITY                          = 0xC00D28A4
NS_E_DRM_MUST_REGISTER                                       = 0xC00D28A5
NS_E_DRM_MUST_APPROVE                                        = 0xC00D28A6
NS_E_DRM_MUST_REVALIDATE                                     = 0xC00D28A7
NS_E_DRM_INVALID_PROXIMITY_RESPONSE                          = 0xC00D28A8
NS_E_DRM_INVALID_SESSION                                     = 0xC00D28A9
NS_E_DRM_DEVICE_NOT_OPEN                                     = 0xC00D28AA
NS_E_DRM_DEVICE_ALREADY_REGISTERED                           = 0xC00D28AB
NS_E_DRM_UNSUPPORTED_PROTOCOL_VERSION                        = 0xC00D28AC
NS_E_DRM_UNSUPPORTED_ACTION                                  = 0xC00D28AD
NS_E_DRM_CERTIFICATE_SECURITY_LEVEL_INADEQUATE               = 0xC00D28AE
NS_E_DRM_UNABLE_TO_OPEN_PORT                                 = 0xC00D28AF
NS_E_DRM_BAD_REQUEST                                         = 0xC00D28B0
NS_E_DRM_INVALID_CRL                                         = 0xC00D28B1
NS_E_DRM_ATTRIBUTE_TOO_LONG                                  = 0xC00D28B2
NS_E_DRM_EXPIRED_LICENSEBLOB                                 = 0xC00D28B3
NS_E_DRM_INVALID_LICENSEBLOB                                 = 0xC00D28B4
NS_E_DRM_INCLUSION_LIST_REQUIRED                             = 0xC00D28B5
NS_E_DRM_DRMV2CLT_REVOKED                                    = 0xC00D28B6
NS_E_DRM_RIV_TOO_SMALL                                       = 0xC00D28B7
NS_E_OUTPUT_PROTECTION_LEVEL_UNSUPPORTED                     = 0xC00D2904
NS_E_COMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED   = 0xC00D2905
NS_E_UNCOMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED = 0xC00D2906
NS_E_ANALOG_VIDEO_PROTECTION_LEVEL_UNSUPPORTED               = 0xC00D2907
NS_E_COMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED   = 0xC00D2908
NS_E_UNCOMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED = 0xC00D2909
NS_E_OUTPUT_PROTECTION_SCHEME_UNSUPPORTED                    = 0xC00D290A
NS_E_REBOOT_RECOMMENDED                                      = 0xC00D2AFA
NS_E_REBOOT_REQUIRED                                         = 0xC00D2AFB
NS_E_SETUP_INCOMPLETE                                        = 0xC00D2AFC
NS_E_SETUP_DRM_MIGRATION_FAILED                              = 0xC00D2AFD
NS_E_SETUP_IGNORABLE_FAILURE                                 = 0xC00D2AFE
NS_E_SETUP_DRM_MIGRATION_FAILED_AND_IGNORABLE_FAILURE        = 0xC00D2AFF
NS_E_SETUP_BLOCKED                                           = 0xC00D2B00
NS_E_UNKNOWN_PROTOCOL                                        = 0xC00D2EE0
NS_E_REDIRECT_TO_PROXY                                       = 0xC00D2EE1
NS_E_INTERNAL_SERVER_ERROR                                   = 0xC00D2EE2
NS_E_BAD_REQUEST                                             = 0xC00D2EE3
NS_E_ERROR_FROM_PROXY                                        = 0xC00D2EE4
NS_E_PROXY_TIMEOUT                                           = 0xC00D2EE5
NS_E_SERVER_UNAVAILABLE                                      = 0xC00D2EE6
NS_E_REFUSED_BY_SERVER                                       = 0xC00D2EE7
NS_E_INCOMPATIBLE_SERVER                                     = 0xC00D2EE8
NS_E_MULTICAST_DISABLED                                      = 0xC00D2EE9
NS_E_INVALID_REDIRECT                                        = 0xC00D2EEA
NS_E_ALL_PROTOCOLS_DISABLED                                  = 0xC00D2EEB
NS_E_MSBD_NO_LONGER_SUPPORTED                                = 0xC00D2EEC
NS_E_PROXY_NOT_FOUND                                         = 0xC00D2EED
NS_E_CANNOT_CONNECT_TO_PROXY                                 = 0xC00D2EEE
NS_E_SERVER_DNS_TIMEOUT                                      = 0xC00D2EEF
NS_E_PROXY_DNS_TIMEOUT                                       = 0xC00D2EF0
NS_E_CLOSED_ON_SUSPEND                                       = 0xC00D2EF1
NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER                   = 0xC00D2EF2
NS_E_SESSION_NOT_FOUND                                       = 0xC00D2EF3
NS_E_REQUIRE_STREAMING_CLIENT                                = 0xC00D2EF4
NS_E_PLAYLIST_ENTRY_HAS_CHANGED                              = 0xC00D2EF5
NS_E_PROXY_ACCESSDENIED                                      = 0xC00D2EF6
NS_E_PROXY_SOURCE_ACCESSDENIED                               = 0xC00D2EF7
NS_E_NETWORK_SINK_WRITE                                      = 0xC00D2EF8
NS_E_FIREWALL                                                = 0xC00D2EF9
NS_E_MMS_NOT_SUPPORTED                                       = 0xC00D2EFA
NS_E_SERVER_ACCESSDENIED                                     = 0xC00D2EFB
NS_E_RESOURCE_GONE                                           = 0xC00D2EFC
NS_E_NO_EXISTING_PACKETIZER                                  = 0xC00D2EFD
NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE                           = 0xC00D2EFE
NS_E_RESET_SOCKET_CONNECTION                                 = 0xC00D2F00
NS_E_TOO_MANY_HOPS                                           = 0xC00D2F02
NS_E_TOO_MUCH_DATA_FROM_SERVER                               = 0xC00D2F05
NS_E_CONNECT_TIMEOUT                                         = 0xC00D2F06
NS_E_PROXY_CONNECT_TIMEOUT                                   = 0xC00D2F07
NS_E_SESSION_INVALID                                         = 0xC00D2F08
NS_E_PACKETSINK_UNKNOWN_FEC_STREAM                           = 0xC00D2F0A
NS_E_PUSH_CANNOTCONNECT                                      = 0xC00D2F0B
NS_E_INCOMPATIBLE_PUSH_SERVER                                = 0xC00D2F0C
NS_E_END_OF_PLAYLIST                                         = 0xC00D32C8
NS_E_USE_FILE_SOURCE                                         = 0xC00D32C9
NS_E_PROPERTY_NOT_FOUND                                      = 0xC00D32CA
NS_E_PROPERTY_READ_ONLY                                      = 0xC00D32CC
NS_E_TABLE_KEY_NOT_FOUND                                     = 0xC00D32CD
NS_E_INVALID_QUERY_OPERATOR                                  = 0xC00D32CF
NS_E_INVALID_QUERY_PROPERTY                                  = 0xC00D32D0
NS_E_PROPERTY_NOT_SUPPORTED                                  = 0xC00D32D2
NS_E_SCHEMA_CLASSIFY_FAILURE                                 = 0xC00D32D4
NS_E_METADATA_FORMAT_NOT_SUPPORTED                           = 0xC00D32D5
NS_E_METADATA_NO_EDITING_CAPABILITY                          = 0xC00D32D6
NS_E_METADATA_CANNOT_SET_LOCALE                              = 0xC00D32D7
NS_E_METADATA_LANGUAGE_NOT_SUPORTED                          = 0xC00D32D8
NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE                     = 0xC00D32D9
NS_E_METADATA_NOT_AVAILABLE                                  = 0xC00D32DA
NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE                       = 0xC00D32DB
NS_E_METADATA_INVALID_DOCUMENT_TYPE                          = 0xC00D32DC
NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE                       = 0xC00D32DD
NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE             = 0xC00D32DE
ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM                    = 0xC0261003
ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK                  = 0xC0261004
ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED              = 0xC0261005
ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK             = 0xC0261006
ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK             = 0xC0261007
ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA                        = 0xC0261008
ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK                  = 0xC0261009
ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER                      = 0xC0262000
ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER                       = 0xC0262001
ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER                       = 0xC0262002
ERROR_GRAPHICS_ADAPTER_WAS_RESET                             = 0xC0262003
ERROR_GRAPHICS_INVALID_DRIVER_MODEL                          = 0xC0262004
ERROR_GRAPHICS_PRESENT_MODE_CHANGED                          = 0xC0262005
ERROR_GRAPHICS_PRESENT_OCCLUDED                              = 0xC0262006
ERROR_GRAPHICS_PRESENT_DENIED                                = 0xC0262007
ERROR_GRAPHICS_CANNOTCOLORCONVERT                            = 0xC0262008
ERROR_GRAPHICS_NO_VIDEO_MEMORY                               = 0xC0262100
ERROR_GRAPHICS_CANT_LOCK_MEMORY                              = 0xC0262101
ERROR_GRAPHICS_ALLOCATION_BUSY                               = 0xC0262102
ERROR_GRAPHICS_TOO_MANY_REFERENCES                           = 0xC0262103
ERROR_GRAPHICS_TRY_AGAIN_LATER                               = 0xC0262104
ERROR_GRAPHICS_TRY_AGAIN_NOW                                 = 0xC0262105
ERROR_GRAPHICS_ALLOCATION_INVALID                            = 0xC0262106
ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE              = 0xC0262107
ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED              = 0xC0262108
ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION                  = 0xC0262109
ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE                      = 0xC0262110
ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION                 = 0xC0262111
ERROR_GRAPHICS_ALLOCATION_CLOSED                             = 0xC0262112
ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE                   = 0xC0262113
ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE                     = 0xC0262114
ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE                       = 0xC0262115
ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST                       = 0xC0262116
ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE                       = 0xC0262200
ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY                        = 0xC0262300
ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED                  = 0xC0262301
ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED        = 0xC0262302
ERROR_GRAPHICS_INVALID_VIDPN                                 = 0xC0262303
ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE                  = 0xC0262304
ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET                  = 0xC0262305
ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED                  = 0xC0262306
ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET                   = 0xC0262308
ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET                   = 0xC0262309
ERROR_GRAPHICS_INVALID_FREQUENCY                             = 0xC026230A
ERROR_GRAPHICS_INVALID_ACTIVE_REGION                         = 0xC026230B
ERROR_GRAPHICS_INVALID_TOTAL_REGION                          = 0xC026230C
ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE             = 0xC0262310
ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE             = 0xC0262311
ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET                = 0xC0262312
ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY                      = 0xC0262313
ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET                       = 0xC0262314
ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET                 = 0xC0262315
ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET                 = 0xC0262316
ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET                         = 0xC0262317
ERROR_GRAPHICS_TARGET_ALREADY_IN_SET                         = 0xC0262318
ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH                    = 0xC0262319
ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY                 = 0xC026231A
ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET             = 0xC026231B
ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE                = 0xC026231C
ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET                     = 0xC026231D
ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET                 = 0xC026231F
ERROR_GRAPHICS_STALE_MODESET                                 = 0xC0262320
ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET                 = 0xC0262321
ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE                   = 0xC0262322
ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN               = 0xC0262323
ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE                        = 0xC0262324
ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION = 0xC0262325
ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES       = 0xC0262326
ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY                          = 0xC0262327
ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE         = 0xC0262328
ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET         = 0xC0262329
ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET                  = 0xC026232A
ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR                     = 0xC026232B
ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET                  = 0xC026232C
ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET              = 0xC026232D
ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE           = 0xC026232E
ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE              = 0xC026232F
ERROR_GRAPHICS_RESOURCES_NOT_RELATED                         = 0xC0262330
ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE                      = 0xC0262331
ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE                      = 0xC0262332
ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET                     = 0xC0262333
ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER  = 0xC0262334
ERROR_GRAPHICS_NO_VIDPNMGR                                   = 0xC0262335
ERROR_GRAPHICS_NO_ACTIVE_VIDPN                               = 0xC0262336
ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY                          = 0xC0262337
ERROR_GRAPHICS_MONITOR_NOT_CONNECTED                         = 0xC0262338
ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY                        = 0xC0262339
ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE                   = 0xC026233A
ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE                    = 0xC026233B
ERROR_GRAPHICS_INVALID_STRIDE                                = 0xC026233C
ERROR_GRAPHICS_INVALID_PIXELFORMAT                           = 0xC026233D
ERROR_GRAPHICS_INVALID_COLORBASIS                            = 0xC026233E
ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE                  = 0xC026233F
ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY                        = 0xC0262340
ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT            = 0xC0262341
ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE                           = 0xC0262342
ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN                      = 0xC0262343
ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL               = 0xC0262344
ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION  = 0xC0262345
ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED = 0xC0262346
ERROR_GRAPHICS_INVALID_GAMMA_RAMP                            = 0xC0262347
ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED                      = 0xC0262348
ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED                   = 0xC0262349
ERROR_GRAPHICS_MODE_NOT_IN_MODESET                           = 0xC026234A
ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON  = 0xC026234D
ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE                     = 0xC026234E
ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE                   = 0xC026234F
ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS             = 0xC0262350
ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING                     = 0xC0262352
ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED                  = 0xC0262353
ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS              = 0xC0262354
ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT                   = 0xC0262355
ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM                = 0xC0262356
ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED             = 0xC0262400
ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED                = 0xC0262401
ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER                          = 0xC0262430
ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED                       = 0xC0262431
ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED                     = 0xC0262432
ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY                       = 0xC0262433
ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED                        = 0xC0262434
ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON                     = 0xC0262435
ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE                = 0xC0262436
ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER                        = 0xC0262438
ERROR_GRAPHICS_OPM_NOT_SUPPORTED                             = 0xC0262500
ERROR_GRAPHICS_COPP_NOT_SUPPORTED                            = 0xC0262501
ERROR_GRAPHICS_UAB_NOT_SUPPORTED                             = 0xC0262502
ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS              = 0xC0262503
ERROR_GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL                 = 0xC0262504
ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST                    = 0xC0262505
ERROR_GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME     = 0xC0262506
ERROR_GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP    = 0xC0262507
ERROR_GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED           = 0xC0262508
ERROR_GRAPHICS_OPM_INVALID_POINTER                           = 0xC026250A
ERROR_GRAPHICS_OPM_INTERNAL_ERROR                            = 0xC026250B
ERROR_GRAPHICS_OPM_INVALID_HANDLE                            = 0xC026250C
ERROR_GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE  = 0xC026250D
ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH                = 0xC026250E
ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED                     = 0xC026250F
ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED                      = 0xC0262510
ERROR_GRAPHICS_PVP_HFS_FAILED                                = 0xC0262511
ERROR_GRAPHICS_OPM_INVALID_SRM                               = 0xC0262512
ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP              = 0xC0262513
ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP               = 0xC0262514
ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA             = 0xC0262515
ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET                        = 0xC0262516
ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH                       = 0xC0262517
ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE          = 0xC0262518
ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS             = 0xC0262519
ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS           = 0xC026251A
ERROR_GRAPHICS_I2C_NOT_SUPPORTED                             = 0xC0262580
ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST                     = 0xC0262581
ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA                   = 0xC0262582
ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA                      = 0xC0262583
ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED                       = 0xC0262584
ERROR_GRAPHICS_DDCCI_INVALID_DATA                            = 0xC0262585
ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE = 0xC0262586
ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING               = 0xC0262587
ERROR_GRAPHICS_MCA_INTERNAL_ERROR                            = 0xC0262588
ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND                 = 0xC0262589
ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH                  = 0xC026258A
ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM                = 0xC026258B
ERROR_GRAPHICS_PMEA_INVALID_MONITOR                          = 0xC02625D6
ERROR_GRAPHICS_PMEA_INVALID_D3D_DEVICE                       = 0xC02625D7
ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE = 0xC02625D8
ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION                       = 0xC02625D9
ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION       = 0xC02625DA
ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH                     = 0xC02625DB
ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION                  = 0xC02625DC
ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED          = 0xC02625DE
ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE             = 0xC02625DF
ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED                = 0xC02625E0