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