-
Notifications
You must be signed in to change notification settings - Fork 71
/
class_LastError.ahk
2901 lines (2888 loc) · 376 KB
/
class_LastError.ahk
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
#Warn ClassOverwrite
class LastError
{
static ERROR_TABLE := LastError._LoadErrorTable()
id[] {
get {
return A_LastError
}
}
hex[] {
get {
return Format("0x{:X}", A_LastError)
}
}
enum[] {
get {
return LastError._ResultOrNotFound("enum")
}
}
msg[] {
get {
return LastError._ResultOrNotFound("msg")
}
}
info[] {
get {
return LastError._ResultOrNotFound("info", ObjBindMethod(LastError, "_FormattedCompleteInfo"))
}
}
_FormattedCompleteInfo(id) {
return Format("{}`n`n{2:} (0x{2:X})`n{}", LastError.ERROR_TABLE[id].enum, id, LastError.ERROR_TABLE[id].msg)
}
_ResultOrNotFound(field, fn := "") {
id := A_LastError
if (LastError.ERROR_TABLE.HasKey(id))
if IsObject(fn)
return fn.Call(id)
else
return LastError.ERROR_TABLE[id, field]
else
return LastError._MessageInfoNotFound(id, field)
}
_MessageInfoNotFound(id, field) {
return Format("Requested '{:U}' could not be found for A_LastError: {}", field, id)
}
_LoadErrorTable() {
a := {}
a[0] := {"enum": "ERROR_SUCCESS", "msg": "The operation completed successfully."}
a[1] := {"enum": "ERROR_INVALID_FUNCTION", "msg": "Incorrect function."}
a[2] := {"enum": "ERROR_FILE_NOT_FOUND", "msg": "The system cannot find the file specified."}
a[3] := {"enum": "ERROR_PATH_NOT_FOUND", "msg": "The system cannot find the path specified."}
a[4] := {"enum": "ERROR_TOO_MANY_OPEN_FILES", "msg": "The system cannot open the file."}
a[5] := {"enum": "ERROR_ACCESS_DENIED", "msg": "Access is denied."}
a[6] := {"enum": "ERROR_INVALID_HANDLE", "msg": "The handle is invalid."}
a[7] := {"enum": "ERROR_ARENA_TRASHED", "msg": "The storage control blocks were destroyed."}
a[8] := {"enum": "ERROR_NOT_ENOUGH_MEMORY", "msg": "Not enough storage is available to process this command."}
a[9] := {"enum": "ERROR_INVALID_BLOCK", "msg": "The storage control block address is invalid."}
a[10] := {"enum": "ERROR_BAD_ENVIRONMENT", "msg": "The environment is incorrect."}
a[11] := {"enum": "ERROR_BAD_FORMAT", "msg": "An attempt was made to load a program with an incorrect format."}
a[12] := {"enum": "ERROR_INVALID_ACCESS", "msg": "The access code is invalid."}
a[13] := {"enum": "ERROR_INVALID_DATA", "msg": "The data is invalid."}
a[14] := {"enum": "ERROR_OUTOFMEMORY", "msg": "Not enough storage is available to complete this operation."}
a[15] := {"enum": "ERROR_INVALID_DRIVE", "msg": "The system cannot find the drive specified."}
a[16] := {"enum": "ERROR_CURRENT_DIRECTORY", "msg": "The directory cannot be removed."}
a[17] := {"enum": "ERROR_NOT_SAME_DEVICE", "msg": "The system cannot move the file to a different disk drive."}
a[18] := {"enum": "ERROR_NO_MORE_FILES", "msg": "There are no more files."}
a[19] := {"enum": "ERROR_WRITE_PROTECT", "msg": "The media is write protected."}
a[20] := {"enum": "ERROR_BAD_UNIT", "msg": "The system cannot find the device specified."}
a[21] := {"enum": "ERROR_NOT_READY", "msg": "The device is not ready."}
a[22] := {"enum": "ERROR_BAD_COMMAND", "msg": "The device does not recognize the command."}
a[23] := {"enum": "ERROR_CRC", "msg": "Data error (cyclic redundancy check)."}
a[24] := {"enum": "ERROR_BAD_LENGTH", "msg": "The program issued a command but the command length is incorrect."}
a[25] := {"enum": "ERROR_SEEK", "msg": "The drive cannot locate a specific area or track on the disk."}
a[26] := {"enum": "ERROR_NOT_DOS_DISK", "msg": "The specified disk or diskette cannot be accessed."}
a[27] := {"enum": "ERROR_SECTOR_NOT_FOUND", "msg": "The drive cannot find the sector requested."}
a[28] := {"enum": "ERROR_OUT_OF_PAPER", "msg": "The printer is out of paper."}
a[29] := {"enum": "ERROR_WRITE_FAULT", "msg": "The system cannot write to the specified device."}
a[30] := {"enum": "ERROR_READ_FAULT", "msg": "The system cannot read from the specified device."}
a[31] := {"enum": "ERROR_GEN_FAILURE", "msg": "A device attached to the system is not functioning."}
a[32] := {"enum": "ERROR_SHARING_VIOLATION", "msg": "The process cannot access the file because it is being used by another process."}
a[33] := {"enum": "ERROR_LOCK_VIOLATION", "msg": "The process cannot access the file because another process has locked a portion of the file."}
a[34] := {"enum": "ERROR_WRONG_DISK", "msg": "The wrong diskette is in the drive. Insert `%2 (Volume Serial Number: `%3) into drive `%1."}
a[36] := {"enum": "ERROR_SHARING_BUFFER_EXCEEDED", "msg": "Too many files opened for sharing."}
a[38] := {"enum": "ERROR_HANDLE_EOF", "msg": "Reached the end of the file."}
a[39] := {"enum": "ERROR_HANDLE_DISK_FULL", "msg": "The disk is full."}
a[50] := {"enum": "ERROR_NOT_SUPPORTED", "msg": "The request is not supported."}
a[51] := {"enum": "ERROR_REM_NOT_LIST", "msg": "Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator."}
a[52] := {"enum": "ERROR_DUP_NAME", "msg": "You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup, choose another workgroup name."}
a[53] := {"enum": "ERROR_BAD_NETPATH", "msg": "The network path was not found."}
a[54] := {"enum": "ERROR_NETWORK_BUSY", "msg": "The network is busy."}
a[55] := {"enum": "ERROR_DEV_NOT_EXIST", "msg": "The specified network resource or device is no longer available."}
a[56] := {"enum": "ERROR_TOO_MANY_CMDS", "msg": "The network BIOS command limit has been reached."}
a[57] := {"enum": "ERROR_ADAP_HDW_ERR", "msg": "A network adapter hardware error occurred."}
a[58] := {"enum": "ERROR_BAD_NET_RESP", "msg": "The specified server cannot perform the requested operation."}
a[59] := {"enum": "ERROR_UNEXP_NET_ERR", "msg": "An unexpected network error occurred."}
a[60] := {"enum": "ERROR_BAD_REM_ADAP", "msg": "The remote adapter is not compatible."}
a[61] := {"enum": "ERROR_PRINTQ_FULL", "msg": "The printer queue is full."}
a[62] := {"enum": "ERROR_NO_SPOOL_SPACE", "msg": "Space to store the file waiting to be printed is not available on the server."}
a[63] := {"enum": "ERROR_PRINT_CANCELLED", "msg": "Your file waiting to be printed was deleted."}
a[64] := {"enum": "ERROR_NETNAME_DELETED", "msg": "The specified network name is no longer available."}
a[65] := {"enum": "ERROR_NETWORK_ACCESS_DENIED", "msg": "Network access is denied."}
a[66] := {"enum": "ERROR_BAD_DEV_TYPE", "msg": "The network resource type is not correct."}
a[67] := {"enum": "ERROR_BAD_NET_NAME", "msg": "The network name cannot be found."}
a[68] := {"enum": "ERROR_TOO_MANY_NAMES", "msg": "The name limit for the local computer network adapter card was exceeded."}
a[69] := {"enum": "ERROR_TOO_MANY_SESS", "msg": "The network BIOS session limit was exceeded."}
a[70] := {"enum": "ERROR_SHARING_PAUSED", "msg": "The remote server has been paused or is in the process of being started."}
a[71] := {"enum": "ERROR_REQ_NOT_ACCEP", "msg": "No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept."}
a[72] := {"enum": "ERROR_REDIR_PAUSED", "msg": "The specified printer or disk device has been paused."}
a[80] := {"enum": "ERROR_FILE_EXISTS", "msg": "The file exists."}
a[82] := {"enum": "ERROR_CANNOT_MAKE", "msg": "The directory or file cannot be created."}
a[83] := {"enum": "ERROR_FAIL_I24", "msg": "Fail on INT 24."}
a[84] := {"enum": "ERROR_OUT_OF_STRUCTURES", "msg": "Storage to process this request is not available."}
a[85] := {"enum": "ERROR_ALREADY_ASSIGNED", "msg": "The local device name is already in use."}
a[86] := {"enum": "ERROR_INVALID_PASSWORD", "msg": "The specified network password is not correct."}
a[87] := {"enum": "ERROR_INVALID_PARAMETER", "msg": "The parameter is incorrect."}
a[88] := {"enum": "ERROR_NET_WRITE_FAULT", "msg": "A write fault occurred on the network."}
a[89] := {"enum": "ERROR_NO_PROC_SLOTS", "msg": "The system cannot start another process at this time."}
a[100] := {"enum": "ERROR_TOO_MANY_SEMAPHORES", "msg": "Cannot create another system semaphore."}
a[101] := {"enum": "ERROR_EXCL_SEM_ALREADY_OWNED", "msg": "The exclusive semaphore is owned by another process."}
a[102] := {"enum": "ERROR_SEM_IS_SET", "msg": "The semaphore is set and cannot be closed."}
a[103] := {"enum": "ERROR_TOO_MANY_SEM_REQUESTS", "msg": "The semaphore cannot be set again."}
a[104] := {"enum": "ERROR_INVALID_AT_INTERRUPT_TIME", "msg": "Cannot request exclusive semaphores at interrupt time."}
a[105] := {"enum": "ERROR_SEM_OWNER_DIED", "msg": "The previous ownership of this semaphore has ended."}
a[106] := {"enum": "ERROR_SEM_USER_LIMIT", "msg": "Insert the diskette for drive `%1."}
a[107] := {"enum": "ERROR_DISK_CHANGE", "msg": "The program stopped because an alternate diskette was not inserted."}
a[108] := {"enum": "ERROR_DRIVE_LOCKED", "msg": "The disk is in use or locked by another process."}
a[109] := {"enum": "ERROR_BROKEN_PIPE", "msg": "The pipe has been ended."}
a[110] := {"enum": "ERROR_OPEN_FAILED", "msg": "The system cannot open the device or file specified."}
a[111] := {"enum": "ERROR_BUFFER_OVERFLOW", "msg": "The file name is too long."}
a[112] := {"enum": "ERROR_DISK_FULL", "msg": "There is not enough space on the disk."}
a[113] := {"enum": "ERROR_NO_MORE_SEARCH_HANDLES", "msg": "No more internal file identifiers available."}
a[114] := {"enum": "ERROR_INVALID_TARGET_HANDLE", "msg": "The target internal file identifier is incorrect."}
a[117] := {"enum": "ERROR_INVALID_CATEGORY", "msg": "The IOCTL call made by the application program is not correct."}
a[118] := {"enum": "ERROR_INVALID_VERIFY_SWITCH", "msg": "The verify-on-write switch parameter value is not correct."}
a[119] := {"enum": "ERROR_BAD_DRIVER_LEVEL", "msg": "The system does not support the command requested."}
a[120] := {"enum": "ERROR_CALL_NOT_IMPLEMENTED", "msg": "This function is not supported on this system."}
a[121] := {"enum": "ERROR_SEM_TIMEOUT", "msg": "The semaphore timeout period has expired."}
a[122] := {"enum": "ERROR_INSUFFICIENT_BUFFER", "msg": "The data area passed to a system call is too small."}
a[123] := {"enum": "ERROR_INVALID_NAME", "msg": "The filename, directory name, or volume label syntax is incorrect."}
a[124] := {"enum": "ERROR_INVALID_LEVEL", "msg": "The system call level is not correct."}
a[125] := {"enum": "ERROR_NO_VOLUME_LABEL", "msg": "The disk has no volume label."}
a[126] := {"enum": "ERROR_MOD_NOT_FOUND", "msg": "The specified module could not be found."}
a[127] := {"enum": "ERROR_PROC_NOT_FOUND", "msg": "The specified procedure could not be found."}
a[128] := {"enum": "ERROR_WAIT_NO_CHILDREN", "msg": "There are no child processes to wait for."}
a[129] := {"enum": "ERROR_CHILD_NOT_COMPLETE", "msg": "The `%1 application cannot be run in Win32 mode."}
a[130] := {"enum": "ERROR_DIRECT_ACCESS_HANDLE", "msg": "Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O."}
a[131] := {"enum": "ERROR_NEGATIVE_SEEK", "msg": "An attempt was made to move the file pointer before the beginning of the file."}
a[132] := {"enum": "ERROR_SEEK_ON_DEVICE", "msg": "The file pointer cannot be set on the specified device or file."}
a[133] := {"enum": "ERROR_IS_JOIN_TARGET", "msg": "A JOIN or SUBST command cannot be used for a drive that contains previously joined drives."}
a[134] := {"enum": "ERROR_IS_JOINED", "msg": "An attempt was made to use a JOIN or SUBST command on a drive that has already been joined."}
a[135] := {"enum": "ERROR_IS_SUBSTED", "msg": "An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted."}
a[136] := {"enum": "ERROR_NOT_JOINED", "msg": "The system tried to delete the JOIN of a drive that is not joined."}
a[137] := {"enum": "ERROR_NOT_SUBSTED", "msg": "The system tried to delete the substitution of a drive that is not substituted."}
a[138] := {"enum": "ERROR_JOIN_TO_JOIN", "msg": "The system tried to join a drive to a directory on a joined drive."}
a[139] := {"enum": "ERROR_SUBST_TO_SUBST", "msg": "The system tried to substitute a drive to a directory on a substituted drive."}
a[140] := {"enum": "ERROR_JOIN_TO_SUBST", "msg": "The system tried to join a drive to a directory on a substituted drive."}
a[141] := {"enum": "ERROR_SUBST_TO_JOIN", "msg": "The system tried to SUBST a drive to a directory on a joined drive."}
a[142] := {"enum": "ERROR_BUSY_DRIVE", "msg": "The system cannot perform a JOIN or SUBST at this time."}
a[143] := {"enum": "ERROR_SAME_DRIVE", "msg": "The system cannot join or substitute a drive to or for a directory on the same drive."}
a[144] := {"enum": "ERROR_DIR_NOT_ROOT", "msg": "The directory is not a subdirectory of the root directory."}
a[145] := {"enum": "ERROR_DIR_NOT_EMPTY", "msg": "The directory is not empty."}
a[146] := {"enum": "ERROR_IS_SUBST_PATH", "msg": "The path specified is being used in a substitute."}
a[147] := {"enum": "ERROR_IS_JOIN_PATH", "msg": "Not enough resources are available to process this command."}
a[148] := {"enum": "ERROR_PATH_BUSY", "msg": "The path specified cannot be used at this time."}
a[149] := {"enum": "ERROR_IS_SUBST_TARGET", "msg": "An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute."}
a[150] := {"enum": "ERROR_SYSTEM_TRACE", "msg": "System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed."}
a[151] := {"enum": "ERROR_INVALID_EVENT_COUNT", "msg": "The number of specified semaphore events for DosMuxSemWait is not correct."}
a[152] := {"enum": "ERROR_TOO_MANY_MUXWAITERS", "msg": "DosMuxSemWait did not execute; too many semaphores are already set."}
a[153] := {"enum": "ERROR_INVALID_LIST_FORMAT", "msg": "The DosMuxSemWait list is not correct."}
a[154] := {"enum": "ERROR_LABEL_TOO_LONG", "msg": "The volume label you entered exceeds the label character limit of the target file system."}
a[155] := {"enum": "ERROR_TOO_MANY_TCBS", "msg": "Cannot create another thread."}
a[156] := {"enum": "ERROR_SIGNAL_REFUSED", "msg": "The recipient process has refused the signal."}
a[157] := {"enum": "ERROR_DISCARDED", "msg": "The segment is already discarded and cannot be locked."}
a[158] := {"enum": "ERROR_NOT_LOCKED", "msg": "The segment is already unlocked."}
a[159] := {"enum": "ERROR_BAD_THREADID_ADDR", "msg": "The address for the thread ID is not correct."}
a[160] := {"enum": "ERROR_BAD_ARGUMENTS", "msg": "One or more arguments are not correct."}
a[161] := {"enum": "ERROR_BAD_PATHNAME", "msg": "The specified path is invalid."}
a[162] := {"enum": "ERROR_SIGNAL_PENDING", "msg": "A signal is already pending."}
a[164] := {"enum": "ERROR_MAX_THRDS_REACHED", "msg": "No more threads can be created in the system."}
a[167] := {"enum": "ERROR_LOCK_FAILED", "msg": "Unable to lock a region of a file."}
a[170] := {"enum": "ERROR_BUSY", "msg": "The requested resource is in use."}
a[171] := {"enum": "ERROR_DEVICE_SUPPORT_IN_PROGRESS", "msg": "Device's command support detection is in progress."}
a[173] := {"enum": "ERROR_CANCEL_VIOLATION", "msg": "A lock request was not outstanding for the supplied cancel region."}
a[174] := {"enum": "ERROR_ATOMIC_LOCKS_NOT_SUPPORTED", "msg": "The file system does not support atomic changes to the lock type."}
a[180] := {"enum": "ERROR_INVALID_SEGMENT_NUMBER", "msg": "The system detected a segment number that was not correct."}
a[182] := {"enum": "ERROR_INVALID_ORDINAL", "msg": "The operating system cannot run `%1."}
a[183] := {"enum": "ERROR_ALREADY_EXISTS", "msg": "Cannot create a file when that file already exists."}
a[186] := {"enum": "ERROR_INVALID_FLAG_NUMBER", "msg": "The flag passed is not correct."}
a[187] := {"enum": "ERROR_SEM_NOT_FOUND", "msg": "The specified system semaphore name was not found."}
a[188] := {"enum": "ERROR_INVALID_STARTING_CODESEG", "msg": "The operating system cannot run `%1."}
a[189] := {"enum": "ERROR_INVALID_STACKSEG", "msg": "The operating system cannot run `%1."}
a[190] := {"enum": "ERROR_INVALID_MODULETYPE", "msg": "The operating system cannot run `%1."}
a[191] := {"enum": "ERROR_INVALID_EXE_SIGNATURE", "msg": "Cannot run `%1 in Win32 mode."}
a[192] := {"enum": "ERROR_EXE_MARKED_INVALID", "msg": "The operating system cannot run `%1."}
a[193] := {"enum": "ERROR_BAD_EXE_FORMAT", "msg": "`%1 is not a valid Win32 application."}
a[194] := {"enum": "ERROR_ITERATED_DATA_EXCEEDS_64k", "msg": "The operating system cannot run `%1."}
a[195] := {"enum": "ERROR_INVALID_MINALLOCSIZE", "msg": "The operating system cannot run `%1."}
a[196] := {"enum": "ERROR_DYNLINK_FROM_INVALID_RING", "msg": "The operating system cannot run this application program."}
a[197] := {"enum": "ERROR_IOPL_NOT_ENABLED", "msg": "The operating system is not presently configured to run this application."}
a[198] := {"enum": "ERROR_INVALID_SEGDPL", "msg": "The operating system cannot run `%1."}
a[199] := {"enum": "ERROR_AUTODATASEG_EXCEEDS_64k", "msg": "The operating system cannot run this application program."}
a[200] := {"enum": "ERROR_RING2SEG_MUST_BE_MOVABLE", "msg": "The code segment cannot be greater than or equal to 64K."}
a[201] := {"enum": "ERROR_RELOC_CHAIN_XEEDS_SEGLIM", "msg": "The operating system cannot run `%1."}
a[202] := {"enum": "ERROR_INFLOOP_IN_RELOC_CHAIN", "msg": "The operating system cannot run `%1."}
a[203] := {"enum": "ERROR_ENVVAR_NOT_FOUND", "msg": "The system could not find the environment option that was entered."}
a[205] := {"enum": "ERROR_NO_SIGNAL_SENT", "msg": "No process in the command subtree has a signal handler."}
a[206] := {"enum": "ERROR_FILENAME_EXCED_RANGE", "msg": "The filename or extension is too long."}
a[207] := {"enum": "ERROR_RING2_STACK_IN_USE", "msg": "The ring 2 stack is in use."}
a[208] := {"enum": "ERROR_META_EXPANSION_TOO_LONG", "msg": "The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified."}
a[209] := {"enum": "ERROR_INVALID_SIGNAL_NUMBER", "msg": "The signal being posted is not correct."}
a[210] := {"enum": "ERROR_THREAD_1_INACTIVE", "msg": "The signal handler cannot be set."}
a[212] := {"enum": "ERROR_LOCKED", "msg": "The segment is locked and cannot be reallocated."}
a[214] := {"enum": "ERROR_TOO_MANY_MODULES", "msg": "Too many dynamic-link modules are attached to this program or dynamic-link module."}
a[215] := {"enum": "ERROR_NESTING_NOT_ALLOWED", "msg": "Cannot nest calls to LoadModule."}
a[216] := {"enum": "ERROR_EXE_MACHINE_TYPE_MISMATCH", "msg": "This version of `%1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher."}
a[217] := {"enum": "ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY", "msg": "The image file `%1 is signed, unable to modify."}
a[218] := {"enum": "ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY", "msg": "The image file `%1 is strong signed, unable to modify."}
a[220] := {"enum": "ERROR_FILE_CHECKED_OUT", "msg": "This file is checked out or locked for editing by another user."}
a[221] := {"enum": "ERROR_CHECKOUT_REQUIRED", "msg": "The file must be checked out before saving changes."}
a[222] := {"enum": "ERROR_BAD_FILE_TYPE", "msg": "The file type being saved or retrieved has been blocked."}
a[223] := {"enum": "ERROR_FILE_TOO_LARGE", "msg": "The file size exceeds the limit allowed and cannot be saved."}
a[224] := {"enum": "ERROR_FORMS_AUTH_REQUIRED", "msg": "Access Denied. Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site, and select the option to login automatically."}
a[225] := {"enum": "ERROR_VIRUS_INFECTED", "msg": "Operation did not complete successfully because the file contains a virus or potentially unwanted software."}
a[226] := {"enum": "ERROR_VIRUS_DELETED", "msg": "This file contains a virus or potentially unwanted software and cannot be opened. Due to the nature of this virus or potentially unwanted software, the file has been removed from this location."}
a[229] := {"enum": "ERROR_PIPE_LOCAL", "msg": "The pipe is local."}
a[230] := {"enum": "ERROR_BAD_PIPE", "msg": "The pipe state is invalid."}
a[231] := {"enum": "ERROR_PIPE_BUSY", "msg": "All pipe instances are busy."}
a[232] := {"enum": "ERROR_NO_DATA", "msg": "The pipe is being closed."}
a[233] := {"enum": "ERROR_PIPE_NOT_CONNECTED", "msg": "No process is on the other end of the pipe."}
a[234] := {"enum": "ERROR_MORE_DATA", "msg": "More data is available."}
a[240] := {"enum": "ERROR_VC_DISCONNECTED", "msg": "The session was canceled."}
a[254] := {"enum": "ERROR_INVALID_EA_NAME", "msg": "The specified extended attribute name was invalid."}
a[255] := {"enum": "ERROR_EA_LIST_INCONSISTENT", "msg": "The extended attributes are inconsistent."}
a[258] := {"enum": "WAIT_TIMEOUT", "msg": "The wait operation timed out."}
a[259] := {"enum": "ERROR_NO_MORE_ITEMS", "msg": "No more data is available."}
a[266] := {"enum": "ERROR_CANNOT_COPY", "msg": "The copy functions cannot be used."}
a[267] := {"enum": "ERROR_DIRECTORY", "msg": "The directory name is invalid."}
a[275] := {"enum": "ERROR_EAS_DIDNT_FIT", "msg": "The extended attributes did not fit in the buffer."}
a[276] := {"enum": "ERROR_EA_FILE_CORRUPT", "msg": "The extended attribute file on the mounted file system is corrupt."}
a[277] := {"enum": "ERROR_EA_TABLE_FULL", "msg": "The extended attribute table file is full."}
a[278] := {"enum": "ERROR_INVALID_EA_HANDLE", "msg": "The specified extended attribute handle is invalid."}
a[282] := {"enum": "ERROR_EAS_NOT_SUPPORTED", "msg": "The mounted file system does not support extended attributes."}
a[288] := {"enum": "ERROR_NOT_OWNER", "msg": "Attempt to release mutex not owned by caller."}
a[298] := {"enum": "ERROR_TOO_MANY_POSTS", "msg": "Too many posts were made to a semaphore."}
a[299] := {"enum": "ERROR_PARTIAL_COPY", "msg": "Only part of a ReadProcessMemory or WriteProcessMemory request was completed."}
a[300] := {"enum": "ERROR_OPLOCK_NOT_GRANTED", "msg": "The oplock request is denied."}
a[301] := {"enum": "ERROR_INVALID_OPLOCK_PROTOCOL", "msg": "An invalid oplock acknowledgment was received by the system."}
a[302] := {"enum": "ERROR_DISK_TOO_FRAGMENTED", "msg": "The volume is too fragmented to complete this operation."}
a[303] := {"enum": "ERROR_DELETE_PENDING", "msg": "The file cannot be opened because it is in the process of being deleted."}
a[304] := {"enum": "ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING", "msg": "Short name settings may not be changed on this volume due to the global registry setting."}
a[305] := {"enum": "ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME", "msg": "Short names are not enabled on this volume."}
a[306] := {"enum": "ERROR_SECURITY_STREAM_IS_INCONSISTENT", "msg": "The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume."}
a[307] := {"enum": "ERROR_INVALID_LOCK_RANGE", "msg": "A requested file lock operation cannot be processed due to an invalid byte range."}
a[308] := {"enum": "ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT", "msg": "The subsystem needed to support the image type is not present."}
a[309] := {"enum": "ERROR_NOTIFICATION_GUID_ALREADY_DEFINED", "msg": "The specified file already has a notification GUID associated with it."}
a[310] := {"enum": "ERROR_INVALID_EXCEPTION_HANDLER", "msg": "An invalid exception handler routine has been detected."}
a[311] := {"enum": "ERROR_DUPLICATE_PRIVILEGES", "msg": "Duplicate privileges were specified for the token."}
a[312] := {"enum": "ERROR_NO_RANGES_PROCESSED", "msg": "No ranges for the specified operation were able to be processed."}
a[313] := {"enum": "ERROR_NOT_ALLOWED_ON_SYSTEM_FILE", "msg": "Operation is not allowed on a file system internal file."}
a[314] := {"enum": "ERROR_DISK_RESOURCES_EXHAUSTED", "msg": "The physical resources of this disk have been exhausted."}
a[315] := {"enum": "ERROR_INVALID_TOKEN", "msg": "The token representing the data is invalid."}
a[316] := {"enum": "ERROR_DEVICE_FEATURE_NOT_SUPPORTED", "msg": "The device does not support the command feature."}
a[317] := {"enum": "ERROR_MR_MID_NOT_FOUND", "msg": "The system cannot find message text for message number 0x`%1 in the message file for `%2."}
a[318] := {"enum": "ERROR_SCOPE_NOT_FOUND", "msg": "The scope specified was not found."}
a[319] := {"enum": "ERROR_UNDEFINED_SCOPE", "msg": "The Central Access Policy specified is not defined on the target machine."}
a[320] := {"enum": "ERROR_INVALID_CAP", "msg": "The Central Access Policy obtained from Active Directory is invalid."}
a[321] := {"enum": "ERROR_DEVICE_UNREACHABLE", "msg": "The device is unreachable."}
a[322] := {"enum": "ERROR_DEVICE_NO_RESOURCES", "msg": "The target device has insufficient resources to complete the operation."}
a[323] := {"enum": "ERROR_DATA_CHECKSUM_ERROR", "msg": "A data integrity checksum error occurred. Data in the file stream is corrupt."}
a[324] := {"enum": "ERROR_INTERMIXED_KERNEL_EA_OPERATION", "msg": "An attempt was made to modify both a KERNEL and normal Extended Attribute (EA) in the same operation."}
a[326] := {"enum": "ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED", "msg": "Device does not support file-level TRIM."}
a[327] := {"enum": "ERROR_OFFSET_ALIGNMENT_VIOLATION", "msg": "The command specified a data offset that does not align to the device's granularity/alignment."}
a[328] := {"enum": "ERROR_INVALID_FIELD_IN_PARAMETER_LIST", "msg": "The command specified an invalid field in its parameter list."}
a[329] := {"enum": "ERROR_OPERATION_IN_PROGRESS", "msg": "An operation is currently in progress with the device."}
a[330] := {"enum": "ERROR_BAD_DEVICE_PATH", "msg": "An attempt was made to send down the command via an invalid path to the target device."}
a[331] := {"enum": "ERROR_TOO_MANY_DESCRIPTORS", "msg": "The command specified a number of descriptors that exceeded the maximum supported by the device."}
a[332] := {"enum": "ERROR_SCRUB_DATA_DISABLED", "msg": "Scrub is disabled on the specified file."}
a[333] := {"enum": "ERROR_NOT_REDUNDANT_STORAGE", "msg": "The storage device does not provide redundancy."}
a[334] := {"enum": "ERROR_RESIDENT_FILE_NOT_SUPPORTED", "msg": "An operation is not supported on a resident file."}
a[335] := {"enum": "ERROR_COMPRESSED_FILE_NOT_SUPPORTED", "msg": "An operation is not supported on a compressed file."}
a[336] := {"enum": "ERROR_DIRECTORY_NOT_SUPPORTED", "msg": "An operation is not supported on a directory."}
a[337] := {"enum": "ERROR_NOT_READ_FROM_COPY", "msg": "The specified copy of the requested data could not be read."}
a[350] := {"enum": "ERROR_FAIL_NOACTION_REBOOT", "msg": "No action was taken as a system reboot is required."}
a[351] := {"enum": "ERROR_FAIL_SHUTDOWN", "msg": "The shutdown operation failed."}
a[352] := {"enum": "ERROR_FAIL_RESTART", "msg": "The restart operation failed."}
a[353] := {"enum": "ERROR_MAX_SESSIONS_REACHED", "msg": "The maximum number of sessions has been reached."}
a[400] := {"enum": "ERROR_THREAD_MODE_ALREADY_BACKGROUND", "msg": "The thread is already in background processing mode."}
a[401] := {"enum": "ERROR_THREAD_MODE_NOT_BACKGROUND", "msg": "The thread is not in background processing mode."}
a[402] := {"enum": "ERROR_PROCESS_MODE_ALREADY_BACKGROUND", "msg": "The process is already in background processing mode."}
a[403] := {"enum": "ERROR_PROCESS_MODE_NOT_BACKGROUND", "msg": "The process is not in background processing mode."}
a[487] := {"enum": "ERROR_INVALID_ADDRESS", "msg": "Attempt to access invalid address."}
a[500] := {"enum": "ERROR_USER_PROFILE_LOAD", "msg": "User profile cannot be loaded."}
a[534] := {"enum": "ERROR_ARITHMETIC_OVERFLOW", "msg": "Arithmetic result exceeded 32 bits."}
a[535] := {"enum": "ERROR_PIPE_CONNECTED", "msg": "There is a process on other end of the pipe."}
a[536] := {"enum": "ERROR_PIPE_LISTENING", "msg": "Waiting for a process to open the other end of the pipe."}
a[537] := {"enum": "ERROR_VERIFIER_STOP", "msg": "Application verifier has found an error in the current process."}
a[538] := {"enum": "ERROR_ABIOS_ERROR", "msg": "An error occurred in the ABIOS subsystem."}
a[539] := {"enum": "ERROR_WX86_WARNING", "msg": "A warning occurred in the WX86 subsystem."}
a[540] := {"enum": "ERROR_WX86_ERROR", "msg": "An error occurred in the WX86 subsystem."}
a[541] := {"enum": "ERROR_TIMER_NOT_CANCELED", "msg": "An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine."}
a[542] := {"enum": "ERROR_UNWIND", "msg": "Unwind exception code."}
a[543] := {"enum": "ERROR_BAD_STACK", "msg": "An invalid or unaligned stack was encountered during an unwind operation."}
a[544] := {"enum": "ERROR_INVALID_UNWIND_TARGET", "msg": "An invalid unwind target was encountered during an unwind operation."}
a[545] := {"enum": "ERROR_INVALID_PORT_ATTRIBUTES", "msg": "Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort"}
a[546] := {"enum": "ERROR_PORT_MESSAGE_TOO_LONG", "msg": "Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port."}
a[547] := {"enum": "ERROR_INVALID_QUOTA_LOWER", "msg": "An attempt was made to lower a quota limit below the current usage."}
a[548] := {"enum": "ERROR_DEVICE_ALREADY_ATTACHED", "msg": "An attempt was made to attach to a device that was already attached to another device."}
a[549] := {"enum": "ERROR_INSTRUCTION_MISALIGNMENT", "msg": "An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references."}
a[550] := {"enum": "ERROR_PROFILING_NOT_STARTED", "msg": "Profiling not started."}
a[551] := {"enum": "ERROR_PROFILING_NOT_STOPPED", "msg": "Profiling not stopped."}
a[552] := {"enum": "ERROR_COULD_NOT_INTERPRET", "msg": "The passed ACL did not contain the minimum required information."}
a[553] := {"enum": "ERROR_PROFILING_AT_LIMIT", "msg": "The number of active profiling objects is at the maximum and no more may be started."}
a[554] := {"enum": "ERROR_CANT_WAIT", "msg": "Used to indicate that an operation cannot continue without blocking for I/O."}
a[555] := {"enum": "ERROR_CANT_TERMINATE_SELF", "msg": "Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with <strong>NULL</strong>) and it was the last thread in the current process."}
a[556] := {"enum": "ERROR_UNEXPECTED_MM_CREATE_ERR", "msg": "If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception."}
a[557] := {"enum": "ERROR_UNEXPECTED_MM_MAP_ERROR", "msg": "If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception."}
a[558] := {"enum": "ERROR_UNEXPECTED_MM_EXTEND_ERR", "msg": "If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception."}
a[559] := {"enum": "ERROR_BAD_FUNCTION_TABLE", "msg": "A malformed function table was encountered during an unwind operation."}
a[560] := {"enum": "ERROR_NO_GUID_TRANSLATION", "msg": "Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which may cause a file creation attempt to fail."}
a[561] := {"enum": "ERROR_INVALID_LDT_SIZE", "msg": "Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors."}
a[563] := {"enum": "ERROR_INVALID_LDT_OFFSET", "msg": "Indicates that the starting value for the LDT information was not an integral multiple of the selector size."}
a[564] := {"enum": "ERROR_INVALID_LDT_DESCRIPTOR", "msg": "Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors."}
a[565] := {"enum": "ERROR_TOO_MANY_THREADS", "msg": "Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads."}
a[566] := {"enum": "ERROR_THREAD_NOT_IN_PROCESS", "msg": "An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified."}
a[567] := {"enum": "ERROR_PAGEFILE_QUOTA_EXCEEDED", "msg": "Page file quota was exceeded."}
a[568] := {"enum": "ERROR_LOGON_SERVER_CONFLICT", "msg": "The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role."}
a[569] := {"enum": "ERROR_SYNCHRONIZATION_REQUIRED", "msg": "The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required."}
a[570] := {"enum": "ERROR_NET_OPEN_FAILED", "msg": "The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows Lan Manager Redirector to use in its internal error mapping routines."}
a[571] := {"enum": "ERROR_IO_PRIVILEGE_FAILED", "msg": "{Privilege Failed} The I/O permissions for the process could not be changed."}
a[572] := {"enum": "ERROR_CONTROL_C_EXIT", "msg": "{Application Exit by CTRL+C} The application terminated as a result of a CTRL+C."}
a[573] := {"enum": "ERROR_MISSING_SYSTEMFILE", "msg": "{Missing System File} The required system file `%hs is bad or missing."}
a[574] := {"enum": "ERROR_UNHANDLED_EXCEPTION", "msg": "{Application Error} The exception `%s."}
a[575] := {"enum": "ERROR_APP_INIT_FAILURE", "msg": "{Application Error} The application was unable to start correctly."}
a[576] := {"enum": "ERROR_PAGEFILE_CREATE_FAILED", "msg": "{Unable to Create Paging File} The creation of the paging file `%hs failed (`%lx). The requested size was `%ld."}
a[577] := {"enum": "ERROR_INVALID_IMAGE_HASH", "msg": "Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source."}
a[578] := {"enum": "ERROR_NO_PAGEFILE", "msg": "{No Paging File Specified} No paging file was specified in the system configuration."}
a[579] := {"enum": "ERROR_ILLEGAL_FLOAT_CONTEXT", "msg": "{EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present."}
a[580] := {"enum": "ERROR_NO_EVENT_PAIR", "msg": "An event pair synchronization operation was performed using the thread specific client/server event pair object, but no event pair object was associated with the thread."}
a[581] := {"enum": "ERROR_DOMAIN_CTRLR_CONFIG_ERROR", "msg": "A Windows Server has an incorrect configuration."}
a[582] := {"enum": "ERROR_ILLEGAL_CHARACTER", "msg": "An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE."}
a[583] := {"enum": "ERROR_UNDEFINED_CHARACTER", "msg": "The Unicode character is not defined in the Unicode character set installed on the system."}
a[584] := {"enum": "ERROR_FLOPPY_VOLUME", "msg": "The paging file cannot be created on a floppy diskette."}
a[585] := {"enum": "ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT", "msg": "The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected."}
a[586] := {"enum": "ERROR_BACKUP_CONTROLLER", "msg": "This operation is only allowed for the Primary Domain Controller of the domain."}
a[587] := {"enum": "ERROR_MUTANT_LIMIT_EXCEEDED", "msg": "An attempt was made to acquire a mutant such that its maximum count would have been exceeded."}
a[588] := {"enum": "ERROR_FS_DRIVER_REQUIRED", "msg": "A volume has been accessed for which a file system driver is required that has not yet been loaded."}
a[589] := {"enum": "ERROR_CANNOT_LOAD_REGISTRY_FILE", "msg": "{Registry File Failure} The registry cannot load the hive (file): `%hs or its log or alternate. It is corrupt, absent, or not writable."}
a[590] := {"enum": "ERROR_DEBUG_ATTACH_FAILED", "msg": "{Unexpected Failure in `nDebugActiveProcess} An unexpected failure occurred while processing a <strong>DebugActiveProcess</strong> API request. You may choose OK to terminate the process, or Cancel to ignore the error."}
a[591] := {"enum": "ERROR_SYSTEM_PROCESS_TERMINATED", "msg": "{Fatal System Error} The `%hs system process terminated unexpectedly with a status of 0x`%08x."}
a[592] := {"enum": "ERROR_DATA_NOT_ACCEPTED", "msg": "{Data Not Accepted} The TDI client could not handle the data received during an indication."}
a[593] := {"enum": "ERROR_VDM_HARD_ERROR", "msg": "NTVDM encountered a hard error."}
a[594] := {"enum": "ERROR_DRIVER_CANCEL_TIMEOUT", "msg": "{Cancel Timeout} The driver `%hs failed to complete a cancelled I/O request in the allotted time."}
a[595] := {"enum": "ERROR_REPLY_MESSAGE_MISMATCH", "msg": "{Reply Message Mismatch} An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message."}
a[596] := {"enum": "ERROR_LOST_WRITEBEHIND_DATA", "msg": "{Delayed Write Failed} Windows was unable to save all the data for the file `%hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere."}
a[597] := {"enum": "ERROR_CLIENT_SERVER_PARAMETERS_INVALID", "msg": "The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window."}
a[598] := {"enum": "ERROR_NOT_TINY_STREAM", "msg": "The stream is not a tiny stream."}
a[599] := {"enum": "ERROR_STACK_OVERFLOW_READ", "msg": "The request must be handled by the stack overflow code."}
a[600] := {"enum": "ERROR_CONVERT_TO_LARGE", "msg": "Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream."}
a[601] := {"enum": "ERROR_FOUND_OUT_OF_SCOPE", "msg": "The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation."}
a[602] := {"enum": "ERROR_ALLOCATE_BUCKET", "msg": "The bucket array must be grown. Retry transaction after doing so."}
a[603] := {"enum": "ERROR_MARSHALL_OVERFLOW", "msg": "The user/kernel marshalling buffer has overflowed."}
a[604] := {"enum": "ERROR_INVALID_VARIANT", "msg": "The supplied variant structure contains invalid data."}
a[605] := {"enum": "ERROR_BAD_COMPRESSION_BUFFER", "msg": "The specified buffer contains ill-formed data."}
a[606] := {"enum": "ERROR_AUDIT_FAILED", "msg": "{Audit Failed} An attempt to generate a security audit failed."}
a[607] := {"enum": "ERROR_TIMER_RESOLUTION_NOT_SET", "msg": "The timer resolution was not previously set by the current process."}
a[608] := {"enum": "ERROR_INSUFFICIENT_LOGON_INFO", "msg": "There is insufficient account information to log you on."}
a[609] := {"enum": "ERROR_BAD_DLL_ENTRYPOINT", "msg": "{Invalid DLL Entrypoint} The dynamic link library `%hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly."}
a[610] := {"enum": "ERROR_BAD_SERVICE_ENTRYPOINT", "msg": "{Invalid Service Callback Entrypoint} The `%hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly."}
a[611] := {"enum": "ERROR_IP_ADDRESS_CONFLICT1", "msg": "There is an IP address conflict with another system on the network."}
a[612] := {"enum": "ERROR_IP_ADDRESS_CONFLICT2", "msg": "There is an IP address conflict with another system on the network."}
a[613] := {"enum": "ERROR_REGISTRY_QUOTA_LIMIT", "msg": "{Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored."}
a[614] := {"enum": "ERROR_NO_CALLBACK_ACTIVE", "msg": "A callback return system service cannot be executed when no callback is active."}
a[615] := {"enum": "ERROR_PWD_TOO_SHORT", "msg": "The password provided is too short to meet the policy of your user account. Please choose a longer password."}
a[616] := {"enum": "ERROR_PWD_TOO_RECENT", "msg": "The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned."}
a[617] := {"enum": "ERROR_PWD_HISTORY_CONFLICT", "msg": "You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used."}
a[618] := {"enum": "ERROR_UNSUPPORTED_COMPRESSION", "msg": "The specified compression format is unsupported."}
a[619] := {"enum": "ERROR_INVALID_HW_PROFILE", "msg": "The specified hardware profile configuration is invalid."}
a[620] := {"enum": "ERROR_INVALID_PLUGPLAY_DEVICE_PATH", "msg": "The specified Plug and Play registry device path is invalid."}
a[621] := {"enum": "ERROR_QUOTA_LIST_INCONSISTENT", "msg": "The specified quota list is internally inconsistent with its descriptor."}
a[622] := {"enum": "ERROR_EVALUATION_EXPIRATION", "msg": "{Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product."}
a[623] := {"enum": "ERROR_ILLEGAL_DLL_RELOCATION", "msg": "{Illegal System DLL Relocation} The system DLL `%hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL `%hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL."}
a[624] := {"enum": "ERROR_DLL_INIT_FAILED_LOGOFF", "msg": "{DLL Initialization Failed} The application failed to initialize because the window station is shutting down."}
a[625] := {"enum": "ERROR_VALIDATE_CONTINUE", "msg": "The validation process needs to continue on to the next step."}
a[626] := {"enum": "ERROR_NO_MORE_MATCHES", "msg": "There are no more matches for the current index enumeration."}
a[627] := {"enum": "ERROR_RANGE_LIST_CONFLICT", "msg": "The range could not be added to the range list because of a conflict."}
a[628] := {"enum": "ERROR_SERVER_SID_MISMATCH", "msg": "The server process is running under a SID different than that required by client."}
a[629] := {"enum": "ERROR_CANT_ENABLE_DENY_ONLY", "msg": "A group marked use for deny only cannot be enabled."}
a[630] := {"enum": "ERROR_FLOAT_MULTIPLE_FAULTS", "msg": "{EXCEPTION} Multiple floating point faults."}
a[631] := {"enum": "ERROR_FLOAT_MULTIPLE_TRAPS", "msg": "{EXCEPTION} Multiple floating point traps."}
a[632] := {"enum": "ERROR_NOINTERFACE", "msg": "The requested interface is not supported."}
a[633] := {"enum": "ERROR_DRIVER_FAILED_SLEEP", "msg": "{System Standby Failed} The driver `%hs does not support standby mode. Updating this driver may allow the system to go to standby mode."}
a[634] := {"enum": "ERROR_CORRUPT_SYSTEM_FILE", "msg": "The system file `%1 has become corrupt and has been replaced."}
a[635] := {"enum": "ERROR_COMMITMENT_MINIMUM", "msg": "{Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications may be denied. For more information, see Help."}
a[636] := {"enum": "ERROR_PNP_RESTART_ENUMERATION", "msg": "A device was removed so enumeration must be restarted."}
a[637] := {"enum": "ERROR_SYSTEM_IMAGE_BAD_SIGNATURE", "msg": "{Fatal System Error} The system image `%s is not properly signed. The file has been replaced with the signed file. The system has been shut down."}
a[638] := {"enum": "ERROR_PNP_REBOOT_REQUIRED", "msg": "Device will not start without a reboot."}
a[639] := {"enum": "ERROR_INSUFFICIENT_POWER", "msg": "There is not enough power to complete the requested operation."}
a[640] := {"enum": "ERROR_MULTIPLE_FAULT_VIOLATION", "msg": "ERROR_MULTIPLE_FAULT_VIOLATION"}
a[641] := {"enum": "ERROR_SYSTEM_SHUTDOWN", "msg": "The system is in the process of shutting down."}
a[642] := {"enum": "ERROR_PORT_NOT_SET", "msg": "An attempt to remove a processes DebugPort was made, but a port was not already associated with the process."}
a[643] := {"enum": "ERROR_DS_VERSION_CHECK_FAILURE", "msg": "This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller."}
a[644] := {"enum": "ERROR_RANGE_NOT_FOUND", "msg": "The specified range could not be found in the range list."}
a[646] := {"enum": "ERROR_NOT_SAFE_MODE_DRIVER", "msg": "The driver was not loaded because the system is booting into safe mode."}
a[647] := {"enum": "ERROR_FAILED_DRIVER_ENTRY", "msg": "The driver was not loaded because it failed its initialization call."}
a[648] := {"enum": "ERROR_DEVICE_ENUMERATION_ERROR", "msg": "The "`%hs" encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection."}
a[649] := {"enum": "ERROR_MOUNT_POINT_NOT_RESOLVED", "msg": "The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached."}
a[650] := {"enum": "ERROR_INVALID_DEVICE_OBJECT_PARAMETER", "msg": "The device object parameter is either not a valid device object or is not attached to the volume specified by the file name."}
a[651] := {"enum": "ERROR_MCA_OCCURED", "msg": "A Machine Check Error has occurred. Please check the system eventlog for additional information."}
a[652] := {"enum": "ERROR_DRIVER_DATABASE_ERROR", "msg": "There was error [`%2] processing the driver database."}
a[653] := {"enum": "ERROR_SYSTEM_HIVE_TOO_LARGE", "msg": "System hive size has exceeded its limit."}
a[654] := {"enum": "ERROR_DRIVER_FAILED_PRIOR_UNLOAD", "msg": "The driver could not be loaded because a previous version of the driver is still in memory."}
a[655] := {"enum": "ERROR_VOLSNAP_PREPARE_HIBERNATE", "msg": "{Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume `%hs for hibernation."}
a[656] := {"enum": "ERROR_HIBERNATION_FAILURE", "msg": "The system has failed to hibernate (The error code is `%hs). Hibernation will be disabled until the system is restarted."}
a[657] := {"enum": "ERROR_PWD_TOO_LONG", "msg": "The password provided is too long to meet the policy of your user account. Please choose a shorter password."}
a[665] := {"enum": "ERROR_FILE_SYSTEM_LIMITATION", "msg": "The requested operation could not be completed due to a file system limitation."}
a[668] := {"enum": "ERROR_ASSERTION_FAILURE", "msg": "An assertion failure has occurred."}
a[669] := {"enum": "ERROR_ACPI_ERROR", "msg": "An error occurred in the ACPI subsystem."}
a[670] := {"enum": "ERROR_WOW_ASSERTION", "msg": "WOW Assertion Error."}
a[671] := {"enum": "ERROR_PNP_BAD_MPS_TABLE", "msg": "A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update."}
a[672] := {"enum": "ERROR_PNP_TRANSLATION_FAILED", "msg": "A translator failed to translate resources."}
a[673] := {"enum": "ERROR_PNP_IRQ_TRANSLATION_FAILED", "msg": "A IRQ translator failed to translate resources."}
a[674] := {"enum": "ERROR_PNP_INVALID_ID", "msg": "Driver `%2 returned invalid ID for a child device (`%3)."}
a[675] := {"enum": "ERROR_WAKE_SYSTEM_DEBUGGER", "msg": "{Kernel Debugger Awakened} the system debugger was awakened by an interrupt."}
a[676] := {"enum": "ERROR_HANDLES_CLOSED", "msg": "{Handles Closed} Handles to objects have been automatically closed as a result of the requested operation."}
a[677] := {"enum": "ERROR_EXTRANEOUS_INFORMATION", "msg": "{Too Much Information} The specified access control list (ACL) contained more information than was expected."}
a[678] := {"enum": "ERROR_RXACT_COMMIT_NECESSARY", "msg": "This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired)."}
a[679] := {"enum": "ERROR_MEDIA_CHECK", "msg": "{Media Changed} The media may have changed."}
a[680] := {"enum": "ERROR_GUID_SUBSTITUTION_MADE", "msg": "{GUID Substitution} During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this may provide a more restrictive access than intended."}
a[681] := {"enum": "ERROR_STOPPED_ON_SYMLINK", "msg": "The create operation stopped after reaching a symbolic link."}
a[682] := {"enum": "ERROR_LONGJUMP", "msg": "A long jump has been executed."}
a[683] := {"enum": "ERROR_PLUGPLAY_QUERY_VETOED", "msg": "The Plug and Play query operation was not successful."}
a[684] := {"enum": "ERROR_UNWIND_CONSOLIDATE", "msg": "A frame consolidation has been executed."}
a[685] := {"enum": "ERROR_REGISTRY_HIVE_RECOVERED", "msg": "{Registry Hive Recovered} Registry hive (file): `%hs was corrupted and it has been recovered. Some data might have been lost."}
a[686] := {"enum": "ERROR_DLL_MIGHT_BE_INSECURE", "msg": "The application is attempting to run executable code from the module `%hs. This may be insecure. An alternative, `%hs, is available. Should the application use the secure module `%hs?"}
a[687] := {"enum": "ERROR_DLL_MIGHT_BE_INCOMPATIBLE", "msg": "The application is loading executable code from the module `%hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, `%hs, is available. Should the application use the secure module `%hs?"}
a[688] := {"enum": "ERROR_DBG_EXCEPTION_NOT_HANDLED", "msg": "Debugger did not handle the exception."}
a[689] := {"enum": "ERROR_DBG_REPLY_LATER", "msg": "Debugger will reply later."}
a[690] := {"enum": "ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE", "msg": "Debugger cannot provide handle."}
a[691] := {"enum": "ERROR_DBG_TERMINATE_THREAD", "msg": "Debugger terminated thread."}
a[692] := {"enum": "ERROR_DBG_TERMINATE_PROCESS", "msg": "Debugger terminated process."}
a[693] := {"enum": "ERROR_DBG_CONTROL_C", "msg": "Debugger got control C."}
a[694] := {"enum": "ERROR_DBG_PRINTEXCEPTION_C", "msg": "Debugger printed exception on control C."}
a[695] := {"enum": "ERROR_DBG_RIPEXCEPTION", "msg": "Debugger received RIP exception."}
a[696] := {"enum": "ERROR_DBG_CONTROL_BREAK", "msg": "Debugger received control break."}
a[697] := {"enum": "ERROR_DBG_COMMAND_EXCEPTION", "msg": "Debugger command communication exception."}
a[698] := {"enum": "ERROR_OBJECT_NAME_EXISTS", "msg": "{Object Exists} An attempt was made to create an object and the object name already existed."}
a[699] := {"enum": "ERROR_THREAD_WAS_SUSPENDED", "msg": "{Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded."}
a[700] := {"enum": "ERROR_IMAGE_NOT_AT_BASE", "msg": "{Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image."}
a[701] := {"enum": "ERROR_RXACT_STATE_CREATED", "msg": "This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created."}
a[702] := {"enum": "ERROR_SEGMENT_NOTIFICATION", "msg": "{Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments."}
a[703] := {"enum": "ERROR_BAD_CURRENT_DIRECTORY", "msg": "{Invalid Current Directory} The process cannot switch to the startup current directory `%hs. Select OK to set current directory to `%hs, or select CANCEL to exit."}
a[704] := {"enum": "ERROR_FT_READ_RECOVERY_FROM_BACKUP", "msg": "{Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device."}
a[705] := {"enum": "ERROR_FT_WRITE_RECOVERY", "msg": "{Redundant Write} To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device."}
a[706] := {"enum": "ERROR_IMAGE_MACHINE_TYPE_MISMATCH", "msg": "{Machine Type Mismatch} The image file `%hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load."}
a[707] := {"enum": "ERROR_RECEIVE_PARTIAL", "msg": "{Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later."}
a[708] := {"enum": "ERROR_RECEIVE_EXPEDITED", "msg": "{Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system."}
a[709] := {"enum": "ERROR_RECEIVE_PARTIAL_EXPEDITED", "msg": "{Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later."}
a[710] := {"enum": "ERROR_EVENT_DONE", "msg": "{TDI Event Done} The TDI indication has completed successfully."}
a[711] := {"enum": "ERROR_EVENT_PENDING", "msg": "{TDI Event Pending} The TDI indication has entered the pending state."}
a[712] := {"enum": "ERROR_CHECKING_FILE_SYSTEM", "msg": "Checking file system on `%wZ."}
a[713] := {"enum": "ERROR_FATAL_APP_EXIT", "msg": "{Fatal Application Exit} `%hs."}
a[714] := {"enum": "ERROR_PREDEFINED_HANDLE", "msg": "The specified registry key is referenced by a predefined handle."}
a[715] := {"enum": "ERROR_WAS_UNLOCKED", "msg": "{Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process."}
a[716] := {"enum": "ERROR_SERVICE_NOTIFICATION", "msg": "`%hs"}
a[717] := {"enum": "ERROR_WAS_LOCKED", "msg": "{Page Locked} One of the pages to lock was already locked."}
a[718] := {"enum": "ERROR_LOG_HARD_ERROR", "msg": "Application popup: `%1 : `%2"}
a[719] := {"enum": "ERROR_ALREADY_WIN32", "msg": "ERROR_ALREADY_WIN32"}
a[720] := {"enum": "ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE", "msg": "{Machine Type Mismatch} The image file `%hs is valid, but is for a machine type other than the current machine."}
a[721] := {"enum": "ERROR_NO_YIELD_PERFORMED", "msg": "A yield execution was performed and no thread was available to run."}
a[722] := {"enum": "ERROR_TIMER_RESUME_IGNORED", "msg": "The resumable flag to a timer API was ignored."}
a[723] := {"enum": "ERROR_ARBITRATION_UNHANDLED", "msg": "The arbiter has deferred arbitration of these resources to its parent."}
a[724] := {"enum": "ERROR_CARDBUS_NOT_SUPPORTED", "msg": "The inserted CardBus device cannot be started because of a configuration error on "`%hs"."}
a[725] := {"enum": "ERROR_MP_PROCESSOR_MISMATCH", "msg": "The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported."}
a[726] := {"enum": "ERROR_HIBERNATED", "msg": "The system was put into hibernation."}
a[727] := {"enum": "ERROR_RESUME_HIBERNATION", "msg": "The system was resumed from hibernation."}
a[728] := {"enum": "ERROR_FIRMWARE_UPDATED", "msg": "Windows has detected that the system firmware (BIOS) was updated [previous firmware date = `%2, current firmware date `%3]."}
a[729] := {"enum": "ERROR_DRIVERS_LEAKING_LOCKED_PAGES", "msg": "A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit."}
a[730] := {"enum": "ERROR_WAKE_SYSTEM", "msg": "The system has awoken."}
a[731] := {"enum": "ERROR_WAIT_1", "msg": "ERROR_WAIT_1"}
a[732] := {"enum": "ERROR_WAIT_2", "msg": "ERROR_WAIT_2"}
a[733] := {"enum": "ERROR_WAIT_3", "msg": "ERROR_WAIT_3"}
a[734] := {"enum": "ERROR_WAIT_63", "msg": "ERROR_WAIT_63"}
a[735] := {"enum": "ERROR_ABANDONED_WAIT_0", "msg": "ERROR_ABANDONED_WAIT_0"}
a[736] := {"enum": "ERROR_ABANDONED_WAIT_63", "msg": "ERROR_ABANDONED_WAIT_63"}
a[737] := {"enum": "ERROR_USER_APC", "msg": "ERROR_USER_APC"}
a[738] := {"enum": "ERROR_KERNEL_APC", "msg": "ERROR_KERNEL_APC"}
a[739] := {"enum": "ERROR_ALERTED", "msg": "ERROR_ALERTED"}
a[740] := {"enum": "ERROR_ELEVATION_REQUIRED", "msg": "The requested operation requires elevation."}
a[741] := {"enum": "ERROR_REPARSE", "msg": "A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link."}
a[742] := {"enum": "ERROR_OPLOCK_BREAK_IN_PROGRESS", "msg": "An open/create operation completed while an oplock break is underway."}
a[743] := {"enum": "ERROR_VOLUME_MOUNTED", "msg": "A new volume has been mounted by a file system."}
a[744] := {"enum": "ERROR_RXACT_COMMITTED", "msg": "This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has now been completed."}
a[745] := {"enum": "ERROR_NOTIFY_CLEANUP", "msg": "This indicates that a notify change request has been completed due to closing the handle which made the notify change request."}
a[746] := {"enum": "ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED", "msg": "{Connect Failure on Primary Transport} An attempt was made to connect to the remote server `%hs on the primary transport, but the connection failed. The computer WAS able to connect on a secondary transport."}
a[747] := {"enum": "ERROR_PAGE_FAULT_TRANSITION", "msg": "Page fault was a transition fault."}
a[748] := {"enum": "ERROR_PAGE_FAULT_DEMAND_ZERO", "msg": "Page fault was a demand zero fault."}
a[749] := {"enum": "ERROR_PAGE_FAULT_COPY_ON_WRITE", "msg": "Page fault was a demand zero fault."}
a[750] := {"enum": "ERROR_PAGE_FAULT_GUARD_PAGE", "msg": "Page fault was a demand zero fault."}
a[751] := {"enum": "ERROR_PAGE_FAULT_PAGING_FILE", "msg": "Page fault was satisfied by reading from a secondary storage device."}
a[752] := {"enum": "ERROR_CACHE_PAGE_LOCKED", "msg": "Cached page was locked during operation."}
a[753] := {"enum": "ERROR_CRASH_DUMP", "msg": "Crash dump exists in paging file."}
a[754] := {"enum": "ERROR_BUFFER_ALL_ZEROS", "msg": "Specified buffer contains all zeros."}
a[755] := {"enum": "ERROR_REPARSE_OBJECT", "msg": "A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link."}
a[756] := {"enum": "ERROR_RESOURCE_REQUIREMENTS_CHANGED", "msg": "The device has succeeded a query-stop and its resource requirements have changed."}
a[757] := {"enum": "ERROR_TRANSLATION_COMPLETE", "msg": "The translator has translated these resources into the global space and no further translations should be performed."}
a[758] := {"enum": "ERROR_NOTHING_TO_TERMINATE", "msg": "A process being terminated has no threads to terminate."}
a[759] := {"enum": "ERROR_PROCESS_NOT_IN_JOB", "msg": "The specified process is not part of a job."}
a[760] := {"enum": "ERROR_PROCESS_IN_JOB", "msg": "The specified process is part of a job."}
a[761] := {"enum": "ERROR_VOLSNAP_HIBERNATE_READY", "msg": "{Volume Shadow Copy Service} The system is now ready for hibernation."}
a[762] := {"enum": "ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY", "msg": "A file system or file system filter driver has successfully completed an FsFilter operation."}
a[763] := {"enum": "ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED", "msg": "The specified interrupt vector was already connected."}
a[764] := {"enum": "ERROR_INTERRUPT_STILL_CONNECTED", "msg": "The specified interrupt vector is still connected."}
a[765] := {"enum": "ERROR_WAIT_FOR_OPLOCK", "msg": "An operation is blocked waiting for an oplock."}
a[766] := {"enum": "ERROR_DBG_EXCEPTION_HANDLED", "msg": "Debugger handled exception."}
a[767] := {"enum": "ERROR_DBG_CONTINUE", "msg": "Debugger continued."}
a[768] := {"enum": "ERROR_CALLBACK_POP_STACK", "msg": "An exception occurred in a user mode callback and the kernel callback frame should be removed."}
a[769] := {"enum": "ERROR_COMPRESSION_DISABLED", "msg": "Compression is disabled for this volume."}
a[770] := {"enum": "ERROR_CANTFETCHBACKWARDS", "msg": "The data provider cannot fetch backwards through a result set."}
a[771] := {"enum": "ERROR_CANTSCROLLBACKWARDS", "msg": "The data provider cannot scroll backwards through a result set."}
a[772] := {"enum": "ERROR_ROWSNOTRELEASED", "msg": "The data provider requires that previously fetched data is released before asking for more data."}
a[773] := {"enum": "ERROR_BAD_ACCESSOR_FLAGS", "msg": "The data provider was not able to interpret the flags set for a column binding in an accessor."}
a[774] := {"enum": "ERROR_ERRORS_ENCOUNTERED", "msg": "One or more errors occurred while processing the request."}
a[775] := {"enum": "ERROR_NOT_CAPABLE", "msg": "The implementation is not capable of performing the request."}
a[776] := {"enum": "ERROR_REQUEST_OUT_OF_SEQUENCE", "msg": "The client of a component requested an operation which is not valid given the state of the component instance."}
a[777] := {"enum": "ERROR_VERSION_PARSE_ERROR", "msg": "A version number could not be parsed."}
a[778] := {"enum": "ERROR_BADSTARTPOSITION", "msg": "The iterator's start position is invalid."}
a[779] := {"enum": "ERROR_MEMORY_HARDWARE", "msg": "The hardware has reported an uncorrectable memory error."}
a[780] := {"enum": "ERROR_DISK_REPAIR_DISABLED", "msg": "The attempted operation required self healing to be enabled."}
a[781] := {"enum": "ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE", "msg": "The Desktop heap encountered an error while allocating session memory. There is more information in the system event log."}
a[782] := {"enum": "ERROR_SYSTEM_POWERSTATE_TRANSITION", "msg": "The system power state is transitioning from `%2 to `%3."}
a[783] := {"enum": "ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION", "msg": "The system power state is transitioning from `%2 to `%3 but could enter `%4."}
a[784] := {"enum": "ERROR_MCA_EXCEPTION", "msg": "A thread is getting dispatched with MCA EXCEPTION because of MCA."}
a[785] := {"enum": "ERROR_ACCESS_AUDIT_BY_POLICY", "msg": "Access to `%1 is monitored by policy rule `%2."}
a[786] := {"enum": "ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY", "msg": "Access to `%1 has been restricted by your Administrator by policy rule `%2."}
a[787] := {"enum": "ERROR_ABANDON_HIBERFILE", "msg": "A valid hibernation file has been invalidated and should be abandoned."}
a[788] := {"enum": "ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED", "msg": "{Delayed Write Failed} Windows was unable to save all the data for the file `%hs; the data has been lost. This error may be caused by network connectivity issues. Please try to save this file elsewhere."}
a[789] := {"enum": "ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR", "msg": "{Delayed Write Failed} Windows was unable to save all the data for the file `%hs; the data has been lost. This error was returned by the server on which the file exists. Please try to save this file elsewhere."}
a[790] := {"enum": "ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR", "msg": "{Delayed Write Failed} Windows was unable to save all the data for the file `%hs; the data has been lost. This error may be caused if the device has been removed or the media is write-protected."}
a[791] := {"enum": "ERROR_BAD_MCFG_TABLE", "msg": "The resources required for this device conflict with the MCFG table."}
a[792] := {"enum": "ERROR_DISK_REPAIR_REDIRECTED", "msg": "The volume repair could not be performed while it is online. Please schedule to take the volume offline so that it can be repaired."}
a[793] := {"enum": "ERROR_DISK_REPAIR_UNSUCCESSFUL", "msg": "The volume repair was not successful."}
a[794] := {"enum": "ERROR_CORRUPT_LOG_OVERFULL", "msg": "One of the volume corruption logs is full. Further corruptions that may be detected won't be logged."}
a[795] := {"enum": "ERROR_CORRUPT_LOG_CORRUPTED", "msg": "One of the volume corruption logs is internally corrupted and needs to be recreated. The volume may contain undetected corruptions and must be scanned."}
a[796] := {"enum": "ERROR_CORRUPT_LOG_UNAVAILABLE", "msg": "One of the volume corruption logs is unavailable for being operated on."}
a[797] := {"enum": "ERROR_CORRUPT_LOG_DELETED_FULL", "msg": "One of the volume corruption logs was deleted while still having corruption records in them. The volume contains detected corruptions and must be scanned."}
a[798] := {"enum": "ERROR_CORRUPT_LOG_CLEARED", "msg": "One of the volume corruption logs was cleared by chkdsk and no longer contains real corruptions."}
a[799] := {"enum": "ERROR_ORPHAN_NAME_EXHAUSTED", "msg": "Orphaned files exist on the volume but could not be recovered because no more new names could be created in the recovery directory. Files must be moved from the recovery directory."}
a[800] := {"enum": "ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE", "msg": "The oplock that was associated with this handle is now associated with a different handle."}
a[801] := {"enum": "ERROR_CANNOT_GRANT_REQUESTED_OPLOCK", "msg": "An oplock of the requested level cannot be granted. An oplock of a lower level may be available."}
a[802] := {"enum": "ERROR_CANNOT_BREAK_OPLOCK", "msg": "The operation did not complete successfully because it would cause an oplock to be broken. The caller has requested that existing oplocks not be broken."}
a[803] := {"enum": "ERROR_OPLOCK_HANDLE_CLOSED", "msg": "The handle with which this oplock was associated has been closed. The oplock is now broken."}
a[804] := {"enum": "ERROR_NO_ACE_CONDITION", "msg": "The specified access control entry (ACE) does not contain a condition."}
a[805] := {"enum": "ERROR_INVALID_ACE_CONDITION", "msg": "The specified access control entry (ACE) contains an invalid condition."}
a[806] := {"enum": "ERROR_FILE_HANDLE_REVOKED", "msg": "Access to the specified file handle has been revoked."}
a[807] := {"enum": "ERROR_IMAGE_AT_DIFFERENT_BASE", "msg": "An image file was mapped at a different address from the one specified in the image file but fixups will still be automatically performed on the image."}
a[994] := {"enum": "ERROR_EA_ACCESS_DENIED", "msg": "Access to the extended attribute was denied."}
a[995] := {"enum": "ERROR_OPERATION_ABORTED", "msg": "The I/O operation has been aborted because of either a thread exit or an application request."}
a[996] := {"enum": "ERROR_IO_INCOMPLETE", "msg": "Overlapped I/O event is not in a signaled state."}
a[997] := {"enum": "ERROR_IO_PENDING", "msg": "Overlapped I/O operation is in progress."}
a[998] := {"enum": "ERROR_NOACCESS", "msg": "Invalid access to memory location."}
a[999] := {"enum": "ERROR_SWAPERROR", "msg": "Error performing inpage operation."}
a[1001] := {"enum": "ERROR_STACK_OVERFLOW", "msg": "Recursion too deep; the stack overflowed."}
a[1002] := {"enum": "ERROR_INVALID_MESSAGE", "msg": "The window cannot act on the sent message."}
a[1003] := {"enum": "ERROR_CAN_NOT_COMPLETE", "msg": "Cannot complete this function."}
a[1004] := {"enum": "ERROR_INVALID_FLAGS", "msg": "Invalid flags."}
a[1005] := {"enum": "ERROR_UNRECOGNIZED_VOLUME", "msg": "The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted."}
a[1006] := {"enum": "ERROR_FILE_INVALID", "msg": "The volume for a file has been externally altered so that the opened file is no longer valid."}
a[1007] := {"enum": "ERROR_FULLSCREEN_MODE", "msg": "The requested operation cannot be performed in full-screen mode."}
a[1008] := {"enum": "ERROR_NO_TOKEN", "msg": "An attempt was made to reference a token that does not exist."}
a[1009] := {"enum": "ERROR_BADDB", "msg": "The configuration registry database is corrupt."}
a[1010] := {"enum": "ERROR_BADKEY", "msg": "The configuration registry key is invalid."}
a[1011] := {"enum": "ERROR_CANTOPEN", "msg": "The configuration registry key could not be opened."}
a[1012] := {"enum": "ERROR_CANTREAD", "msg": "The configuration registry key could not be read."}
a[1013] := {"enum": "ERROR_CANTWRITE", "msg": "The configuration registry key could not be written."}
a[1014] := {"enum": "ERROR_REGISTRY_RECOVERED", "msg": "One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful."}
a[1015] := {"enum": "ERROR_REGISTRY_CORRUPT", "msg": "The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted."}
a[1016] := {"enum": "ERROR_REGISTRY_IO_FAILED", "msg": "An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry."}
a[1017] := {"enum": "ERROR_NOT_REGISTRY_FILE", "msg": "The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format."}
a[1018] := {"enum": "ERROR_KEY_DELETED", "msg": "Illegal operation attempted on a registry key that has been marked for deletion."}
a[1019] := {"enum": "ERROR_NO_LOG_SPACE", "msg": "System could not allocate the required space in a registry log."}
a[1020] := {"enum": "ERROR_KEY_HAS_CHILDREN", "msg": "Cannot create a symbolic link in a registry key that already has subkeys or values."}
a[1021] := {"enum": "ERROR_CHILD_MUST_BE_VOLATILE", "msg": "Cannot create a stable subkey under a volatile parent key."}
a[1022] := {"enum": "ERROR_NOTIFY_ENUM_DIR", "msg": "A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes."}
a[1051] := {"enum": "ERROR_DEPENDENT_SERVICES_RUNNING", "msg": "A stop control has been sent to a service that other running services are dependent on."}
a[1052] := {"enum": "ERROR_INVALID_SERVICE_CONTROL", "msg": "The requested control is not valid for this service."}
a[1053] := {"enum": "ERROR_SERVICE_REQUEST_TIMEOUT", "msg": "The service did not respond to the start or control request in a timely fashion."}
a[1054] := {"enum": "ERROR_SERVICE_NO_THREAD", "msg": "A thread could not be created for the service."}
a[1055] := {"enum": "ERROR_SERVICE_DATABASE_LOCKED", "msg": "The service database is locked."}
a[1056] := {"enum": "ERROR_SERVICE_ALREADY_RUNNING", "msg": "An instance of the service is already running."}
a[1057] := {"enum": "ERROR_INVALID_SERVICE_ACCOUNT", "msg": "The account name is invalid or does not exist, or the password is invalid for the account name specified."}
a[1058] := {"enum": "ERROR_SERVICE_DISABLED", "msg": "The service cannot be started, either because it is disabled or because it has no enabled devices associated with it."}
a[1059] := {"enum": "ERROR_CIRCULAR_DEPENDENCY", "msg": "Circular service dependency was specified."}
a[1060] := {"enum": "ERROR_SERVICE_DOES_NOT_EXIST", "msg": "The specified service does not exist as an installed service."}
a[1061] := {"enum": "ERROR_SERVICE_CANNOT_ACCEPT_CTRL", "msg": "The service cannot accept control messages at this time."}
a[1062] := {"enum": "ERROR_SERVICE_NOT_ACTIVE", "msg": "The service has not been started."}
a[1063] := {"enum": "ERROR_FAILED_SERVICE_CONTROLLER_CONNECT", "msg": "The service process could not connect to the service controller."}
a[1064] := {"enum": "ERROR_EXCEPTION_IN_SERVICE", "msg": "An exception occurred in the service when handling the control request."}
a[1065] := {"enum": "ERROR_DATABASE_DOES_NOT_EXIST", "msg": "The database specified does not exist."}
a[1066] := {"enum": "ERROR_SERVICE_SPECIFIC_ERROR", "msg": "The service has returned a service-specific error code."}
a[1067] := {"enum": "ERROR_PROCESS_ABORTED", "msg": "The process terminated unexpectedly."}
a[1068] := {"enum": "ERROR_SERVICE_DEPENDENCY_FAIL", "msg": "The dependency service or group failed to start."}
a[1069] := {"enum": "ERROR_SERVICE_LOGON_FAILED", "msg": "The service did not start due to a logon failure."}
a[1070] := {"enum": "ERROR_SERVICE_START_HANG", "msg": "After starting, the service hung in a start-pending state."}
a[1071] := {"enum": "ERROR_INVALID_SERVICE_LOCK", "msg": "The specified service database lock is invalid."}
a[1072] := {"enum": "ERROR_SERVICE_MARKED_FOR_DELETE", "msg": "The specified service has been marked for deletion."}
a[1073] := {"enum": "ERROR_SERVICE_EXISTS", "msg": "The specified service already exists."}
a[1074] := {"enum": "ERROR_ALREADY_RUNNING_LKG", "msg": "The system is currently running with the last-known-good configuration."}
a[1075] := {"enum": "ERROR_SERVICE_DEPENDENCY_DELETED", "msg": "The dependency service does not exist or has been marked for deletion."}
a[1076] := {"enum": "ERROR_BOOT_ALREADY_ACCEPTED", "msg": "The current boot has already been accepted for use as the last-known-good control set."}
a[1077] := {"enum": "ERROR_SERVICE_NEVER_STARTED", "msg": "No attempts to start the service have been made since the last boot."}
a[1078] := {"enum": "ERROR_DUPLICATE_SERVICE_NAME", "msg": "The name is already in use as either a service name or a service display name."}
a[1079] := {"enum": "ERROR_DIFFERENT_SERVICE_ACCOUNT", "msg": "The account specified for this service is different from the account specified for other services running in the same process."}
a[1080] := {"enum": "ERROR_CANNOT_DETECT_DRIVER_FAILURE", "msg": "Failure actions can only be set for Win32 services, not for drivers."}
a[1081] := {"enum": "ERROR_CANNOT_DETECT_PROCESS_ABORT", "msg": "This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service's process terminates unexpectedly."}
a[1082] := {"enum": "ERROR_NO_RECOVERY_PROGRAM", "msg": "No recovery program has been configured for this service."}
a[1083] := {"enum": "ERROR_SERVICE_NOT_IN_EXE", "msg": "The executable program that this service is configured to run in does not implement the service."}
a[1084] := {"enum": "ERROR_NOT_SAFEBOOT_SERVICE", "msg": "This service cannot be started in Safe Mode."}
a[1100] := {"enum": "ERROR_END_OF_MEDIA", "msg": "The physical end of the tape has been reached."}
a[1101] := {"enum": "ERROR_FILEMARK_DETECTED", "msg": "A tape access reached a filemark."}
a[1102] := {"enum": "ERROR_BEGINNING_OF_MEDIA", "msg": "The beginning of the tape or a partition was encountered."}
a[1103] := {"enum": "ERROR_SETMARK_DETECTED", "msg": "A tape access reached the end of a set of files."}
a[1104] := {"enum": "ERROR_NO_DATA_DETECTED", "msg": "No more data is on the tape."}
a[1105] := {"enum": "ERROR_PARTITION_FAILURE", "msg": "Tape could not be partitioned."}
a[1106] := {"enum": "ERROR_INVALID_BLOCK_LENGTH", "msg": "When accessing a new tape of a multivolume partition, the current block size is incorrect."}
a[1107] := {"enum": "ERROR_DEVICE_NOT_PARTITIONED", "msg": "Tape partition information could not be found when loading a tape."}
a[1108] := {"enum": "ERROR_UNABLE_TO_LOCK_MEDIA", "msg": "Unable to lock the media eject mechanism."}
a[1109] := {"enum": "ERROR_UNABLE_TO_UNLOAD_MEDIA", "msg": "Unable to unload the media."}
a[1110] := {"enum": "ERROR_MEDIA_CHANGED", "msg": "The media in the drive may have changed."}
a[1111] := {"enum": "ERROR_BUS_RESET", "msg": "The I/O bus was reset."}
a[1112] := {"enum": "ERROR_NO_MEDIA_IN_DRIVE", "msg": "No media in drive."}
a[1113] := {"enum": "ERROR_NO_UNICODE_TRANSLATION", "msg": "No mapping for the Unicode character exists in the target multi-byte code page."}
a[1114] := {"enum": "ERROR_DLL_INIT_FAILED", "msg": "A dynamic link library (DLL) initialization routine failed."}
a[1115] := {"enum": "ERROR_SHUTDOWN_IN_PROGRESS", "msg": "A system shutdown is in progress."}
a[1116] := {"enum": "ERROR_NO_SHUTDOWN_IN_PROGRESS", "msg": "Unable to abort the system shutdown because no shutdown was in progress."}
a[1117] := {"enum": "ERROR_IO_DEVICE", "msg": "The request could not be performed because of an I/O device error."}
a[1118] := {"enum": "ERROR_SERIAL_NO_DEVICE", "msg": "No serial device was successfully initialized. The serial driver will unload."}
a[1119] := {"enum": "ERROR_IRQ_BUSY", "msg": "Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened."}
a[1120] := {"enum": "ERROR_MORE_WRITES", "msg": "A serial I/O operation was completed by another write to the serial port. The IOCTL_SERIAL_XOFF_COUNTER reached zero.)"}
a[1121] := {"enum": "ERROR_COUNTER_TIMEOUT", "msg": "A serial I/O operation completed because the timeout period expired. The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)"}
a[1122] := {"enum": "ERROR_FLOPPY_ID_MARK_NOT_FOUND", "msg": "No ID address mark was found on the floppy disk."}
a[1123] := {"enum": "ERROR_FLOPPY_WRONG_CYLINDER", "msg": "Mismatch between the floppy disk sector ID field and the floppy disk controller track address."}
a[1124] := {"enum": "ERROR_FLOPPY_UNKNOWN_ERROR", "msg": "The floppy disk controller reported an error that is not recognized by the floppy disk driver."}
a[1125] := {"enum": "ERROR_FLOPPY_BAD_REGISTERS", "msg": "The floppy disk controller returned inconsistent results in its registers."}
a[1126] := {"enum": "ERROR_DISK_RECALIBRATE_FAILED", "msg": "While accessing the hard disk, a recalibrate operation failed, even after retries."}
a[1127] := {"enum": "ERROR_DISK_OPERATION_FAILED", "msg": "While accessing the hard disk, a disk operation failed even after retries."}
a[1128] := {"enum": "ERROR_DISK_RESET_FAILED", "msg": "While accessing the hard disk, a disk controller reset was needed, but even that failed."}
a[1129] := {"enum": "ERROR_EOM_OVERFLOW", "msg": "Physical end of tape encountered."}
a[1130] := {"enum": "ERROR_NOT_ENOUGH_SERVER_MEMORY", "msg": "Not enough server storage is available to process this command."}
a[1131] := {"enum": "ERROR_POSSIBLE_DEADLOCK", "msg": "A potential deadlock condition has been detected."}
a[1132] := {"enum": "ERROR_MAPPED_ALIGNMENT", "msg": "The base address or the file offset specified does not have the proper alignment."}
a[1140] := {"enum": "ERROR_SET_POWER_STATE_VETOED", "msg": "An attempt to change the system power state was vetoed by another application or driver."}
a[1141] := {"enum": "ERROR_SET_POWER_STATE_FAILED", "msg": "The system BIOS failed an attempt to change the system power state."}
a[1142] := {"enum": "ERROR_TOO_MANY_LINKS", "msg": "An attempt was made to create more links on a file than the file system supports."}
a[1150] := {"enum": "ERROR_OLD_WIN_VERSION", "msg": "The specified program requires a newer version of Windows."}
a[1151] := {"enum": "ERROR_APP_WRONG_OS", "msg": "The specified program is not a Windows or MS-DOS program."}
a[1152] := {"enum": "ERROR_SINGLE_INSTANCE_APP", "msg": "Cannot start more than one instance of the specified program."}
a[1153] := {"enum": "ERROR_RMODE_APP", "msg": "The specified program was written for an earlier version of Windows."}
a[1154] := {"enum": "ERROR_INVALID_DLL", "msg": "One of the library files needed to run this application is damaged."}
a[1155] := {"enum": "ERROR_NO_ASSOCIATION", "msg": "No application is associated with the specified file for this operation."}
a[1156] := {"enum": "ERROR_DDE_FAIL", "msg": "An error occurred in sending the command to the application."}
a[1157] := {"enum": "ERROR_DLL_NOT_FOUND", "msg": "One of the library files needed to run this application cannot be found."}
a[1158] := {"enum": "ERROR_NO_MORE_USER_HANDLES", "msg": "The current process has used all of its system allowance of handles for Window Manager objects."}
a[1159] := {"enum": "ERROR_MESSAGE_SYNC_ONLY", "msg": "The message can be used only with synchronous operations."}
a[1160] := {"enum": "ERROR_SOURCE_ELEMENT_EMPTY", "msg": "The indicated source element has no media."}
a[1161] := {"enum": "ERROR_DESTINATION_ELEMENT_FULL", "msg": "The indicated destination element already contains media."}
a[1162] := {"enum": "ERROR_ILLEGAL_ELEMENT_ADDRESS", "msg": "The indicated element does not exist."}
a[1163] := {"enum": "ERROR_MAGAZINE_NOT_PRESENT", "msg": "The indicated element is part of a magazine that is not present."}
a[1164] := {"enum": "ERROR_DEVICE_REINITIALIZATION_NEEDED", "msg": "The indicated device requires reinitialization due to hardware errors."}
a[1165] := {"enum": "ERROR_DEVICE_REQUIRES_CLEANING", "msg": "The device has indicated that cleaning is required before further operations are attempted."}
a[1166] := {"enum": "ERROR_DEVICE_DOOR_OPEN", "msg": "The device has indicated that its door is open."}
a[1167] := {"enum": "ERROR_DEVICE_NOT_CONNECTED", "msg": "The device is not connected."}
a[1168] := {"enum": "ERROR_NOT_FOUND", "msg": "Element not found."}
a[1169] := {"enum": "ERROR_NO_MATCH", "msg": "There was no match for the specified key in the index."}
a[1170] := {"enum": "ERROR_SET_NOT_FOUND", "msg": "The property set specified does not exist on the object."}
a[1171] := {"enum": "ERROR_POINT_NOT_FOUND", "msg": "The point passed to GetMouseMovePoints is not in the buffer."}
a[1172] := {"enum": "ERROR_NO_TRACKING_SERVICE", "msg": "The tracking (workstation) service is not running."}
a[1173] := {"enum": "ERROR_NO_VOLUME_ID", "msg": "The Volume ID could not be found."}
a[1175] := {"enum": "ERROR_UNABLE_TO_REMOVE_REPLACED", "msg": "Unable to remove the file to be replaced."}
a[1176] := {"enum": "ERROR_UNABLE_TO_MOVE_REPLACEMENT", "msg": "Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name."}
a[1177] := {"enum": "ERROR_UNABLE_TO_MOVE_REPLACEMENT_2", "msg": "Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name."}
a[1178] := {"enum": "ERROR_JOURNAL_DELETE_IN_PROGRESS", "msg": "The volume change journal is being deleted."}
a[1179] := {"enum": "ERROR_JOURNAL_NOT_ACTIVE", "msg": "The volume change journal is not active."}
a[1180] := {"enum": "ERROR_POTENTIAL_FILE_FOUND", "msg": "A file was found, but it may not be the correct file."}
a[1181] := {"enum": "ERROR_JOURNAL_ENTRY_DELETED", "msg": "The journal entry has been deleted from the journal."}
a[1190] := {"enum": "ERROR_SHUTDOWN_IS_SCHEDULED", "msg": "A system shutdown has already been scheduled."}
a[1191] := {"enum": "ERROR_SHUTDOWN_USERS_LOGGED_ON", "msg": "The system shutdown cannot be initiated because there are other users logged on to the computer."}
a[1200] := {"enum": "ERROR_BAD_DEVICE", "msg": "The specified device name is invalid."}
a[1201] := {"enum": "ERROR_CONNECTION_UNAVAIL", "msg": "The device is not currently connected but it is a remembered connection."}
a[1202] := {"enum": "ERROR_DEVICE_ALREADY_REMEMBERED", "msg": "The local device name has a remembered connection to another network resource."}
a[1203] := {"enum": "ERROR_NO_NET_OR_BAD_PATH", "msg": "The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator."}
a[1204] := {"enum": "ERROR_BAD_PROVIDER", "msg": "The specified network provider name is invalid."}
a[1205] := {"enum": "ERROR_CANNOT_OPEN_PROFILE", "msg": "Unable to open the network connection profile."}
a[1206] := {"enum": "ERROR_BAD_PROFILE", "msg": "The network connection profile is corrupted."}
a[1207] := {"enum": "ERROR_NOT_CONTAINER", "msg": "Cannot enumerate a noncontainer."}
a[1208] := {"enum": "ERROR_EXTENDED_ERROR", "msg": "An extended error has occurred."}
a[1209] := {"enum": "ERROR_INVALID_GROUPNAME", "msg": "The format of the specified group name is invalid."}
a[1210] := {"enum": "ERROR_INVALID_COMPUTERNAME", "msg": "The format of the specified computer name is invalid."}
a[1211] := {"enum": "ERROR_INVALID_EVENTNAME", "msg": "The format of the specified event name is invalid."}
a[1212] := {"enum": "ERROR_INVALID_DOMAINNAME", "msg": "The format of the specified domain name is invalid."}
a[1213] := {"enum": "ERROR_INVALID_SERVICENAME", "msg": "The format of the specified service name is invalid."}
a[1214] := {"enum": "ERROR_INVALID_NETNAME", "msg": "The format of the specified network name is invalid."}
a[1215] := {"enum": "ERROR_INVALID_SHARENAME", "msg": "The format of the specified share name is invalid."}
a[1216] := {"enum": "ERROR_INVALID_PASSWORDNAME", "msg": "The format of the specified password is invalid."}
a[1217] := {"enum": "ERROR_INVALID_MESSAGENAME", "msg": "The format of the specified message name is invalid."}
a[1218] := {"enum": "ERROR_INVALID_MESSAGEDEST", "msg": "The format of the specified message destination is invalid."}
a[1219] := {"enum": "ERROR_SESSION_CREDENTIAL_CONFLICT", "msg": "Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again."}
a[1220] := {"enum": "ERROR_REMOTE_SESSION_LIMIT_EXCEEDED", "msg": "An attempt was made to establish a session to a network server, but there are already too many sessions established to that server."}
a[1221] := {"enum": "ERROR_DUP_DOMAINNAME", "msg": "The workgroup or domain name is already in use by another computer on the network."}
a[1222] := {"enum": "ERROR_NO_NETWORK", "msg": "The network is not present or not started."}
a[1223] := {"enum": "ERROR_CANCELLED", "msg": "The operation was canceled by the user."}
a[1224] := {"enum": "ERROR_USER_MAPPED_FILE", "msg": "The requested operation cannot be performed on a file with a user-mapped section open."}
a[1225] := {"enum": "ERROR_CONNECTION_REFUSED", "msg": "The remote computer refused the network connection."}
a[1226] := {"enum": "ERROR_GRACEFUL_DISCONNECT", "msg": "The network connection was gracefully closed."}
a[1227] := {"enum": "ERROR_ADDRESS_ALREADY_ASSOCIATED", "msg": "The network transport endpoint already has an address associated with it."}
a[1228] := {"enum": "ERROR_ADDRESS_NOT_ASSOCIATED", "msg": "An address has not yet been associated with the network endpoint."}
a[1229] := {"enum": "ERROR_CONNECTION_INVALID", "msg": "An operation was attempted on a nonexistent network connection."}
a[1230] := {"enum": "ERROR_CONNECTION_ACTIVE", "msg": "An invalid operation was attempted on an active network connection."}
a[1231] := {"enum": "ERROR_NETWORK_UNREACHABLE", "msg": "The network location cannot be reached. For information about network troubleshooting, see Windows Help."}
a[1232] := {"enum": "ERROR_HOST_UNREACHABLE", "msg": "The network location cannot be reached. For information about network troubleshooting, see Windows Help."}
a[1233] := {"enum": "ERROR_PROTOCOL_UNREACHABLE", "msg": "The network location cannot be reached. For information about network troubleshooting, see Windows Help."}
a[1234] := {"enum": "ERROR_PORT_UNREACHABLE", "msg": "No service is operating at the destination network endpoint on the remote system."}
a[1235] := {"enum": "ERROR_REQUEST_ABORTED", "msg": "The request was aborted."}
a[1236] := {"enum": "ERROR_CONNECTION_ABORTED", "msg": "The network connection was aborted by the local system."}
a[1237] := {"enum": "ERROR_RETRY", "msg": "The operation could not be completed. A retry should be performed."}
a[1238] := {"enum": "ERROR_CONNECTION_COUNT_LIMIT", "msg": "A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached."}
a[1239] := {"enum": "ERROR_LOGIN_TIME_RESTRICTION", "msg": "Attempting to log in during an unauthorized time of day for this account."}
a[1240] := {"enum": "ERROR_LOGIN_WKSTA_RESTRICTION", "msg": "The account is not authorized to log in from this station."}
a[1241] := {"enum": "ERROR_INCORRECT_ADDRESS", "msg": "The network address could not be used for the operation requested."}
a[1242] := {"enum": "ERROR_ALREADY_REGISTERED", "msg": "The service is already registered."}
a[1243] := {"enum": "ERROR_SERVICE_NOT_FOUND", "msg": "The specified service does not exist."}
a[1244] := {"enum": "ERROR_NOT_AUTHENTICATED", "msg": "The operation being requested was not performed because the user has not been authenticated."}
a[1245] := {"enum": "ERROR_NOT_LOGGED_ON", "msg": "The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist."}
a[1246] := {"enum": "ERROR_CONTINUE", "msg": "Continue with work in progress."}
a[1247] := {"enum": "ERROR_ALREADY_INITIALIZED", "msg": "An attempt was made to perform an initialization operation when initialization has already been completed."}
a[1248] := {"enum": "ERROR_NO_MORE_DEVICES", "msg": "No more local devices."}
a[1249] := {"enum": "ERROR_NO_SUCH_SITE", "msg": "The specified site does not exist."}
a[1250] := {"enum": "ERROR_DOMAIN_CONTROLLER_EXISTS", "msg": "A domain controller with the specified name already exists."}
a[1251] := {"enum": "ERROR_ONLY_IF_CONNECTED", "msg": "This operation is supported only when you are connected to the server."}
a[1252] := {"enum": "ERROR_OVERRIDE_NOCHANGES", "msg": "The group policy framework should call the extension even if there are no changes."}
a[1253] := {"enum": "ERROR_BAD_USER_PROFILE", "msg": "The specified user does not have a valid profile."}
a[1254] := {"enum": "ERROR_NOT_SUPPORTED_ON_SBS", "msg": "This operation is not supported on a computer running Windows Server 2003 for Small Business Server."}
a[1255] := {"enum": "ERROR_SERVER_SHUTDOWN_IN_PROGRESS", "msg": "The server machine is shutting down."}
a[1256] := {"enum": "ERROR_HOST_DOWN", "msg": "The remote system is not available. For information about network troubleshooting, see Windows Help."}
a[1257] := {"enum": "ERROR_NON_ACCOUNT_SID", "msg": "The security identifier provided is not from an account domain."}
a[1258] := {"enum": "ERROR_NON_DOMAIN_SID", "msg": "The security identifier provided does not have a domain component."}
a[1259] := {"enum": "ERROR_APPHELP_BLOCK", "msg": "AppHelp dialog canceled thus preventing the application from starting."}
a[1260] := {"enum": "ERROR_ACCESS_DISABLED_BY_POLICY", "msg": "This program is blocked by group policy. For more information, contact your system administrator."}
a[1261] := {"enum": "ERROR_REG_NAT_CONSUMPTION", "msg": "A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific."}
a[1262] := {"enum": "ERROR_CSCSHARE_OFFLINE", "msg": "The share is currently offline or does not exist."}
a[1263] := {"enum": "ERROR_PKINIT_FAILURE", "msg": "The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log."}
a[1264] := {"enum": "ERROR_SMARTCARD_SUBSYSTEM_FAILURE", "msg": "The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem."}
a[1265] := {"enum": "ERROR_DOWNGRADE_DETECTED", "msg": "The system cannot contact a domain controller to service the authentication request. Please try again later."}
a[1271] := {"enum": "ERROR_MACHINE_LOCKED", "msg": "The machine is locked and cannot be shut down without the force option."}
a[1273] := {"enum": "ERROR_CALLBACK_SUPPLIED_INVALID_DATA", "msg": "An application-defined callback gave invalid data when called."}
a[1274] := {"enum": "ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED", "msg": "The group policy framework should call the extension in the synchronous foreground policy refresh."}
a[1275] := {"enum": "ERROR_DRIVER_BLOCKED", "msg": "This driver has been blocked from loading."}
a[1276] := {"enum": "ERROR_INVALID_IMPORT_OF_NON_DLL", "msg": "A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image."}
a[1277] := {"enum": "ERROR_ACCESS_DISABLED_WEBBLADE", "msg": "Windows cannot open this program since it has been disabled."}
a[1278] := {"enum": "ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER", "msg": "Windows cannot open this program because the license enforcement system has been tampered with or become corrupted."}
a[1279] := {"enum": "ERROR_RECOVERY_FAILURE", "msg": "A transaction recover failed."}
a[1280] := {"enum": "ERROR_ALREADY_FIBER", "msg": "The current thread has already been converted to a fiber."}
a[1281] := {"enum": "ERROR_ALREADY_THREAD", "msg": "The current thread has already been converted from a fiber."}
a[1282] := {"enum": "ERROR_STACK_BUFFER_OVERRUN", "msg": "The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application."}
a[1283] := {"enum": "ERROR_PARAMETER_QUOTA_EXCEEDED", "msg": "Data present in one of the parameters is more than the function can operate on."}
a[1284] := {"enum": "ERROR_DEBUGGER_INACTIVE", "msg": "An attempt to do an operation on a debug object failed because the object is in the process of being deleted."}
a[1285] := {"enum": "ERROR_DELAY_LOAD_FAILED", "msg": "An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed."}
a[1286] := {"enum": "ERROR_VDM_DISALLOWED", "msg": "`%1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator."}
a[1287] := {"enum": "ERROR_UNIDENTIFIED_ERROR", "msg": "Insufficient information exists to identify the cause of failure."}
a[1288] := {"enum": "ERROR_INVALID_CRUNTIME_PARAMETER", "msg": "The parameter passed to a C runtime function is incorrect."}
a[1289] := {"enum": "ERROR_BEYOND_VDL", "msg": "The operation occurred beyond the valid data length of the file."}
a[1290] := {"enum": "ERROR_INCOMPATIBLE_SERVICE_SID_TYPE", "msg": "The service start failed since one or more services in the same process have an incompatible service SID type setting. A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type. If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service.`nOn Windows Server 2003 and Windows XP, an unrestricted service cannot coexist in the same process with other services. The service with the unrestricted service SID type must be moved to an owned process in order to start this service."}
a[1291] := {"enum": "ERROR_DRIVER_PROCESS_TERMINATED", "msg": "The process hosting the driver for this device has been terminated."}
a[1292] := {"enum": "ERROR_IMPLEMENTATION_LIMIT", "msg": "An operation attempted to exceed an implementation-defined limit."}
a[1293] := {"enum": "ERROR_PROCESS_IS_PROTECTED", "msg": "Either the target process, or the target thread's containing process, is a protected process."}
a[1294] := {"enum": "ERROR_SERVICE_NOTIFY_CLIENT_LAGGING", "msg": "The service notification client is lagging too far behind the current state of services in the machine."}
a[1295] := {"enum": "ERROR_DISK_QUOTA_EXCEEDED", "msg": "The requested file operation failed because the storage quota was exceeded. To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator."}
a[1296] := {"enum": "ERROR_CONTENT_BLOCKED", "msg": "The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator."}
a[1297] := {"enum": "ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE", "msg": "A privilege that the service requires to function properly does not exist in the service account configuration. You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration."}
a[1298] := {"enum": "ERROR_APP_HANG", "msg": "A thread involved in this operation appears to be unresponsive."}
a[1299] := {"enum": "ERROR_INVALID_LABEL", "msg": "Indicates a particular Security ID may not be assigned as the label of an object."}
a[1300] := {"enum": "ERROR_NOT_ALL_ASSIGNED", "msg": "Not all privileges or groups referenced are assigned to the caller."}
a[1301] := {"enum": "ERROR_SOME_NOT_MAPPED", "msg": "Some mapping between account names and security IDs was not done."}
a[1302] := {"enum": "ERROR_NO_QUOTAS_FOR_ACCOUNT", "msg": "No system quota limits are specifically set for this account."}
a[1303] := {"enum": "ERROR_LOCAL_USER_SESSION_KEY", "msg": "No encryption key is available. A well-known encryption key was returned."}
a[1304] := {"enum": "ERROR_NULL_LM_PASSWORD", "msg": "The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a <strong>NULL</strong> string."}
a[1305] := {"enum": "ERROR_UNKNOWN_REVISION", "msg": "The revision level is unknown."}
a[1306] := {"enum": "ERROR_REVISION_MISMATCH", "msg": "Indicates two revision levels are incompatible."}
a[1307] := {"enum": "ERROR_INVALID_OWNER", "msg": "This security ID may not be assigned as the owner of this object."}
a[1308] := {"enum": "ERROR_INVALID_PRIMARY_GROUP", "msg": "This security ID may not be assigned as the primary group of an object."}
a[1309] := {"enum": "ERROR_NO_IMPERSONATION_TOKEN", "msg": "An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client."}
a[1310] := {"enum": "ERROR_CANT_DISABLE_MANDATORY", "msg": "The group may not be disabled."}
a[1311] := {"enum": "ERROR_NO_LOGON_SERVERS", "msg": "There are currently no logon servers available to service the logon request."}
a[1312] := {"enum": "ERROR_NO_SUCH_LOGON_SESSION", "msg": "A specified logon session does not exist. It may already have been terminated."}
a[1313] := {"enum": "ERROR_NO_SUCH_PRIVILEGE", "msg": "A specified privilege does not exist."}
a[1314] := {"enum": "ERROR_PRIVILEGE_NOT_HELD", "msg": "A required privilege is not held by the client."}
a[1315] := {"enum": "ERROR_INVALID_ACCOUNT_NAME", "msg": "The name provided is not a properly formed account name."}
a[1316] := {"enum": "ERROR_USER_EXISTS", "msg": "The specified account already exists."}
a[1317] := {"enum": "ERROR_NO_SUCH_USER", "msg": "The specified account does not exist."}
a[1318] := {"enum": "ERROR_GROUP_EXISTS", "msg": "The specified group already exists."}
a[1319] := {"enum": "ERROR_NO_SUCH_GROUP", "msg": "The specified group does not exist."}
a[1320] := {"enum": "ERROR_MEMBER_IN_GROUP", "msg": "Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member."}
a[1321] := {"enum": "ERROR_MEMBER_NOT_IN_GROUP", "msg": "The specified user account is not a member of the specified group account."}
a[1322] := {"enum": "ERROR_LAST_ADMIN", "msg": "This operation is disallowed as it could result in an administration account being disabled, deleted or unable to log on."}
a[1323] := {"enum": "ERROR_WRONG_PASSWORD", "msg": "Unable to update the password. The value provided as the current password is incorrect."}
a[1324] := {"enum": "ERROR_ILL_FORMED_PASSWORD", "msg": "Unable to update the password. The value provided for the new password contains values that are not allowed in passwords."}
a[1325] := {"enum": "ERROR_PASSWORD_RESTRICTION", "msg": "Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain."}
a[1326] := {"enum": "ERROR_LOGON_FAILURE", "msg": "The user name or password is incorrect."}
a[1327] := {"enum": "ERROR_ACCOUNT_RESTRICTION", "msg": "Account restrictions are preventing this user from signing in. For example: blank passwords aren't allowed, sign-in times are limited, or a policy restriction has been enforced."}
a[1328] := {"enum": "ERROR_INVALID_LOGON_HOURS", "msg": "Your account has time restrictions that keep you from signing in right now."}
a[1329] := {"enum": "ERROR_INVALID_WORKSTATION", "msg": "This user isn't allowed to sign in to this computer."}
a[1330] := {"enum": "ERROR_PASSWORD_EXPIRED", "msg": "The password for this account has expired."}
a[1331] := {"enum": "ERROR_ACCOUNT_DISABLED", "msg": "This user can't sign in because this account is currently disabled."}
a[1332] := {"enum": "ERROR_NONE_MAPPED", "msg": "No mapping between account names and security IDs was done."}
a[1333] := {"enum": "ERROR_TOO_MANY_LUIDS_REQUESTED", "msg": "Too many local user identifiers (LUIDs) were requested at one time."}
a[1334] := {"enum": "ERROR_LUIDS_EXHAUSTED", "msg": "No more local user identifiers (LUIDs) are available."}
a[1335] := {"enum": "ERROR_INVALID_SUB_AUTHORITY", "msg": "The subauthority part of a security ID is invalid for this particular use."}
a[1336] := {"enum": "ERROR_INVALID_ACL", "msg": "The access control list (ACL) structure is invalid."}
a[1337] := {"enum": "ERROR_INVALID_SID", "msg": "The security ID structure is invalid."}
a[1338] := {"enum": "ERROR_INVALID_SECURITY_DESCR", "msg": "The security descriptor structure is invalid."}
a[1340] := {"enum": "ERROR_BAD_INHERITANCE_ACL", "msg": "The inherited access control list (ACL) or access control entry (ACE) could not be built."}
a[1341] := {"enum": "ERROR_SERVER_DISABLED", "msg": "The server is currently disabled."}
a[1342] := {"enum": "ERROR_SERVER_NOT_DISABLED", "msg": "The server is currently enabled."}
a[1343] := {"enum": "ERROR_INVALID_ID_AUTHORITY", "msg": "The value provided was an invalid value for an identifier authority."}
a[1344] := {"enum": "ERROR_ALLOTTED_SPACE_EXCEEDED", "msg": "No more memory is available for security information updates."}
a[1345] := {"enum": "ERROR_INVALID_GROUP_ATTRIBUTES", "msg": "The specified attributes are invalid, or incompatible with the attributes for the group as a whole."}
a[1346] := {"enum": "ERROR_BAD_IMPERSONATION_LEVEL", "msg": "Either a required impersonation level was not provided, or the provided impersonation level is invalid."}
a[1347] := {"enum": "ERROR_CANT_OPEN_ANONYMOUS", "msg": "Cannot open an anonymous level security token."}
a[1348] := {"enum": "ERROR_BAD_VALIDATION_CLASS", "msg": "The validation information class requested was invalid."}
a[1349] := {"enum": "ERROR_BAD_TOKEN_TYPE", "msg": "The type of the token is inappropriate for its attempted use."}
a[1350] := {"enum": "ERROR_NO_SECURITY_ON_OBJECT", "msg": "Unable to perform a security operation on an object that has no associated security."}
a[1351] := {"enum": "ERROR_CANT_ACCESS_DOMAIN_INFO", "msg": "Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied."}
a[1352] := {"enum": "ERROR_INVALID_SERVER_STATE", "msg": "The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation."}
a[1353] := {"enum": "ERROR_INVALID_DOMAIN_STATE", "msg": "The domain was in the wrong state to perform the security operation."}
a[1354] := {"enum": "ERROR_INVALID_DOMAIN_ROLE", "msg": "This operation is only allowed for the Primary Domain Controller of the domain."}
a[1355] := {"enum": "ERROR_NO_SUCH_DOMAIN", "msg": "The specified domain either does not exist or could not be contacted."}
a[1356] := {"enum": "ERROR_DOMAIN_EXISTS", "msg": "The specified domain already exists."}
a[1357] := {"enum": "ERROR_DOMAIN_LIMIT_EXCEEDED", "msg": "An attempt was made to exceed the limit on the number of domains per server."}
a[1358] := {"enum": "ERROR_INTERNAL_DB_CORRUPTION", "msg": "Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk."}
a[1359] := {"enum": "ERROR_INTERNAL_ERROR", "msg": "An internal error occurred."}
a[1360] := {"enum": "ERROR_GENERIC_NOT_MAPPED", "msg": "Generic access types were contained in an access mask which should already be mapped to nongeneric types."}
a[1361] := {"enum": "ERROR_BAD_DESCRIPTOR_FORMAT", "msg": "A security descriptor is not in the right format (absolute or self-relative)."}
a[1362] := {"enum": "ERROR_NOT_LOGON_PROCESS", "msg": "The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process."}
a[1363] := {"enum": "ERROR_LOGON_SESSION_EXISTS", "msg": "Cannot start a new logon session with an ID that is already in use."}
a[1364] := {"enum": "ERROR_NO_SUCH_PACKAGE", "msg": "A specified authentication package is unknown."}
a[1365] := {"enum": "ERROR_BAD_LOGON_SESSION_STATE", "msg": "The logon session is not in a state that is consistent with the requested operation."}
a[1366] := {"enum": "ERROR_LOGON_SESSION_COLLISION", "msg": "The logon session ID is already in use."}
a[1367] := {"enum": "ERROR_INVALID_LOGON_TYPE", "msg": "A logon request contained an invalid logon type value."}
a[1368] := {"enum": "ERROR_CANNOT_IMPERSONATE", "msg": "Unable to impersonate using a named pipe until data has been read from that pipe."}
a[1369] := {"enum": "ERROR_RXACT_INVALID_STATE", "msg": "The transaction state of a registry subtree is incompatible with the requested operation."}
a[1370] := {"enum": "ERROR_RXACT_COMMIT_FAILURE", "msg": "An internal security database corruption has been encountered."}
a[1371] := {"enum": "ERROR_SPECIAL_ACCOUNT", "msg": "Cannot perform this operation on built-in accounts."}
a[1372] := {"enum": "ERROR_SPECIAL_GROUP", "msg": "Cannot perform this operation on this built-in special group."}
a[1373] := {"enum": "ERROR_SPECIAL_USER", "msg": "Cannot perform this operation on this built-in special user."}
a[1374] := {"enum": "ERROR_MEMBERS_PRIMARY_GROUP", "msg": "The user cannot be removed from a group because the group is currently the user's primary group."}
a[1375] := {"enum": "ERROR_TOKEN_ALREADY_IN_USE", "msg": "The token is already in use as a primary token."}
a[1376] := {"enum": "ERROR_NO_SUCH_ALIAS", "msg": "The specified local group does not exist."}
a[1377] := {"enum": "ERROR_MEMBER_NOT_IN_ALIAS", "msg": "The specified account name is not a member of the group."}
a[1378] := {"enum": "ERROR_MEMBER_IN_ALIAS", "msg": "The specified account name is already a member of the group."}
a[1379] := {"enum": "ERROR_ALIAS_EXISTS", "msg": "The specified local group already exists."}
a[1380] := {"enum": "ERROR_LOGON_NOT_GRANTED", "msg": "Logon failure: the user has not been granted the requested logon type at this computer."}
a[1381] := {"enum": "ERROR_TOO_MANY_SECRETS", "msg": "The maximum number of secrets that may be stored in a single system has been exceeded."}
a[1382] := {"enum": "ERROR_SECRET_TOO_LONG", "msg": "The length of a secret exceeds the maximum length allowed."}
a[1383] := {"enum": "ERROR_INTERNAL_DB_ERROR", "msg": "The local security authority database contains an internal inconsistency."}
a[1384] := {"enum": "ERROR_TOO_MANY_CONTEXT_IDS", "msg": "During a logon attempt, the user's security context accumulated too many security IDs."}
a[1385] := {"enum": "ERROR_LOGON_TYPE_NOT_GRANTED", "msg": "Logon failure: the user has not been granted the requested logon type at this computer."}
a[1386] := {"enum": "ERROR_NT_CROSS_ENCRYPTION_REQUIRED", "msg": "A cross-encrypted password is necessary to change a user password."}
a[1387] := {"enum": "ERROR_NO_SUCH_MEMBER", "msg": "A member could not be added to or removed from the local group because the member does not exist."}
a[1388] := {"enum": "ERROR_INVALID_MEMBER", "msg": "A new member could not be added to a local group because the member has the wrong account type."}
a[1389] := {"enum": "ERROR_TOO_MANY_SIDS", "msg": "Too many security IDs have been specified."}
a[1390] := {"enum": "ERROR_LM_CROSS_ENCRYPTION_REQUIRED", "msg": "A cross-encrypted password is necessary to change this user password."}
a[1391] := {"enum": "ERROR_NO_INHERITANCE", "msg": "Indicates an ACL contains no inheritable components."}
a[1392] := {"enum": "ERROR_FILE_CORRUPT", "msg": "The file or directory is corrupted and unreadable."}
a[1393] := {"enum": "ERROR_DISK_CORRUPT", "msg": "The disk structure is corrupted and unreadable."}
a[1394] := {"enum": "ERROR_NO_USER_SESSION_KEY", "msg": "There is no user session key for the specified logon session."}
a[1395] := {"enum": "ERROR_LICENSE_QUOTA_EXCEEDED", "msg": "The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept."}
a[1396] := {"enum": "ERROR_WRONG_TARGET_NAME", "msg": "The target account name is incorrect."}
a[1397] := {"enum": "ERROR_MUTUAL_AUTH_FAILED", "msg": "Mutual Authentication failed. The server's password is out of date at the domain controller."}
a[1398] := {"enum": "ERROR_TIME_SKEW", "msg": "There is a time and/or date difference between the client and server."}
a[1399] := {"enum": "ERROR_CURRENT_DOMAIN_NOT_ALLOWED", "msg": "This operation cannot be performed on the current domain."}
a[1400] := {"enum": "ERROR_INVALID_WINDOW_HANDLE", "msg": "Invalid window handle."}
a[1401] := {"enum": "ERROR_INVALID_MENU_HANDLE", "msg": "Invalid menu handle."}
a[1402] := {"enum": "ERROR_INVALID_CURSOR_HANDLE", "msg": "Invalid cursor handle."}
a[1403] := {"enum": "ERROR_INVALID_ACCEL_HANDLE", "msg": "Invalid accelerator table handle."}
a[1404] := {"enum": "ERROR_INVALID_HOOK_HANDLE", "msg": "Invalid hook handle."}
a[1405] := {"enum": "ERROR_INVALID_DWP_HANDLE", "msg": "Invalid handle to a multiple-window position structure."}
a[1406] := {"enum": "ERROR_TLW_WITH_WSCHILD", "msg": "Cannot create a top-level child window."}
a[1407] := {"enum": "ERROR_CANNOT_FIND_WND_CLASS", "msg": "Cannot find window class."}
a[1408] := {"enum": "ERROR_WINDOW_OF_OTHER_THREAD", "msg": "Invalid window; it belongs to other thread."}
a[1409] := {"enum": "ERROR_HOTKEY_ALREADY_REGISTERED", "msg": "Hot key is already registered."}
a[1410] := {"enum": "ERROR_CLASS_ALREADY_EXISTS", "msg": "Class already exists."}
a[1411] := {"enum": "ERROR_CLASS_DOES_NOT_EXIST", "msg": "Class does not exist."}
a[1412] := {"enum": "ERROR_CLASS_HAS_WINDOWS", "msg": "Class still has open windows."}
a[1413] := {"enum": "ERROR_INVALID_INDEX", "msg": "Invalid index."}
a[1414] := {"enum": "ERROR_INVALID_ICON_HANDLE", "msg": "Invalid icon handle."}
a[1415] := {"enum": "ERROR_PRIVATE_DIALOG_INDEX", "msg": "Using private DIALOG window words."}
a[1416] := {"enum": "ERROR_LISTBOX_ID_NOT_FOUND", "msg": "The list box identifier was not found."}
a[1417] := {"enum": "ERROR_NO_WILDCARD_CHARACTERS", "msg": "No wildcards were found."}
a[1418] := {"enum": "ERROR_CLIPBOARD_NOT_OPEN", "msg": "Thread does not have a clipboard open."}
a[1419] := {"enum": "ERROR_HOTKEY_NOT_REGISTERED", "msg": "Hot key is not registered."}
a[1420] := {"enum": "ERROR_WINDOW_NOT_DIALOG", "msg": "The window is not a valid dialog window."}
a[1421] := {"enum": "ERROR_CONTROL_ID_NOT_FOUND", "msg": "Control ID not found."}
a[1422] := {"enum": "ERROR_INVALID_COMBOBOX_MESSAGE", "msg": "Invalid message for a combo box because it does not have an edit control."}
a[1423] := {"enum": "ERROR_WINDOW_NOT_COMBOBOX", "msg": "The window is not a combo box."}
a[1424] := {"enum": "ERROR_INVALID_EDIT_HEIGHT", "msg": "Height must be less than 256."}
a[1425] := {"enum": "ERROR_DC_NOT_FOUND", "msg": "Invalid device context (DC) handle."}
a[1426] := {"enum": "ERROR_INVALID_HOOK_FILTER", "msg": "Invalid hook procedure type."}
a[1427] := {"enum": "ERROR_INVALID_FILTER_PROC", "msg": "Invalid hook procedure."}
a[1428] := {"enum": "ERROR_HOOK_NEEDS_HMOD", "msg": "Cannot set nonlocal hook without a module handle."}
a[1429] := {"enum": "ERROR_GLOBAL_ONLY_HOOK", "msg": "This hook procedure can only be set globally."}
a[1430] := {"enum": "ERROR_JOURNAL_HOOK_SET", "msg": "The journal hook procedure is already installed."}
a[1431] := {"enum": "ERROR_HOOK_NOT_INSTALLED", "msg": "The hook procedure is not installed."}
a[1432] := {"enum": "ERROR_INVALID_LB_MESSAGE", "msg": "Invalid message for single-selection list box."}
a[1433] := {"enum": "ERROR_SETCOUNT_ON_BAD_LB", "msg": "LB_SETCOUNT sent to non-lazy list box."}
a[1434] := {"enum": "ERROR_LB_WITHOUT_TABSTOPS", "msg": "This list box does not support tab stops."}
a[1435] := {"enum": "ERROR_DESTROY_OBJECT_OF_OTHER_THREAD", "msg": "Cannot destroy object created by another thread."}
a[1436] := {"enum": "ERROR_CHILD_WINDOW_MENU", "msg": "Child windows cannot have menus."}
a[1437] := {"enum": "ERROR_NO_SYSTEM_MENU", "msg": "The window does not have a system menu."}
a[1438] := {"enum": "ERROR_INVALID_MSGBOX_STYLE", "msg": "Invalid message box style."}
a[1439] := {"enum": "ERROR_INVALID_SPI_VALUE", "msg": "Invalid system-wide (SPI_*) parameter."}
a[1440] := {"enum": "ERROR_SCREEN_ALREADY_LOCKED", "msg": "Screen already locked."}
a[1441] := {"enum": "ERROR_HWNDS_HAVE_DIFF_PARENT", "msg": "All handles to windows in a multiple-window position structure must have the same parent."}
a[1442] := {"enum": "ERROR_NOT_CHILD_WINDOW", "msg": "The window is not a child window."}
a[1443] := {"enum": "ERROR_INVALID_GW_COMMAND", "msg": "Invalid GW_* command."}
a[1444] := {"enum": "ERROR_INVALID_THREAD_ID", "msg": "Invalid thread identifier."}
a[1445] := {"enum": "ERROR_NON_MDICHILD_WINDOW", "msg": "Cannot process a message from a window that is not a multiple document interface (MDI) window."}
a[1446] := {"enum": "ERROR_POPUP_ALREADY_ACTIVE", "msg": "Popup menu already active."}
a[1447] := {"enum": "ERROR_NO_SCROLLBARS", "msg": "The window does not have scroll bars."}
a[1448] := {"enum": "ERROR_INVALID_SCROLLBAR_RANGE", "msg": "Scroll bar range cannot be greater than MAXLONG."}
a[1449] := {"enum": "ERROR_INVALID_SHOWWIN_COMMAND", "msg": "Cannot show or remove the window in the way specified."}
a[1450] := {"enum": "ERROR_NO_SYSTEM_RESOURCES", "msg": "Insufficient system resources exist to complete the requested service."}
a[1451] := {"enum": "ERROR_NONPAGED_SYSTEM_RESOURCES", "msg": "Insufficient system resources exist to complete the requested service."}
a[1452] := {"enum": "ERROR_PAGED_SYSTEM_RESOURCES", "msg": "Insufficient system resources exist to complete the requested service."}
a[1453] := {"enum": "ERROR_WORKING_SET_QUOTA", "msg": "Insufficient quota to complete the requested service."}
a[1454] := {"enum": "ERROR_PAGEFILE_QUOTA", "msg": "Insufficient quota to complete the requested service."}
a[1455] := {"enum": "ERROR_COMMITMENT_LIMIT", "msg": "The paging file is too small for this operation to complete."}
a[1456] := {"enum": "ERROR_MENU_ITEM_NOT_FOUND", "msg": "A menu item was not found."}
a[1457] := {"enum": "ERROR_INVALID_KEYBOARD_HANDLE", "msg": "Invalid keyboard layout handle."}
a[1458] := {"enum": "ERROR_HOOK_TYPE_NOT_ALLOWED", "msg": "Hook type not allowed."}
a[1459] := {"enum": "ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION", "msg": "This operation requires an interactive window station."}
a[1460] := {"enum": "ERROR_TIMEOUT", "msg": "This operation returned because the timeout period expired."}
a[1461] := {"enum": "ERROR_INVALID_MONITOR_HANDLE", "msg": "Invalid monitor handle."}
a[1462] := {"enum": "ERROR_INCORRECT_SIZE", "msg": "Incorrect size argument."}
a[1463] := {"enum": "ERROR_SYMLINK_CLASS_DISABLED", "msg": "The symbolic link cannot be followed because its type is disabled."}
a[1464] := {"enum": "ERROR_SYMLINK_NOT_SUPPORTED", "msg": "This application does not support the current operation on symbolic links."}
a[1465] := {"enum": "ERROR_XML_PARSE_ERROR", "msg": "Windows was unable to parse the requested XML data."}
a[1466] := {"enum": "ERROR_XMLDSIG_ERROR", "msg": "An error was encountered while processing an XML digital signature."}
a[1467] := {"enum": "ERROR_RESTART_APPLICATION", "msg": "This application must be restarted."}
a[1468] := {"enum": "ERROR_WRONG_COMPARTMENT", "msg": "The caller made the connection request in the wrong routing compartment."}
a[1469] := {"enum": "ERROR_AUTHIP_FAILURE", "msg": "There was an AuthIP failure when attempting to connect to the remote host."}
a[1470] := {"enum": "ERROR_NO_NVRAM_RESOURCES", "msg": "Insufficient NVRAM resources exist to complete the requested service. A reboot might be required."}
a[1471] := {"enum": "ERROR_NOT_GUI_PROCESS", "msg": "Unable to finish the requested operation because the specified process is not a GUI process."}
a[1500] := {"enum": "ERROR_EVENTLOG_FILE_CORRUPT", "msg": "The event log file is corrupted."}
a[1501] := {"enum": "ERROR_EVENTLOG_CANT_START", "msg": "No event log file could be opened, so the event logging service did not start."}
a[1502] := {"enum": "ERROR_LOG_FILE_FULL", "msg": "The event log file is full."}
a[1503] := {"enum": "ERROR_EVENTLOG_FILE_CHANGED", "msg": "The event log file has changed between read operations."}
a[1550] := {"enum": "ERROR_INVALID_TASK_NAME", "msg": "The specified task name is invalid."}
a[1551] := {"enum": "ERROR_INVALID_TASK_INDEX", "msg": "The specified task index is invalid."}
a[1552] := {"enum": "ERROR_THREAD_ALREADY_IN_TASK", "msg": "The specified thread is already joining a task."}
a[1601] := {"enum": "ERROR_INSTALL_SERVICE_FAILURE", "msg": "The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance."}
a[1602] := {"enum": "ERROR_INSTALL_USEREXIT", "msg": "User cancelled installation."}
a[1603] := {"enum": "ERROR_INSTALL_FAILURE", "msg": "Fatal error during installation."}
a[1604] := {"enum": "ERROR_INSTALL_SUSPEND", "msg": "Installation suspended, incomplete."}
a[1605] := {"enum": "ERROR_UNKNOWN_PRODUCT", "msg": "This action is only valid for products that are currently installed."}
a[1606] := {"enum": "ERROR_UNKNOWN_FEATURE", "msg": "Feature ID not registered."}
a[1607] := {"enum": "ERROR_UNKNOWN_COMPONENT", "msg": "Component ID not registered."}
a[1608] := {"enum": "ERROR_UNKNOWN_PROPERTY", "msg": "Unknown property."}
a[1609] := {"enum": "ERROR_INVALID_HANDLE_STATE", "msg": "Handle is in an invalid state."}
a[1610] := {"enum": "ERROR_BAD_CONFIGURATION", "msg": "The configuration data for this product is corrupt. Contact your support personnel."}
a[1611] := {"enum": "ERROR_INDEX_ABSENT", "msg": "Component qualifier not present."}
a[1612] := {"enum": "ERROR_INSTALL_SOURCE_ABSENT", "msg": "The installation source for this product is not available. Verify that the source exists and that you can access it."}
a[1613] := {"enum": "ERROR_INSTALL_PACKAGE_VERSION", "msg": "This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service."}
a[1614] := {"enum": "ERROR_PRODUCT_UNINSTALLED", "msg": "Product is uninstalled."}
a[1615] := {"enum": "ERROR_BAD_QUERY_SYNTAX", "msg": "SQL query syntax invalid or unsupported."}
a[1616] := {"enum": "ERROR_INVALID_FIELD", "msg": "Record field does not exist."}
a[1617] := {"enum": "ERROR_DEVICE_REMOVED", "msg": "The device has been removed."}
a[1618] := {"enum": "ERROR_INSTALL_ALREADY_RUNNING", "msg": "Another installation is already in progress. Complete that installation before proceeding with this install."}
a[1619] := {"enum": "ERROR_INSTALL_PACKAGE_OPEN_FAILED", "msg": "This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package."}
a[1620] := {"enum": "ERROR_INSTALL_PACKAGE_INVALID", "msg": "This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package."}
a[1621] := {"enum": "ERROR_INSTALL_UI_FAILURE", "msg": "There was an error starting the Windows Installer service user interface. Contact your support personnel."}
a[1622] := {"enum": "ERROR_INSTALL_LOG_FAILURE", "msg": "Error opening installation log file. Verify that the specified log file location exists and that you can write to it."}
a[1623] := {"enum": "ERROR_INSTALL_LANGUAGE_UNSUPPORTED", "msg": "The language of this installation package is not supported by your system."}
a[1624] := {"enum": "ERROR_INSTALL_TRANSFORM_FAILURE", "msg": "Error applying transforms. Verify that the specified transform paths are valid."}
a[1625] := {"enum": "ERROR_INSTALL_PACKAGE_REJECTED", "msg": "This installation is forbidden by system policy. Contact your system administrator."}
a[1626] := {"enum": "ERROR_FUNCTION_NOT_CALLED", "msg": "Function could not be executed."}
a[1627] := {"enum": "ERROR_FUNCTION_FAILED", "msg": "Function failed during execution."}
a[1628] := {"enum": "ERROR_INVALID_TABLE", "msg": "Invalid or unknown table specified."}
a[1629] := {"enum": "ERROR_DATATYPE_MISMATCH", "msg": "Data supplied is of wrong type."}
a[1630] := {"enum": "ERROR_UNSUPPORTED_TYPE", "msg": "Data of this type is not supported."}