|
|
1.1 root 1: /*++ BUILD Version: 0001 // Increment this if a change has global effects
2:
3: Copyright (c) 1991 Microsoft Corporation
4:
5: Module Name:
6:
7: winerror.h
8:
9: Abstract:
10:
11: This file contains the error code definitions for the Win32 API
12: functions.
13:
14: Created:
15:
16: 25-Jan-1991
17:
18: Revision History:
19:
20: Notes:
21:
22: This file is generated by the MC tool from the winerror.msg file.
23:
24: --*/
25:
26: #ifndef _WINERROR_
27: #define _WINERROR_
28:
29:
30: //
31: // Values are 32 bit values layed out as follows:
32: //
33: // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
34: // 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
35: // +---+-+-+-----------------------+-------------------------------+
36: // |Sev|C|R| Facility | Code |
37: // +---+-+-+-----------------------+-------------------------------+
38: //
39: // where
40: //
41: // Sev - is the severity code
42: //
43: // 00 - Success
44: // 01 - Informational
45: // 10 - Warning
46: // 11 - Error
47: //
48: // C - is the Customer code flag
49: //
50: // R - is a reserved bit
51: //
52: // Facility - is the facility code
53: //
54: // Code - is the facility's status code
55: //
56: //
57: // Define the facility codes
58: //
59:
60:
61: //
62: // Define the severity codes
63: //
64:
65:
66: //
67: // MessageId: NO_ERROR
68: //
69: // MessageText:
70: //
71: // NO_ERROR
72: //
73: #define NO_ERROR 0L
74:
75: //
76: // MessageId: ERROR_INVALID_FUNCTION
77: //
78: // MessageText:
79: //
80: // Incorrect function
81: //
82: #define ERROR_INVALID_FUNCTION 1L
83:
84: //
85: // MessageId: ERROR_FILE_NOT_FOUND
86: //
87: // MessageText:
88: //
89: // The system cannot find the file specified.
90: //
91: #define ERROR_FILE_NOT_FOUND 2L
92:
93: //
94: // MessageId: ERROR_PATH_NOT_FOUND
95: //
96: // MessageText:
97: //
98: // The system cannot find the path specified.
99: //
100: #define ERROR_PATH_NOT_FOUND 3L
101:
102: //
103: // MessageId: ERROR_TOO_MANY_OPEN_FILES
104: //
105: // MessageText:
106: //
107: // The system cannot open the file.
108: //
109: #define ERROR_TOO_MANY_OPEN_FILES 4L
110:
111: //
112: // MessageId: ERROR_ACCESS_DENIED
113: //
114: // MessageText:
115: //
116: // Access Denied.
117: //
118: #define ERROR_ACCESS_DENIED 5L
119:
120: //
121: // MessageId: ERROR_INVALID_HANDLE
122: //
123: // MessageText:
124: //
125: // Incorrect internal file identifier.
126: //
127: #define ERROR_INVALID_HANDLE 6L
128:
129: //
130: // MessageId: ERROR_ARENA_TRASHED
131: //
132: // MessageText:
133: //
134: // The storage control blocks were destroyed.
135: //
136: #define ERROR_ARENA_TRASHED 7L
137:
138: //
139: // MessageId: ERROR_NOT_ENOUGH_MEMORY
140: //
141: // MessageText:
142: //
143: // Not enough storage is available to
144: // process this command.
145: //
146: #define ERROR_NOT_ENOUGH_MEMORY 8L
147:
148: //
149: // MessageId: ERROR_INVALID_BLOCK
150: //
151: // MessageText:
152: //
153: // The storage control block address is invalid.
154: //
155: #define ERROR_INVALID_BLOCK 9L
156:
157: //
158: // MessageId: ERROR_BAD_ENVIRONMENT
159: //
160: // MessageText:
161: //
162: // The environment is incorrect.
163: //
164: #define ERROR_BAD_ENVIRONMENT 10L
165:
166: //
167: // MessageId: ERROR_BAD_FORMAT
168: //
169: // MessageText:
170: //
171: // An attempt was made to load a program with an
172: // incorrect format.
173: //
174: #define ERROR_BAD_FORMAT 11L
175:
176: //
177: // MessageId: ERROR_INVALID_ACCESS
178: //
179: // MessageText:
180: //
181: // The access code is invalid.
182: //
183: #define ERROR_INVALID_ACCESS 12L
184:
185: //
186: // MessageId: ERROR_INVALID_DATA
187: //
188: // MessageText:
189: //
190: // The data is invalid.
191: //
192: #define ERROR_INVALID_DATA 13L
193:
194: //
195: // MessageId: ERROR_INVALID_DRIVE
196: //
197: // MessageText:
198: //
199: // The system cannot find the drive specified.
200: //
201: #define ERROR_INVALID_DRIVE 15L
202:
203: //
204: // MessageId: ERROR_CURRENT_DIRECTORY
205: //
206: // MessageText:
207: //
208: // The directory cannot be removed.
209: //
210: #define ERROR_CURRENT_DIRECTORY 16L
211:
212: //
213: // MessageId: ERROR_NOT_SAME_DEVICE
214: //
215: // MessageText:
216: //
217: // The system cannot move the file
218: // to a different disk drive.
219: //
220: #define ERROR_NOT_SAME_DEVICE 17L
221:
222: //
223: // MessageId: ERROR_NO_MORE_FILES
224: //
225: // MessageText:
226: //
227: // There are no more files.
228: //
229: #define ERROR_NO_MORE_FILES 18L
230:
231: //
232: // MessageId: ERROR_WRITE_PROTECT
233: //
234: // MessageText:
235: //
236: // The diskette is write protected.
237: //
238: #define ERROR_WRITE_PROTECT 19L
239:
240: //
241: // MessageId: ERROR_BAD_UNIT
242: //
243: // MessageText:
244: //
245: // The system cannot find the device specified.
246: //
247: #define ERROR_BAD_UNIT 20L
248:
249: //
250: // MessageId: ERROR_NOT_READY
251: //
252: // MessageText:
253: //
254: // The drive is not ready.
255: //
256: #define ERROR_NOT_READY 21L
257:
258: //
259: // MessageId: ERROR_BAD_COMMAND
260: //
261: // MessageText:
262: //
263: // The device does not recognize the command.
264: //
265: #define ERROR_BAD_COMMAND 22L
266:
267: //
268: // MessageId: ERROR_CRC
269: //
270: // MessageText:
271: //
272: // Data error (cyclic redundancy check)
273: //
274: #define ERROR_CRC 23L
275:
276: //
277: // MessageId: ERROR_BAD_LENGTH
278: //
279: // MessageText:
280: //
281: // The program issued a command but the
282: // command length is incorrect.
283: //
284: #define ERROR_BAD_LENGTH 24L
285:
286: //
287: // MessageId: ERROR_SEEK
288: //
289: // MessageText:
290: //
291: // The drive cannot locate a specific
292: // area or track on the disk.
293: //
294: #define ERROR_SEEK 25L
295:
296: //
297: // MessageId: ERROR_NOT_DOS_DISK
298: //
299: // MessageText:
300: //
301: // The specified disk or diskette cannot be accessed.
302: //
303: #define ERROR_NOT_DOS_DISK 26L
304:
305: //
306: // MessageId: ERROR_SECTOR_NOT_FOUND
307: //
308: // MessageText:
309: //
310: // The drive cannot find the sector requested.
311: //
312: #define ERROR_SECTOR_NOT_FOUND 27L
313:
314: //
315: // MessageId: ERROR_OUT_OF_PAPER
316: //
317: // MessageText:
318: //
319: // The printer is out of paper.
320: //
321: #define ERROR_OUT_OF_PAPER 28L
322:
323: //
324: // MessageId: ERROR_WRITE_FAULT
325: //
326: // MessageText:
327: //
328: // The system cannot write to the specified device.
329: //
330: #define ERROR_WRITE_FAULT 29L
331:
332: //
333: // MessageId: ERROR_READ_FAULT
334: //
335: // MessageText:
336: //
337: // The system cannot read from the specified device.
338: //
339: #define ERROR_READ_FAULT 30L
340:
341: //
342: // MessageId: ERROR_GEN_FAILURE
343: //
344: // MessageText:
345: //
346: // A device attached to the system is not functioning.
347: //
348: #define ERROR_GEN_FAILURE 31L
349:
350: //
351: // MessageId: ERROR_SHARING_VIOLATION
352: //
353: // MessageText:
354: //
355: // The process cannot access the file because
356: // it is being used by another process.
357: //
358: #define ERROR_SHARING_VIOLATION 32L
359:
360: //
361: // MessageId: ERROR_LOCK_VIOLATION
362: //
363: // MessageText:
364: //
365: // The process cannot access the file because
366: // another process has locked a portion of the file.
367: //
368: #define ERROR_LOCK_VIOLATION 33L
369:
370: //
371: // MessageId: ERROR_WRONG_DISK
372: //
373: // MessageText:
374: //
375: // The wrong diskette is in the drive.
376: // Insert %2 (Volume Serial Number: %3)
377: // into drive %1.
378: //
379: #define ERROR_WRONG_DISK 34L
380:
381: //
382: // MessageId: ERROR_SHARING_BUFFER_EXCEEDED
383: //
384: // MessageText:
385: //
386: // Too many files opened for sharing.
387: //
388: #define ERROR_SHARING_BUFFER_EXCEEDED 36L
389:
390: //
391: // MessageId: ERROR_HANDLE_EOF
392: //
393: // MessageText:
394: //
395: // Reached End of File.
396: //
397: #define ERROR_HANDLE_EOF 38L
398:
399: //
400: // MessageId: ERROR_HANDLE_DISK_FULL
401: //
402: // MessageText:
403: //
404: // The disk is full.
405: //
406: #define ERROR_HANDLE_DISK_FULL 39L
407:
408: //
409: // MessageId: ERROR_NOT_SUPPORTED
410: //
411: // MessageText:
412: //
413: // The network request is not supported.
414: //
415: #define ERROR_NOT_SUPPORTED 50L
416:
417: //
418: // MessageId: ERROR_REM_NOT_LIST
419: //
420: // MessageText:
421: //
422: // The remote computer is not available.
423: //
424: #define ERROR_REM_NOT_LIST 51L
425:
426: //
427: // MessageId: ERROR_DUP_NAME
428: //
429: // MessageText:
430: //
431: // A duplicate name exists on the network.
432: //
433: #define ERROR_DUP_NAME 52L
434:
435: //
436: // MessageId: ERROR_BAD_NETPATH
437: //
438: // MessageText:
439: //
440: // The network path was not found.
441: //
442: #define ERROR_BAD_NETPATH 53L
443:
444: //
445: // MessageId: ERROR_NETWORK_BUSY
446: //
447: // MessageText:
448: //
449: // The network is busy.
450: //
451: #define ERROR_NETWORK_BUSY 54L
452:
453: //
454: // MessageId: ERROR_DEV_NOT_EXIST
455: //
456: // MessageText:
457: //
458: // The specified network resource is no longer
459: // available.
460: //
461: #define ERROR_DEV_NOT_EXIST 55L
462:
463: //
464: // MessageId: ERROR_TOO_MANY_CMDS
465: //
466: // MessageText:
467: //
468: // The network BIOS command limit has been reached.
469: //
470: #define ERROR_TOO_MANY_CMDS 56L
471:
472: //
473: // MessageId: ERROR_ADAP_HDW_ERR
474: //
475: // MessageText:
476: //
477: // A network adapter hardware error occurred.
478: //
479: #define ERROR_ADAP_HDW_ERR 57L
480:
481: //
482: // MessageId: ERROR_BAD_NET_RESP
483: //
484: // MessageText:
485: //
486: // The specified server cannot perform the requested
487: // operation.
488: //
489: #define ERROR_BAD_NET_RESP 58L
490:
491: //
492: // MessageId: ERROR_UNEXP_NET_ERR
493: //
494: // MessageText:
495: //
496: // An unexpected network error occurred.
497: //
498: #define ERROR_UNEXP_NET_ERR 59L
499:
500: //
501: // MessageId: ERROR_BAD_REM_ADAP
502: //
503: // MessageText:
504: //
505: // The remote adapter is not compatible.
506: //
507: #define ERROR_BAD_REM_ADAP 60L
508:
509: //
510: // MessageId: ERROR_PRINTQ_FULL
511: //
512: // MessageText:
513: //
514: // The printer queue is full.
515: //
516: #define ERROR_PRINTQ_FULL 61L
517:
518: //
519: // MessageId: ERROR_NO_SPOOL_SPACE
520: //
521: // MessageText:
522: //
523: // Space to store the file waiting to be printed is
524: // not available on the server.
525: //
526: #define ERROR_NO_SPOOL_SPACE 62L
527:
528: //
529: // MessageId: ERROR_PRINT_CANCELLED
530: //
531: // MessageText:
532: //
533: // Your file waiting to be printed was deleted.
534: //
535: #define ERROR_PRINT_CANCELLED 63L
536:
537: //
538: // MessageId: ERROR_NETNAME_DELETED
539: //
540: // MessageText:
541: //
542: // The specified network name is no longer available.
543: //
544: #define ERROR_NETNAME_DELETED 64L
545:
546: //
547: // MessageId: ERROR_NETWORK_ACCESS_DENIED
548: //
549: // MessageText:
550: //
551: // Network access is denied.
552: //
553: #define ERROR_NETWORK_ACCESS_DENIED 65L
554:
555: //
556: // MessageId: ERROR_BAD_DEV_TYPE
557: //
558: // MessageText:
559: //
560: // The network resource type is not correct.
561: //
562: #define ERROR_BAD_DEV_TYPE 66L
563:
564: //
565: // MessageId: ERROR_BAD_NET_NAME
566: //
567: // MessageText:
568: //
569: // The network name cannot be found.
570: //
571: #define ERROR_BAD_NET_NAME 67L
572:
573: //
574: // MessageId: ERROR_TOO_MANY_NAMES
575: //
576: // MessageText:
577: //
578: // The name limit for the local computer network
579: // adapter card was exceeded.
580: //
581: #define ERROR_TOO_MANY_NAMES 68L
582:
583: //
584: // MessageId: ERROR_TOO_MANY_SESS
585: //
586: // MessageText:
587: //
588: // The network BIOS session limit was exceeded.
589: //
590: #define ERROR_TOO_MANY_SESS 69L
591:
592: //
593: // MessageId: ERROR_SHARING_PAUSED
594: //
595: // MessageText:
596: //
597: // The remote server has been paused or is in the
598: // process of being started.
599: //
600: #define ERROR_SHARING_PAUSED 70L
601:
602: //
603: // MessageId: ERROR_REQ_NOT_ACCEP
604: //
605: // MessageText:
606: //
607: // The network request was not accepted.
608: //
609: #define ERROR_REQ_NOT_ACCEP 71L
610:
611: //
612: // MessageId: ERROR_REDIR_PAUSED
613: //
614: // MessageText:
615: //
616: // The specified printer or disk device has been paused.
617: //
618: #define ERROR_REDIR_PAUSED 72L
619:
620: //
621: // MessageId: ERROR_FILE_EXISTS
622: //
623: // MessageText:
624: //
625: // The file exists.
626: //
627: #define ERROR_FILE_EXISTS 80L
628:
629: //
630: // MessageId: ERROR_CANNOT_MAKE
631: //
632: // MessageText:
633: //
634: // The directory or file cannot be created.
635: //
636: #define ERROR_CANNOT_MAKE 82L
637:
638: //
639: // MessageId: ERROR_FAIL_I24
640: //
641: // MessageText:
642: //
643: // Fail on INT 24
644: //
645: #define ERROR_FAIL_I24 83L
646:
647: //
648: // MessageId: ERROR_OUT_OF_STRUCTURES
649: //
650: // MessageText:
651: //
652: // Storage to process this request is not available.
653: //
654: #define ERROR_OUT_OF_STRUCTURES 84L
655:
656: //
657: // MessageId: ERROR_ALREADY_ASSIGNED
658: //
659: // MessageText:
660: //
661: // The local device name is already in use.
662: //
663: #define ERROR_ALREADY_ASSIGNED 85L
664:
665: //
666: // MessageId: ERROR_INVALID_PASSWORD
667: //
668: // MessageText:
669: //
670: // The specified network password is not correct.
671: //
672: #define ERROR_INVALID_PASSWORD 86L
673:
674: //
675: // MessageId: ERROR_INVALID_PARAMETER
676: //
677: // MessageText:
678: //
679: // The parameter is incorrect.
680: //
681: #define ERROR_INVALID_PARAMETER 87L
682:
683: //
684: // MessageId: ERROR_NET_WRITE_FAULT
685: //
686: // MessageText:
687: //
688: // A write fault occurred on the network.
689: //
690: #define ERROR_NET_WRITE_FAULT 88L
691:
692: //
693: // MessageId: ERROR_NO_PROC_SLOTS
694: //
695: // MessageText:
696: //
697: // The system cannot start another process at
698: // this time.
699: //
700: #define ERROR_NO_PROC_SLOTS 89L
701:
702: //
703: // MessageId: ERROR_TOO_MANY_SEMAPHORES
704: //
705: // MessageText:
706: //
707: // Cannot create another system semaphore.
708: //
709: #define ERROR_TOO_MANY_SEMAPHORES 100L
710:
711: //
712: // MessageId: ERROR_EXCL_SEM_ALREADY_OWNED
713: //
714: // MessageText:
715: //
716: // The exclusive semaphore is owned by another process.
717: //
718: #define ERROR_EXCL_SEM_ALREADY_OWNED 101L
719:
720: //
721: // MessageId: ERROR_SEM_IS_SET
722: //
723: // MessageText:
724: //
725: // The semaphore is set and cannot be closed.
726: //
727: #define ERROR_SEM_IS_SET 102L
728:
729: //
730: // MessageId: ERROR_TOO_MANY_SEM_REQUESTS
731: //
732: // MessageText:
733: //
734: // The semaphore cannot be set again.
735: //
736: #define ERROR_TOO_MANY_SEM_REQUESTS 103L
737:
738: //
739: // MessageId: ERROR_INVALID_AT_INTERRUPT_TIME
740: //
741: // MessageText:
742: //
743: // Cannot request exclusive semaphores at interrupt time.
744: //
745: #define ERROR_INVALID_AT_INTERRUPT_TIME 104L
746:
747: //
748: // MessageId: ERROR_SEM_OWNER_DIED
749: //
750: // MessageText:
751: //
752: // The previous ownership of this semaphore has ended.
753: //
754: #define ERROR_SEM_OWNER_DIED 105L
755:
756: //
757: // MessageId: ERROR_SEM_USER_LIMIT
758: //
759: // MessageText:
760: //
761: // Insert the diskette for drive %1.
762: //
763: #define ERROR_SEM_USER_LIMIT 106L
764:
765: //
766: // MessageId: ERROR_DISK_CHANGE
767: //
768: // MessageText:
769: //
770: // Program stopped because alternate diskette was not inserted.
771: //
772: #define ERROR_DISK_CHANGE 107L
773:
774: //
775: // MessageId: ERROR_DRIVE_LOCKED
776: //
777: // MessageText:
778: //
779: // The disk is in use or locked by
780: // another process.
781: //
782: #define ERROR_DRIVE_LOCKED 108L
783:
784: //
785: // MessageId: ERROR_BROKEN_PIPE
786: //
787: // MessageText:
788: //
789: // The pipe has been ended.
790: //
791: #define ERROR_BROKEN_PIPE 109L
792:
793: //
794: // MessageId: ERROR_OPEN_FAILED
795: //
796: // MessageText:
797: //
798: // The system cannot open the
799: // device or file specified.
800: //
801: #define ERROR_OPEN_FAILED 110L
802:
803: //
804: // MessageId: ERROR_BUFFER_OVERFLOW
805: //
806: // MessageText:
807: //
808: // The file name is too long.
809: //
810: #define ERROR_BUFFER_OVERFLOW 111L
811:
812: //
813: // MessageId: ERROR_DISK_FULL
814: //
815: // MessageText:
816: //
817: // There is not enough space on the disk.
818: //
819: #define ERROR_DISK_FULL 112L
820:
821: //
822: // MessageId: ERROR_NO_MORE_SEARCH_HANDLES
823: //
824: // MessageText:
825: //
826: // No more internal file identifiers available.
827: //
828: #define ERROR_NO_MORE_SEARCH_HANDLES 113L
829:
830: //
831: // MessageId: ERROR_INVALID_TARGET_HANDLE
832: //
833: // MessageText:
834: //
835: // The target internal file identifier is incorrect.
836: //
837: #define ERROR_INVALID_TARGET_HANDLE 114L
838:
839: //
840: // MessageId: ERROR_INVALID_CATEGORY
841: //
842: // MessageText:
843: //
844: // The IOCTL call made by the application program is
845: // not correct.
846: //
847: #define ERROR_INVALID_CATEGORY 117L
848:
849: //
850: // MessageId: ERROR_INVALID_VERIFY_SWITCH
851: //
852: // MessageText:
853: //
854: // The verify-on-write switch parameter value is not
855: // correct.
856: //
857: #define ERROR_INVALID_VERIFY_SWITCH 118L
858:
859: //
860: // MessageId: ERROR_BAD_DRIVER_LEVEL
861: //
862: // MessageText:
863: //
864: // The system does not support the command requested.
865: //
866: #define ERROR_BAD_DRIVER_LEVEL 119L
867:
868: //
869: // MessageId: ERROR_CALL_NOT_IMPLEMENTED
870: //
871: // MessageText:
872: //
873: // The Application Program Interface (API) entered
874: // will only work in Windows/NT mode.
875: //
876: #define ERROR_CALL_NOT_IMPLEMENTED 120L
877:
878: //
879: // MessageId: ERROR_SEM_TIMEOUT
880: //
881: // MessageText:
882: //
883: // The semaphore timeout period has expired.
884: //
885: #define ERROR_SEM_TIMEOUT 121L
886:
887: //
888: // MessageId: ERROR_INSUFFICIENT_BUFFER
889: //
890: // MessageText:
891: //
892: // The data area passed to a system call is too
893: // small.
894: //
895: #define ERROR_INSUFFICIENT_BUFFER 122L
896:
897: //
898: // MessageId: ERROR_INVALID_NAME
899: //
900: // MessageText:
901: //
902: // A file name or volume label contains an incorrect character.
903: //
904: #define ERROR_INVALID_NAME 123L
905:
906: //
907: // MessageId: ERROR_INVALID_LEVEL
908: //
909: // MessageText:
910: //
911: // The system call level is not correct.
912: //
913: #define ERROR_INVALID_LEVEL 124L
914:
915: //
916: // MessageId: ERROR_NO_VOLUME_LABEL
917: //
918: // MessageText:
919: //
920: // The disk has no volume label.
921: //
922: #define ERROR_NO_VOLUME_LABEL 125L
923:
924: //
925: // MessageId: ERROR_MOD_NOT_FOUND
926: //
927: // MessageText:
928: //
929: // The specified module could not be found.
930: //
931: #define ERROR_MOD_NOT_FOUND 126L
932:
933: //
934: // MessageId: ERROR_PROC_NOT_FOUND
935: //
936: // MessageText:
937: //
938: // The specified procedure could not be found.
939: //
940: #define ERROR_PROC_NOT_FOUND 127L
941:
942: //
943: // MessageId: ERROR_WAIT_NO_CHILDREN
944: //
945: // MessageText:
946: //
947: // There are no child processes to wait for.
948: //
949: #define ERROR_WAIT_NO_CHILDREN 128L
950:
951: //
952: // MessageId: ERROR_CHILD_NOT_COMPLETE
953: //
954: // MessageText:
955: //
956: // The %1 application cannot be run in Windows mode.
957: //
958: #define ERROR_CHILD_NOT_COMPLETE 129L
959:
960: //
961: // MessageId: ERROR_DIRECT_ACCESS_HANDLE
962: //
963: // MessageText:
964: //
965: // BUGBUG - message text missing.
966: //
967: #define ERROR_DIRECT_ACCESS_HANDLE 130L
968:
969: //
970: // MessageId: ERROR_NEGATIVE_SEEK
971: //
972: // MessageText:
973: //
974: // BUGBUG - message text missing.
975: //
976: #define ERROR_NEGATIVE_SEEK 131L
977:
978: //
979: // MessageId: ERROR_SEEK_ON_DEVICE
980: //
981: // MessageText:
982: //
983: // BUGBUG - message text missing.
984: //
985: #define ERROR_SEEK_ON_DEVICE 132L
986:
987: //
988: // MessageId: ERROR_IS_JOIN_TARGET
989: //
990: // MessageText:
991: //
992: // A JOIN or SUBST command
993: // cannot be used for a drive that
994: // contains previously joined drives.
995: //
996: #define ERROR_IS_JOIN_TARGET 133L
997:
998: //
999: // MessageId: ERROR_IS_JOINED
1000: //
1001: // MessageText:
1002: //
1003: // An attempt was made to use a
1004: // JOIN or SUBST command on a drive that has
1005: // already been joined.
1006: //
1007: #define ERROR_IS_JOINED 134L
1008:
1009: //
1010: // MessageId: ERROR_IS_SUBSTED
1011: //
1012: // MessageText:
1013: //
1014: // An attempt was made to use a
1015: // JOIN or SUBST command on a drive that has
1016: // already been substituted.
1017: //
1018: #define ERROR_IS_SUBSTED 135L
1019:
1020: //
1021: // MessageId: ERROR_NOT_JOINED
1022: //
1023: // MessageText:
1024: //
1025: // The system tried to delete
1026: // the JOIN of a drive that is not joined.
1027: //
1028: #define ERROR_NOT_JOINED 136L
1029:
1030: //
1031: // MessageId: ERROR_NOT_SUBSTED
1032: //
1033: // MessageText:
1034: //
1035: // The system tried to delete the
1036: // substitution of a drive that is not substituted.
1037: //
1038: #define ERROR_NOT_SUBSTED 137L
1039:
1040: //
1041: // MessageId: ERROR_JOIN_TO_JOIN
1042: //
1043: // MessageText:
1044: //
1045: // The system tried to join a drive
1046: // to a directory on a joined drive.
1047: //
1048: #define ERROR_JOIN_TO_JOIN 138L
1049:
1050: //
1051: // MessageId: ERROR_SUBST_TO_SUBST
1052: //
1053: // MessageText:
1054: //
1055: // The system tried to substitute a
1056: // drive to a directory on a substituted drive.
1057: //
1058: #define ERROR_SUBST_TO_SUBST 139L
1059:
1060: //
1061: // MessageId: ERROR_JOIN_TO_SUBST
1062: //
1063: // MessageText:
1064: //
1065: // The system tried to join a drive to
1066: // a directory on a substituted drive.
1067: //
1068: #define ERROR_JOIN_TO_SUBST 140L
1069:
1070: //
1071: // MessageId: ERROR_SUBST_TO_JOIN
1072: //
1073: // MessageText:
1074: //
1075: // The system tried to SUBST a drive
1076: // to a directory on a joined drive.
1077: //
1078: #define ERROR_SUBST_TO_JOIN 141L
1079:
1080: //
1081: // MessageId: ERROR_BUSY_DRIVE
1082: //
1083: // MessageText:
1084: //
1085: // The system cannot perform a JOIN or SUBST at this time.
1086: //
1087: #define ERROR_BUSY_DRIVE 142L
1088:
1089: //
1090: // MessageId: ERROR_SAME_DRIVE
1091: //
1092: // MessageText:
1093: //
1094: // The system cannot join or substitute a
1095: // drive to or for a directory on the same drive.
1096: //
1097: #define ERROR_SAME_DRIVE 143L
1098:
1099: //
1100: // MessageId: ERROR_DIR_NOT_ROOT
1101: //
1102: // MessageText:
1103: //
1104: // The directory is not a subdirectory of the root directory.
1105: //
1106: #define ERROR_DIR_NOT_ROOT 144L
1107:
1108: //
1109: // MessageId: ERROR_DIR_NOT_EMPTY
1110: //
1111: // MessageText:
1112: //
1113: // The directory is not empty.
1114: //
1115: #define ERROR_DIR_NOT_EMPTY 145L
1116:
1117: //
1118: // MessageId: ERROR_IS_SUBST_PATH
1119: //
1120: // MessageText:
1121: //
1122: // The path specified is being used in
1123: // a substitute.
1124: //
1125: #define ERROR_IS_SUBST_PATH 146L
1126:
1127: //
1128: // MessageId: ERROR_IS_JOIN_PATH
1129: //
1130: // MessageText:
1131: //
1132: // Not enough resources are available to
1133: // process this command.
1134: //
1135: #define ERROR_IS_JOIN_PATH 147L
1136:
1137: //
1138: // MessageId: ERROR_PATH_BUSY
1139: //
1140: // MessageText:
1141: //
1142: // The path specified cannot be used at this time.
1143: //
1144: #define ERROR_PATH_BUSY 148L
1145:
1146: //
1147: // MessageId: ERROR_IS_SUBST_TARGET
1148: //
1149: // MessageText:
1150: //
1151: // An attempt was made to join
1152: // or substitute a drive for which a directory
1153: // on the drive is the target of a previous
1154: // substitute.
1155: //
1156: #define ERROR_IS_SUBST_TARGET 149L
1157:
1158: //
1159: // MessageId: ERROR_SYSTEM_TRACE
1160: //
1161: // MessageText:
1162: //
1163: // System trace information was not specified in your
1164: // CONFIG.SYS file, or tracing is disallowed.
1165: //
1166: #define ERROR_SYSTEM_TRACE 150L
1167:
1168: //
1169: // MessageId: ERROR_INVALID_EVENT_COUNT
1170: //
1171: // MessageText:
1172: //
1173: // The number of specified semaphore events for
1174: // DosMuxSemWait is not correct.
1175: //
1176: #define ERROR_INVALID_EVENT_COUNT 151L
1177:
1178: //
1179: // MessageId: ERROR_TOO_MANY_MUXWAITERS
1180: //
1181: // MessageText:
1182: //
1183: // DosMuxSemWait did not execute; too many semaphores
1184: // are already set.
1185: //
1186: #define ERROR_TOO_MANY_MUXWAITERS 152L
1187:
1188: //
1189: // MessageId: ERROR_INVALID_LIST_FORMAT
1190: //
1191: // MessageText:
1192: //
1193: // The DosMuxSemWait list is not correct.
1194: //
1195: #define ERROR_INVALID_LIST_FORMAT 153L
1196:
1197: //
1198: // MessageId: ERROR_LABEL_TOO_LONG
1199: //
1200: // MessageText:
1201: //
1202: // The volume label you entered exceeds the
1203: // 11 character limit. The first 11 characters were written
1204: // to disk. Any characters that exceeded the 11 character limit
1205: // were automatically deleted.
1206: //
1207: #define ERROR_LABEL_TOO_LONG 154L
1208:
1209: //
1210: // MessageId: ERROR_TOO_MANY_TCBS
1211: //
1212: // MessageText:
1213: //
1214: // Cannot create another thread.
1215: //
1216: #define ERROR_TOO_MANY_TCBS 155L
1217:
1218: //
1219: // MessageId: ERROR_SIGNAL_REFUSED
1220: //
1221: // MessageText:
1222: //
1223: // The recipient process has refused the signal.
1224: //
1225: #define ERROR_SIGNAL_REFUSED 156L
1226:
1227: //
1228: // MessageId: ERROR_DISCARDED
1229: //
1230: // MessageText:
1231: //
1232: // The segment is already discarded and cannot be locked.
1233: //
1234: #define ERROR_DISCARDED 157L
1235:
1236: //
1237: // MessageId: ERROR_NOT_LOCKED
1238: //
1239: // MessageText:
1240: //
1241: // The segment is already unlocked.
1242: //
1243: #define ERROR_NOT_LOCKED 158L
1244:
1245: //
1246: // MessageId: ERROR_BAD_THREADID_ADDR
1247: //
1248: // MessageText:
1249: //
1250: // The address for the thread ID is not correct.
1251: //
1252: #define ERROR_BAD_THREADID_ADDR 159L
1253:
1254: //
1255: // MessageId: ERROR_BAD_ARGUMENTS
1256: //
1257: // MessageText:
1258: //
1259: // The argument string passed to DosExecPgm is not correct.
1260: //
1261: #define ERROR_BAD_ARGUMENTS 160L
1262:
1263: //
1264: // MessageId: ERROR_BAD_PATHNAME
1265: //
1266: // MessageText:
1267: //
1268: // Invalid path name specified.
1269: //
1270: #define ERROR_BAD_PATHNAME 161L
1271:
1272: //
1273: // MessageId: ERROR_SIGNAL_PENDING
1274: //
1275: // MessageText:
1276: //
1277: // A signal is already pending.
1278: //
1279: #define ERROR_SIGNAL_PENDING 162L
1280:
1281: //
1282: // MessageId: ERROR_MAX_THRDS_REACHED
1283: //
1284: // MessageText:
1285: //
1286: // No more threads can be created in the system.
1287: //
1288: #define ERROR_MAX_THRDS_REACHED 164L
1289:
1290: //
1291: // MessageId: ERROR_LOCK_FAILED
1292: //
1293: // MessageText:
1294: //
1295: // Attempt to lock a region of a file failed.
1296: //
1297: #define ERROR_LOCK_FAILED 167L
1298:
1299: //
1300: // MessageId: ERROR_BUSY
1301: //
1302: // MessageText:
1303: //
1304: // The requested resource is in use.
1305: //
1306: #define ERROR_BUSY 170L
1307:
1308: //
1309: // MessageId: ERROR_INVALID_SEGMENT_NUMBER
1310: //
1311: // MessageText:
1312: //
1313: // The system detected a segment number that was not correct.
1314: //
1315: #define ERROR_INVALID_SEGMENT_NUMBER 180L
1316:
1317: //
1318: // MessageId: ERROR_INVALID_ORDINAL
1319: //
1320: // MessageText:
1321: //
1322: // The operating system cannot run %1.
1323: //
1324: #define ERROR_INVALID_ORDINAL 182L
1325:
1326: //
1327: // MessageId: ERROR_ALREADY_EXISTS
1328: //
1329: // MessageText:
1330: //
1331: // Attempt to create file that already exists.
1332: //
1333: #define ERROR_ALREADY_EXISTS 183L
1334:
1335: //
1336: // MessageId: ERROR_INVALID_FLAG_NUMBER
1337: //
1338: // MessageText:
1339: //
1340: // The flag passed is not correct.
1341: //
1342: #define ERROR_INVALID_FLAG_NUMBER 186L
1343:
1344: //
1345: // MessageId: ERROR_SEM_NOT_FOUND
1346: //
1347: // MessageText:
1348: //
1349: // The specified system semaphore name was not found.
1350: //
1351: #define ERROR_SEM_NOT_FOUND 187L
1352:
1353: //
1354: // MessageId: ERROR_INVALID_STARTING_CODESEG
1355: //
1356: // MessageText:
1357: //
1358: // The operating system cannot run %1.
1359: //
1360: #define ERROR_INVALID_STARTING_CODESEG 188L
1361:
1362: //
1363: // MessageId: ERROR_INVALID_STACKSEG
1364: //
1365: // MessageText:
1366: //
1367: // The operating system cannot run %1.
1368: //
1369: #define ERROR_INVALID_STACKSEG 189L
1370:
1371: //
1372: // MessageId: ERROR_INVALID_MODULETYPE
1373: //
1374: // MessageText:
1375: //
1376: // The operating system cannot run %1.
1377: //
1378: #define ERROR_INVALID_MODULETYPE 190L
1379:
1380: //
1381: // MessageId: ERROR_INVALID_EXE_SIGNATURE
1382: //
1383: // MessageText:
1384: //
1385: // %1 cannot be run in Windows/NT mode.
1386: //
1387: #define ERROR_INVALID_EXE_SIGNATURE 191L
1388:
1389: //
1390: // MessageId: ERROR_EXE_MARKED_INVALID
1391: //
1392: // MessageText:
1393: //
1394: // The operating system cannot run %1.
1395: //
1396: #define ERROR_EXE_MARKED_INVALID 192L
1397:
1398: //
1399: // MessageId: ERROR_BAD_EXE_FORMAT
1400: //
1401: // MessageText:
1402: //
1403: // %1 is not a valid Windows application.
1404: //
1405: #define ERROR_BAD_EXE_FORMAT 193L
1406:
1407: //
1408: // MessageId: ERROR_ITERATED_DATA_EXCEEDS_64k
1409: //
1410: // MessageText:
1411: //
1412: // The operating system cannot run %1.
1413: //
1414: #define ERROR_ITERATED_DATA_EXCEEDS_64k 194L
1415:
1416: //
1417: // MessageId: ERROR_INVALID_MINALLOCSIZE
1418: //
1419: // MessageText:
1420: //
1421: // The operating system cannot run %1.
1422: //
1423: #define ERROR_INVALID_MINALLOCSIZE 195L
1424:
1425: //
1426: // MessageId: ERROR_DYNLINK_FROM_INVALID_RING
1427: //
1428: // MessageText:
1429: //
1430: // The operating system cannot run this
1431: // application program.
1432: //
1433: #define ERROR_DYNLINK_FROM_INVALID_RING 196L
1434:
1435: //
1436: // MessageId: ERROR_IOPL_NOT_ENABLED
1437: //
1438: // MessageText:
1439: //
1440: // The operating system is not presently
1441: // configured to run this application.
1442: //
1443: #define ERROR_IOPL_NOT_ENABLED 197L
1444:
1445: //
1446: // MessageId: ERROR_INVALID_SEGDPL
1447: //
1448: // MessageText:
1449: //
1450: // The operating system cannot run %1.
1451: //
1452: #define ERROR_INVALID_SEGDPL 198L
1453:
1454: //
1455: // MessageId: ERROR_AUTODATASEG_EXCEEDS_64k
1456: //
1457: // MessageText:
1458: //
1459: // The operating system cannot run this
1460: // application program.
1461: //
1462: #define ERROR_AUTODATASEG_EXCEEDS_64k 199L
1463:
1464: //
1465: // MessageId: ERROR_RING2SEG_MUST_BE_MOVABLE
1466: //
1467: // MessageText:
1468: //
1469: // The code segment cannot be greater than or equal to 64KB.
1470: //
1471: #define ERROR_RING2SEG_MUST_BE_MOVABLE 200L
1472:
1473: //
1474: // MessageId: ERROR_RELOC_CHAIN_XEEDS_SEGLIM
1475: //
1476: // MessageText:
1477: //
1478: // The operating system cannot run %1.
1479: //
1480: #define ERROR_RELOC_CHAIN_XEEDS_SEGLIM 201L
1481:
1482: //
1483: // MessageId: ERROR_INFLOOP_IN_RELOC_CHAIN
1484: //
1485: // MessageText:
1486: //
1487: // The operating system cannot run %1.
1488: //
1489: #define ERROR_INFLOOP_IN_RELOC_CHAIN 202L
1490:
1491: //
1492: // MessageId: ERROR_ENVVAR_NOT_FOUND
1493: //
1494: // MessageText:
1495: //
1496: // The system could not find the environment
1497: // option that was entered.
1498: //
1499: #define ERROR_ENVVAR_NOT_FOUND 203L
1500:
1501: //
1502: // MessageId: ERROR_NO_SIGNAL_SENT
1503: //
1504: // MessageText:
1505: //
1506: // No process in the command subtree has a
1507: // signal handler.
1508: //
1509: #define ERROR_NO_SIGNAL_SENT 205L
1510:
1511: //
1512: // MessageId: ERROR_FILENAME_EXCED_RANGE
1513: //
1514: // MessageText:
1515: //
1516: // The file name or extension is too long.
1517: //
1518: #define ERROR_FILENAME_EXCED_RANGE 206L
1519:
1520: //
1521: // MessageId: ERROR_RING2_STACK_IN_USE
1522: //
1523: // MessageText:
1524: //
1525: // The ring 2 stack is in use.
1526: //
1527: #define ERROR_RING2_STACK_IN_USE 207L
1528:
1529: //
1530: // MessageId: ERROR_META_EXPANSION_TOO_LONG
1531: //
1532: // MessageText:
1533: //
1534: // The global file name characters, * or ? are entered
1535: // incorrectly or too many global file name characters are specified.
1536: //
1537: #define ERROR_META_EXPANSION_TOO_LONG 208L
1538:
1539: //
1540: // MessageId: ERROR_INVALID_SIGNAL_NUMBER
1541: //
1542: // MessageText:
1543: //
1544: // The signal being posted is not correct.
1545: //
1546: #define ERROR_INVALID_SIGNAL_NUMBER 209L
1547:
1548: //
1549: // MessageId: ERROR_THREAD_1_INACTIVE
1550: //
1551: // MessageText:
1552: //
1553: // The signal handler cannot be set.
1554: //
1555: #define ERROR_THREAD_1_INACTIVE 210L
1556:
1557: //
1558: // MessageId: ERROR_LOCKED
1559: //
1560: // MessageText:
1561: //
1562: // The segment is locked and cannot be reallocated.
1563: //
1564: #define ERROR_LOCKED 212L
1565:
1566: //
1567: // MessageId: ERROR_TOO_MANY_MODULES
1568: //
1569: // MessageText:
1570: //
1571: // Too many dynamic link modules are attached to this
1572: // program or dynamic link module.
1573: //
1574: #define ERROR_TOO_MANY_MODULES 214L
1575:
1576: //
1577: // MessageId: ERROR_NESTING_NOT_ALLOWED
1578: //
1579: // MessageText:
1580: //
1581: // Can't nest calls to LoadModule.
1582: //
1583: #define ERROR_NESTING_NOT_ALLOWED 215L
1584:
1585: //
1586: // MessageId: ERROR_BAD_PIPE
1587: //
1588: // MessageText:
1589: //
1590: // Invalid pipe state.
1591: //
1592: #define ERROR_BAD_PIPE 230L
1593:
1594: //
1595: // MessageId: ERROR_PIPE_BUSY
1596: //
1597: // MessageText:
1598: //
1599: // All pipe instances busy.
1600: //
1601: #define ERROR_PIPE_BUSY 231L
1602:
1603: //
1604: // MessageId: ERROR_NO_DATA
1605: //
1606: // MessageText:
1607: //
1608: // Pipe close in progress.
1609: //
1610: #define ERROR_NO_DATA 232L
1611:
1612: //
1613: // MessageId: ERROR_PIPE_NOT_CONNECTED
1614: //
1615: // MessageText:
1616: //
1617: // No process on other end of pipe.
1618: //
1619: #define ERROR_PIPE_NOT_CONNECTED 233L
1620:
1621: //
1622: // MessageId: ERROR_MORE_DATA
1623: //
1624: // MessageText:
1625: //
1626: // More data is available.
1627: //
1628: #define ERROR_MORE_DATA 234L
1629:
1630: //
1631: // MessageId: ERROR_VC_DISCONNECTED
1632: //
1633: // MessageText:
1634: //
1635: // The session was cancelled.
1636: //
1637: #define ERROR_VC_DISCONNECTED 240L
1638:
1639: //
1640: // MessageId: ERROR_INVALID_EA_NAME
1641: //
1642: // MessageText:
1643: //
1644: // The specified EA name was invalid.
1645: //
1646: #define ERROR_INVALID_EA_NAME 254L
1647:
1648: //
1649: // MessageId: ERROR_EA_LIST_INCONSISTENT
1650: //
1651: // MessageText:
1652: //
1653: // The EAs are inconsistent.
1654: //
1655: #define ERROR_EA_LIST_INCONSISTENT 255L
1656:
1657: //
1658: // MessageId: ERROR_NO_MORE_ITEMS
1659: //
1660: // MessageText:
1661: //
1662: // No more data is available.
1663: //
1664: #define ERROR_NO_MORE_ITEMS 259L
1665:
1666: //
1667: // MessageId: ERROR_DIRECTORY
1668: //
1669: // MessageText:
1670: //
1671: // Invalid directory name.
1672: //
1673: #define ERROR_DIRECTORY 267L
1674:
1675: //
1676: // MessageId: ERROR_EAS_DIDNT_FIT
1677: //
1678: // MessageText:
1679: //
1680: // The EAs did not fit in the buffer.
1681: //
1682: #define ERROR_EAS_DIDNT_FIT 275L
1683:
1684: //
1685: // MessageId: ERROR_EAS_NOT_SUPPORTED
1686: //
1687: // MessageText:
1688: //
1689: // The mounted file system does not support extended attributes.
1690: //
1691: #define ERROR_EAS_NOT_SUPPORTED 282L
1692:
1693: //
1694: // MessageId: ERROR_NOT_OWNER
1695: //
1696: // MessageText:
1697: //
1698: // Attempt to release mutex not owned by caller.
1699: //
1700: #define ERROR_NOT_OWNER 288L
1701:
1702: //
1703: // MessageId: ERROR_TOO_MANY_POSTS
1704: //
1705: // MessageText:
1706: //
1707: // Too many posts were made to a semaphore.
1708: //
1709: #define ERROR_TOO_MANY_POSTS 298L
1710:
1711: //
1712: // MessageId: ERROR_MR_MID_NOT_FOUND
1713: //
1714: // MessageText:
1715: //
1716: // The system cannot find message for message number 0x%1
1717: // in message file for %2.
1718: //
1719: #define ERROR_MR_MID_NOT_FOUND 317L
1720:
1721: //
1722: // MessageId: ERROR_INVALID_ADDRESS
1723: //
1724: // MessageText:
1725: //
1726: // Attempt to access invalid address.
1727: //
1728: #define ERROR_INVALID_ADDRESS 487L
1729:
1730: //
1731: // MessageId: ERROR_ARITHMETIC_OVERFLOW
1732: //
1733: // MessageText:
1734: //
1735: // Arithmatic result exceeded 32-bits.
1736: //
1737: #define ERROR_ARITHMETIC_OVERFLOW 534L
1738:
1739: //
1740: // MessageId: ERROR_PIPE_CONNECTED
1741: //
1742: // MessageText:
1743: //
1744: // There is a process on other end of the pipe.
1745: //
1746: #define ERROR_PIPE_CONNECTED 535L
1747:
1748: //
1749: // MessageId: ERROR_PIPE_LISTENING
1750: //
1751: // MessageText:
1752: //
1753: // Waiting for a process to open the other end of the pipe.
1754: //
1755: #define ERROR_PIPE_LISTENING 536L
1756:
1757: //
1758: // MessageId: ERROR_EA_ACCESS_DENIED
1759: //
1760: // MessageText:
1761: //
1762: // Access to the EA was denied.
1763: //
1764: #define ERROR_EA_ACCESS_DENIED 994L
1765:
1766: //
1767: // MessageId: ERROR_OPERATION_ABORTED
1768: //
1769: // MessageText:
1770: //
1771: // The IO operation has been aborted due to either thread exit
1772: // or application request.
1773: //
1774: #define ERROR_OPERATION_ABORTED 995L
1775:
1776: //
1777: // MessageId: ERROR_IO_INCOMPLETE
1778: //
1779: // MessageText:
1780: //
1781: // Overlapped IO event not in signalled state.
1782: //
1783: #define ERROR_IO_INCOMPLETE 996L
1784:
1785: //
1786: // MessageId: ERROR_IO_PENDING
1787: //
1788: // MessageText:
1789: //
1790: // Overlapped IO operation in progress.
1791: //
1792: #define ERROR_IO_PENDING 997L
1793:
1794: //
1795: // MessageId: ERROR_NOACCESS
1796: //
1797: // MessageText:
1798: //
1799: // Invalid access to memory location.
1800: //
1801: #define ERROR_NOACCESS 998L
1802:
1803: //
1804: // MessageId: ERROR_SWAPERROR
1805: //
1806: // MessageText:
1807: //
1808: // Error accessing paging file.
1809: //
1810: #define ERROR_SWAPERROR 999L
1811:
1812: #endif // _WINERROR_
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.