|
|
1.1 root 1: /*++ BUILD Version: 0001 // Increment this if a change has global effects
2:
1.1.1.2 root 3: Copyright (c) 1991-1992 Microsoft Corporation
1.1 root 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: //
1.1.1.2 root 73: #define NO_ERROR 0L // dderror
74:
75: //
76: // MessageId: ERROR_SUCCESS
77: //
78: // MessageText:
79: //
80: // The configuration registry database operation completed successfully.
81: //
82: #define ERROR_SUCCESS 0L
1.1 root 83:
84: //
85: // MessageId: ERROR_INVALID_FUNCTION
86: //
87: // MessageText:
88: //
89: // Incorrect function
90: //
1.1.1.2 root 91: #define ERROR_INVALID_FUNCTION 1L // dderror
1.1 root 92:
93: //
94: // MessageId: ERROR_FILE_NOT_FOUND
95: //
96: // MessageText:
97: //
98: // The system cannot find the file specified.
99: //
100: #define ERROR_FILE_NOT_FOUND 2L
101:
102: //
103: // MessageId: ERROR_PATH_NOT_FOUND
104: //
105: // MessageText:
106: //
107: // The system cannot find the path specified.
108: //
109: #define ERROR_PATH_NOT_FOUND 3L
110:
111: //
112: // MessageId: ERROR_TOO_MANY_OPEN_FILES
113: //
114: // MessageText:
115: //
116: // The system cannot open the file.
117: //
118: #define ERROR_TOO_MANY_OPEN_FILES 4L
119:
120: //
121: // MessageId: ERROR_ACCESS_DENIED
122: //
123: // MessageText:
124: //
125: // Access Denied.
126: //
127: #define ERROR_ACCESS_DENIED 5L
128:
129: //
130: // MessageId: ERROR_INVALID_HANDLE
131: //
132: // MessageText:
133: //
1.1.1.3 ! root 134: // The handle is invalid.
1.1 root 135: //
136: #define ERROR_INVALID_HANDLE 6L
137:
138: //
139: // MessageId: ERROR_ARENA_TRASHED
140: //
141: // MessageText:
142: //
143: // The storage control blocks were destroyed.
144: //
145: #define ERROR_ARENA_TRASHED 7L
146:
147: //
148: // MessageId: ERROR_NOT_ENOUGH_MEMORY
149: //
150: // MessageText:
151: //
152: // Not enough storage is available to
153: // process this command.
154: //
1.1.1.2 root 155: #define ERROR_NOT_ENOUGH_MEMORY 8L // dderror
1.1 root 156:
157: //
158: // MessageId: ERROR_INVALID_BLOCK
159: //
160: // MessageText:
161: //
162: // The storage control block address is invalid.
163: //
164: #define ERROR_INVALID_BLOCK 9L
165:
166: //
167: // MessageId: ERROR_BAD_ENVIRONMENT
168: //
169: // MessageText:
170: //
171: // The environment is incorrect.
172: //
173: #define ERROR_BAD_ENVIRONMENT 10L
174:
175: //
176: // MessageId: ERROR_BAD_FORMAT
177: //
178: // MessageText:
179: //
180: // An attempt was made to load a program with an
181: // incorrect format.
182: //
183: #define ERROR_BAD_FORMAT 11L
184:
185: //
186: // MessageId: ERROR_INVALID_ACCESS
187: //
188: // MessageText:
189: //
190: // The access code is invalid.
191: //
192: #define ERROR_INVALID_ACCESS 12L
193:
194: //
195: // MessageId: ERROR_INVALID_DATA
196: //
197: // MessageText:
198: //
199: // The data is invalid.
200: //
201: #define ERROR_INVALID_DATA 13L
202:
203: //
1.1.1.2 root 204: // MessageId: ERROR_OUTOFMEMORY
205: //
206: // MessageText:
207: //
208: // Not enough storage is available to complete this operation.
209: //
210: #define ERROR_OUTOFMEMORY 14L
211:
212: //
1.1 root 213: // MessageId: ERROR_INVALID_DRIVE
214: //
215: // MessageText:
216: //
217: // The system cannot find the drive specified.
218: //
219: #define ERROR_INVALID_DRIVE 15L
220:
221: //
222: // MessageId: ERROR_CURRENT_DIRECTORY
223: //
224: // MessageText:
225: //
226: // The directory cannot be removed.
227: //
228: #define ERROR_CURRENT_DIRECTORY 16L
229:
230: //
231: // MessageId: ERROR_NOT_SAME_DEVICE
232: //
233: // MessageText:
234: //
235: // The system cannot move the file
236: // to a different disk drive.
237: //
238: #define ERROR_NOT_SAME_DEVICE 17L
239:
240: //
241: // MessageId: ERROR_NO_MORE_FILES
242: //
243: // MessageText:
244: //
245: // There are no more files.
246: //
247: #define ERROR_NO_MORE_FILES 18L
248:
249: //
250: // MessageId: ERROR_WRITE_PROTECT
251: //
252: // MessageText:
253: //
254: // The diskette is write protected.
255: //
256: #define ERROR_WRITE_PROTECT 19L
257:
258: //
259: // MessageId: ERROR_BAD_UNIT
260: //
261: // MessageText:
262: //
263: // The system cannot find the device specified.
264: //
265: #define ERROR_BAD_UNIT 20L
266:
267: //
268: // MessageId: ERROR_NOT_READY
269: //
270: // MessageText:
271: //
272: // The drive is not ready.
273: //
274: #define ERROR_NOT_READY 21L
275:
276: //
277: // MessageId: ERROR_BAD_COMMAND
278: //
279: // MessageText:
280: //
281: // The device does not recognize the command.
282: //
283: #define ERROR_BAD_COMMAND 22L
284:
285: //
286: // MessageId: ERROR_CRC
287: //
288: // MessageText:
289: //
290: // Data error (cyclic redundancy check)
291: //
292: #define ERROR_CRC 23L
293:
294: //
295: // MessageId: ERROR_BAD_LENGTH
296: //
297: // MessageText:
298: //
299: // The program issued a command but the
300: // command length is incorrect.
301: //
302: #define ERROR_BAD_LENGTH 24L
303:
304: //
305: // MessageId: ERROR_SEEK
306: //
307: // MessageText:
308: //
309: // The drive cannot locate a specific
310: // area or track on the disk.
311: //
312: #define ERROR_SEEK 25L
313:
314: //
315: // MessageId: ERROR_NOT_DOS_DISK
316: //
317: // MessageText:
318: //
319: // The specified disk or diskette cannot be accessed.
320: //
321: #define ERROR_NOT_DOS_DISK 26L
322:
323: //
324: // MessageId: ERROR_SECTOR_NOT_FOUND
325: //
326: // MessageText:
327: //
328: // The drive cannot find the sector requested.
329: //
330: #define ERROR_SECTOR_NOT_FOUND 27L
331:
332: //
333: // MessageId: ERROR_OUT_OF_PAPER
334: //
335: // MessageText:
336: //
337: // The printer is out of paper.
338: //
339: #define ERROR_OUT_OF_PAPER 28L
340:
341: //
342: // MessageId: ERROR_WRITE_FAULT
343: //
344: // MessageText:
345: //
346: // The system cannot write to the specified device.
347: //
348: #define ERROR_WRITE_FAULT 29L
349:
350: //
351: // MessageId: ERROR_READ_FAULT
352: //
353: // MessageText:
354: //
355: // The system cannot read from the specified device.
356: //
357: #define ERROR_READ_FAULT 30L
358:
359: //
360: // MessageId: ERROR_GEN_FAILURE
361: //
362: // MessageText:
363: //
364: // A device attached to the system is not functioning.
365: //
366: #define ERROR_GEN_FAILURE 31L
367:
368: //
369: // MessageId: ERROR_SHARING_VIOLATION
370: //
371: // MessageText:
372: //
373: // The process cannot access the file because
374: // it is being used by another process.
375: //
376: #define ERROR_SHARING_VIOLATION 32L
377:
378: //
379: // MessageId: ERROR_LOCK_VIOLATION
380: //
381: // MessageText:
382: //
383: // The process cannot access the file because
384: // another process has locked a portion of the file.
385: //
386: #define ERROR_LOCK_VIOLATION 33L
387:
388: //
389: // MessageId: ERROR_WRONG_DISK
390: //
391: // MessageText:
392: //
393: // The wrong diskette is in the drive.
394: // Insert %2 (Volume Serial Number: %3)
395: // into drive %1.
396: //
397: #define ERROR_WRONG_DISK 34L
398:
399: //
400: // MessageId: ERROR_SHARING_BUFFER_EXCEEDED
401: //
402: // MessageText:
403: //
404: // Too many files opened for sharing.
405: //
406: #define ERROR_SHARING_BUFFER_EXCEEDED 36L
407:
408: //
409: // MessageId: ERROR_HANDLE_EOF
410: //
411: // MessageText:
412: //
413: // Reached End of File.
414: //
415: #define ERROR_HANDLE_EOF 38L
416:
417: //
418: // MessageId: ERROR_HANDLE_DISK_FULL
419: //
420: // MessageText:
421: //
422: // The disk is full.
423: //
424: #define ERROR_HANDLE_DISK_FULL 39L
425:
426: //
427: // MessageId: ERROR_NOT_SUPPORTED
428: //
429: // MessageText:
430: //
431: // The network request is not supported.
432: //
433: #define ERROR_NOT_SUPPORTED 50L
434:
435: //
436: // MessageId: ERROR_REM_NOT_LIST
437: //
438: // MessageText:
439: //
440: // The remote computer is not available.
441: //
442: #define ERROR_REM_NOT_LIST 51L
443:
444: //
445: // MessageId: ERROR_DUP_NAME
446: //
447: // MessageText:
448: //
449: // A duplicate name exists on the network.
450: //
451: #define ERROR_DUP_NAME 52L
452:
453: //
454: // MessageId: ERROR_BAD_NETPATH
455: //
456: // MessageText:
457: //
458: // The network path was not found.
459: //
460: #define ERROR_BAD_NETPATH 53L
461:
462: //
463: // MessageId: ERROR_NETWORK_BUSY
464: //
465: // MessageText:
466: //
467: // The network is busy.
468: //
469: #define ERROR_NETWORK_BUSY 54L
470:
471: //
472: // MessageId: ERROR_DEV_NOT_EXIST
473: //
474: // MessageText:
475: //
476: // The specified network resource is no longer
477: // available.
478: //
479: #define ERROR_DEV_NOT_EXIST 55L
480:
481: //
482: // MessageId: ERROR_TOO_MANY_CMDS
483: //
484: // MessageText:
485: //
486: // The network BIOS command limit has been reached.
487: //
488: #define ERROR_TOO_MANY_CMDS 56L
489:
490: //
491: // MessageId: ERROR_ADAP_HDW_ERR
492: //
493: // MessageText:
494: //
495: // A network adapter hardware error occurred.
496: //
497: #define ERROR_ADAP_HDW_ERR 57L
498:
499: //
500: // MessageId: ERROR_BAD_NET_RESP
501: //
502: // MessageText:
503: //
504: // The specified server cannot perform the requested
505: // operation.
506: //
507: #define ERROR_BAD_NET_RESP 58L
508:
509: //
510: // MessageId: ERROR_UNEXP_NET_ERR
511: //
512: // MessageText:
513: //
514: // An unexpected network error occurred.
515: //
516: #define ERROR_UNEXP_NET_ERR 59L
517:
518: //
519: // MessageId: ERROR_BAD_REM_ADAP
520: //
521: // MessageText:
522: //
523: // The remote adapter is not compatible.
524: //
525: #define ERROR_BAD_REM_ADAP 60L
526:
527: //
528: // MessageId: ERROR_PRINTQ_FULL
529: //
530: // MessageText:
531: //
532: // The printer queue is full.
533: //
534: #define ERROR_PRINTQ_FULL 61L
535:
536: //
537: // MessageId: ERROR_NO_SPOOL_SPACE
538: //
539: // MessageText:
540: //
541: // Space to store the file waiting to be printed is
542: // not available on the server.
543: //
544: #define ERROR_NO_SPOOL_SPACE 62L
545:
546: //
547: // MessageId: ERROR_PRINT_CANCELLED
548: //
549: // MessageText:
550: //
551: // Your file waiting to be printed was deleted.
552: //
553: #define ERROR_PRINT_CANCELLED 63L
554:
555: //
556: // MessageId: ERROR_NETNAME_DELETED
557: //
558: // MessageText:
559: //
560: // The specified network name is no longer available.
561: //
562: #define ERROR_NETNAME_DELETED 64L
563:
564: //
565: // MessageId: ERROR_NETWORK_ACCESS_DENIED
566: //
567: // MessageText:
568: //
569: // Network access is denied.
570: //
571: #define ERROR_NETWORK_ACCESS_DENIED 65L
572:
573: //
574: // MessageId: ERROR_BAD_DEV_TYPE
575: //
576: // MessageText:
577: //
578: // The network resource type is not correct.
579: //
580: #define ERROR_BAD_DEV_TYPE 66L
581:
582: //
583: // MessageId: ERROR_BAD_NET_NAME
584: //
585: // MessageText:
586: //
587: // The network name cannot be found.
588: //
589: #define ERROR_BAD_NET_NAME 67L
590:
591: //
592: // MessageId: ERROR_TOO_MANY_NAMES
593: //
594: // MessageText:
595: //
596: // The name limit for the local computer network
597: // adapter card was exceeded.
598: //
599: #define ERROR_TOO_MANY_NAMES 68L
600:
601: //
602: // MessageId: ERROR_TOO_MANY_SESS
603: //
604: // MessageText:
605: //
606: // The network BIOS session limit was exceeded.
607: //
608: #define ERROR_TOO_MANY_SESS 69L
609:
610: //
611: // MessageId: ERROR_SHARING_PAUSED
612: //
613: // MessageText:
614: //
615: // The remote server has been paused or is in the
616: // process of being started.
617: //
618: #define ERROR_SHARING_PAUSED 70L
619:
620: //
621: // MessageId: ERROR_REQ_NOT_ACCEP
622: //
623: // MessageText:
624: //
625: // The network request was not accepted.
626: //
627: #define ERROR_REQ_NOT_ACCEP 71L
628:
629: //
630: // MessageId: ERROR_REDIR_PAUSED
631: //
632: // MessageText:
633: //
634: // The specified printer or disk device has been paused.
635: //
636: #define ERROR_REDIR_PAUSED 72L
637:
638: //
639: // MessageId: ERROR_FILE_EXISTS
640: //
641: // MessageText:
642: //
643: // The file exists.
644: //
645: #define ERROR_FILE_EXISTS 80L
646:
647: //
648: // MessageId: ERROR_CANNOT_MAKE
649: //
650: // MessageText:
651: //
652: // The directory or file cannot be created.
653: //
654: #define ERROR_CANNOT_MAKE 82L
655:
656: //
657: // MessageId: ERROR_FAIL_I24
658: //
659: // MessageText:
660: //
661: // Fail on INT 24
662: //
663: #define ERROR_FAIL_I24 83L
664:
665: //
666: // MessageId: ERROR_OUT_OF_STRUCTURES
667: //
668: // MessageText:
669: //
670: // Storage to process this request is not available.
671: //
672: #define ERROR_OUT_OF_STRUCTURES 84L
673:
674: //
675: // MessageId: ERROR_ALREADY_ASSIGNED
676: //
677: // MessageText:
678: //
679: // The local device name is already in use.
680: //
681: #define ERROR_ALREADY_ASSIGNED 85L
682:
683: //
684: // MessageId: ERROR_INVALID_PASSWORD
685: //
686: // MessageText:
687: //
688: // The specified network password is not correct.
689: //
690: #define ERROR_INVALID_PASSWORD 86L
691:
692: //
693: // MessageId: ERROR_INVALID_PARAMETER
694: //
695: // MessageText:
696: //
697: // The parameter is incorrect.
698: //
1.1.1.2 root 699: #define ERROR_INVALID_PARAMETER 87L // dderror
1.1 root 700:
701: //
702: // MessageId: ERROR_NET_WRITE_FAULT
703: //
704: // MessageText:
705: //
706: // A write fault occurred on the network.
707: //
708: #define ERROR_NET_WRITE_FAULT 88L
709:
710: //
711: // MessageId: ERROR_NO_PROC_SLOTS
712: //
713: // MessageText:
714: //
715: // The system cannot start another process at
716: // this time.
717: //
718: #define ERROR_NO_PROC_SLOTS 89L
719:
720: //
721: // MessageId: ERROR_TOO_MANY_SEMAPHORES
722: //
723: // MessageText:
724: //
725: // Cannot create another system semaphore.
726: //
727: #define ERROR_TOO_MANY_SEMAPHORES 100L
728:
729: //
730: // MessageId: ERROR_EXCL_SEM_ALREADY_OWNED
731: //
732: // MessageText:
733: //
734: // The exclusive semaphore is owned by another process.
735: //
736: #define ERROR_EXCL_SEM_ALREADY_OWNED 101L
737:
738: //
739: // MessageId: ERROR_SEM_IS_SET
740: //
741: // MessageText:
742: //
743: // The semaphore is set and cannot be closed.
744: //
745: #define ERROR_SEM_IS_SET 102L
746:
747: //
748: // MessageId: ERROR_TOO_MANY_SEM_REQUESTS
749: //
750: // MessageText:
751: //
752: // The semaphore cannot be set again.
753: //
754: #define ERROR_TOO_MANY_SEM_REQUESTS 103L
755:
756: //
757: // MessageId: ERROR_INVALID_AT_INTERRUPT_TIME
758: //
759: // MessageText:
760: //
761: // Cannot request exclusive semaphores at interrupt time.
762: //
763: #define ERROR_INVALID_AT_INTERRUPT_TIME 104L
764:
765: //
766: // MessageId: ERROR_SEM_OWNER_DIED
767: //
768: // MessageText:
769: //
770: // The previous ownership of this semaphore has ended.
771: //
772: #define ERROR_SEM_OWNER_DIED 105L
773:
774: //
775: // MessageId: ERROR_SEM_USER_LIMIT
776: //
777: // MessageText:
778: //
779: // Insert the diskette for drive %1.
780: //
781: #define ERROR_SEM_USER_LIMIT 106L
782:
783: //
784: // MessageId: ERROR_DISK_CHANGE
785: //
786: // MessageText:
787: //
788: // Program stopped because alternate diskette was not inserted.
789: //
790: #define ERROR_DISK_CHANGE 107L
791:
792: //
793: // MessageId: ERROR_DRIVE_LOCKED
794: //
795: // MessageText:
796: //
797: // The disk is in use or locked by
798: // another process.
799: //
800: #define ERROR_DRIVE_LOCKED 108L
801:
802: //
803: // MessageId: ERROR_BROKEN_PIPE
804: //
805: // MessageText:
806: //
807: // The pipe has been ended.
808: //
809: #define ERROR_BROKEN_PIPE 109L
810:
811: //
812: // MessageId: ERROR_OPEN_FAILED
813: //
814: // MessageText:
815: //
816: // The system cannot open the
817: // device or file specified.
818: //
819: #define ERROR_OPEN_FAILED 110L
820:
821: //
822: // MessageId: ERROR_BUFFER_OVERFLOW
823: //
824: // MessageText:
825: //
826: // The file name is too long.
827: //
828: #define ERROR_BUFFER_OVERFLOW 111L
829:
830: //
831: // MessageId: ERROR_DISK_FULL
832: //
833: // MessageText:
834: //
835: // There is not enough space on the disk.
836: //
837: #define ERROR_DISK_FULL 112L
838:
839: //
840: // MessageId: ERROR_NO_MORE_SEARCH_HANDLES
841: //
842: // MessageText:
843: //
844: // No more internal file identifiers available.
845: //
846: #define ERROR_NO_MORE_SEARCH_HANDLES 113L
847:
848: //
849: // MessageId: ERROR_INVALID_TARGET_HANDLE
850: //
851: // MessageText:
852: //
853: // The target internal file identifier is incorrect.
854: //
855: #define ERROR_INVALID_TARGET_HANDLE 114L
856:
857: //
858: // MessageId: ERROR_INVALID_CATEGORY
859: //
860: // MessageText:
861: //
862: // The IOCTL call made by the application program is
863: // not correct.
864: //
865: #define ERROR_INVALID_CATEGORY 117L
866:
867: //
868: // MessageId: ERROR_INVALID_VERIFY_SWITCH
869: //
870: // MessageText:
871: //
872: // The verify-on-write switch parameter value is not
873: // correct.
874: //
875: #define ERROR_INVALID_VERIFY_SWITCH 118L
876:
877: //
878: // MessageId: ERROR_BAD_DRIVER_LEVEL
879: //
880: // MessageText:
881: //
882: // The system does not support the command requested.
883: //
884: #define ERROR_BAD_DRIVER_LEVEL 119L
885:
886: //
887: // MessageId: ERROR_CALL_NOT_IMPLEMENTED
888: //
889: // MessageText:
890: //
891: // The Application Program Interface (API) entered
892: // will only work in Windows/NT mode.
893: //
894: #define ERROR_CALL_NOT_IMPLEMENTED 120L
895:
896: //
897: // MessageId: ERROR_SEM_TIMEOUT
898: //
899: // MessageText:
900: //
901: // The semaphore timeout period has expired.
902: //
903: #define ERROR_SEM_TIMEOUT 121L
904:
905: //
906: // MessageId: ERROR_INSUFFICIENT_BUFFER
907: //
908: // MessageText:
909: //
910: // The data area passed to a system call is too
911: // small.
912: //
1.1.1.2 root 913: #define ERROR_INSUFFICIENT_BUFFER 122L // dderror
1.1 root 914:
915: //
916: // MessageId: ERROR_INVALID_NAME
917: //
918: // MessageText:
919: //
1.1.1.2 root 920: // The file name, directory name, or volume label is not syntactically correct.
1.1 root 921: //
922: #define ERROR_INVALID_NAME 123L
923:
924: //
925: // MessageId: ERROR_INVALID_LEVEL
926: //
927: // MessageText:
928: //
929: // The system call level is not correct.
930: //
931: #define ERROR_INVALID_LEVEL 124L
932:
933: //
934: // MessageId: ERROR_NO_VOLUME_LABEL
935: //
936: // MessageText:
937: //
938: // The disk has no volume label.
939: //
940: #define ERROR_NO_VOLUME_LABEL 125L
941:
942: //
943: // MessageId: ERROR_MOD_NOT_FOUND
944: //
945: // MessageText:
946: //
947: // The specified module could not be found.
948: //
949: #define ERROR_MOD_NOT_FOUND 126L
950:
951: //
952: // MessageId: ERROR_PROC_NOT_FOUND
953: //
954: // MessageText:
955: //
956: // The specified procedure could not be found.
957: //
958: #define ERROR_PROC_NOT_FOUND 127L
959:
960: //
961: // MessageId: ERROR_WAIT_NO_CHILDREN
962: //
963: // MessageText:
964: //
965: // There are no child processes to wait for.
966: //
967: #define ERROR_WAIT_NO_CHILDREN 128L
968:
969: //
970: // MessageId: ERROR_CHILD_NOT_COMPLETE
971: //
972: // MessageText:
973: //
974: // The %1 application cannot be run in Windows mode.
975: //
976: #define ERROR_CHILD_NOT_COMPLETE 129L
977:
978: //
979: // MessageId: ERROR_DIRECT_ACCESS_HANDLE
980: //
981: // MessageText:
982: //
983: // BUGBUG - message text missing.
984: //
985: #define ERROR_DIRECT_ACCESS_HANDLE 130L
986:
987: //
988: // MessageId: ERROR_NEGATIVE_SEEK
989: //
990: // MessageText:
991: //
992: // BUGBUG - message text missing.
993: //
994: #define ERROR_NEGATIVE_SEEK 131L
995:
996: //
997: // MessageId: ERROR_SEEK_ON_DEVICE
998: //
999: // MessageText:
1000: //
1001: // BUGBUG - message text missing.
1002: //
1003: #define ERROR_SEEK_ON_DEVICE 132L
1004:
1005: //
1006: // MessageId: ERROR_IS_JOIN_TARGET
1007: //
1008: // MessageText:
1009: //
1010: // A JOIN or SUBST command
1011: // cannot be used for a drive that
1012: // contains previously joined drives.
1013: //
1014: #define ERROR_IS_JOIN_TARGET 133L
1015:
1016: //
1017: // MessageId: ERROR_IS_JOINED
1018: //
1019: // MessageText:
1020: //
1021: // An attempt was made to use a
1022: // JOIN or SUBST command on a drive that has
1023: // already been joined.
1024: //
1025: #define ERROR_IS_JOINED 134L
1026:
1027: //
1028: // MessageId: ERROR_IS_SUBSTED
1029: //
1030: // MessageText:
1031: //
1032: // An attempt was made to use a
1033: // JOIN or SUBST command on a drive that has
1034: // already been substituted.
1035: //
1036: #define ERROR_IS_SUBSTED 135L
1037:
1038: //
1039: // MessageId: ERROR_NOT_JOINED
1040: //
1041: // MessageText:
1042: //
1043: // The system tried to delete
1044: // the JOIN of a drive that is not joined.
1045: //
1046: #define ERROR_NOT_JOINED 136L
1047:
1048: //
1049: // MessageId: ERROR_NOT_SUBSTED
1050: //
1051: // MessageText:
1052: //
1053: // The system tried to delete the
1054: // substitution of a drive that is not substituted.
1055: //
1056: #define ERROR_NOT_SUBSTED 137L
1057:
1058: //
1059: // MessageId: ERROR_JOIN_TO_JOIN
1060: //
1061: // MessageText:
1062: //
1063: // The system tried to join a drive
1064: // to a directory on a joined drive.
1065: //
1066: #define ERROR_JOIN_TO_JOIN 138L
1067:
1068: //
1069: // MessageId: ERROR_SUBST_TO_SUBST
1070: //
1071: // MessageText:
1072: //
1073: // The system tried to substitute a
1074: // drive to a directory on a substituted drive.
1075: //
1076: #define ERROR_SUBST_TO_SUBST 139L
1077:
1078: //
1079: // MessageId: ERROR_JOIN_TO_SUBST
1080: //
1081: // MessageText:
1082: //
1083: // The system tried to join a drive to
1084: // a directory on a substituted drive.
1085: //
1086: #define ERROR_JOIN_TO_SUBST 140L
1087:
1088: //
1089: // MessageId: ERROR_SUBST_TO_JOIN
1090: //
1091: // MessageText:
1092: //
1093: // The system tried to SUBST a drive
1094: // to a directory on a joined drive.
1095: //
1096: #define ERROR_SUBST_TO_JOIN 141L
1097:
1098: //
1099: // MessageId: ERROR_BUSY_DRIVE
1100: //
1101: // MessageText:
1102: //
1103: // The system cannot perform a JOIN or SUBST at this time.
1104: //
1105: #define ERROR_BUSY_DRIVE 142L
1106:
1107: //
1108: // MessageId: ERROR_SAME_DRIVE
1109: //
1110: // MessageText:
1111: //
1112: // The system cannot join or substitute a
1113: // drive to or for a directory on the same drive.
1114: //
1115: #define ERROR_SAME_DRIVE 143L
1116:
1117: //
1118: // MessageId: ERROR_DIR_NOT_ROOT
1119: //
1120: // MessageText:
1121: //
1122: // The directory is not a subdirectory of the root directory.
1123: //
1124: #define ERROR_DIR_NOT_ROOT 144L
1125:
1126: //
1127: // MessageId: ERROR_DIR_NOT_EMPTY
1128: //
1129: // MessageText:
1130: //
1131: // The directory is not empty.
1132: //
1133: #define ERROR_DIR_NOT_EMPTY 145L
1134:
1135: //
1136: // MessageId: ERROR_IS_SUBST_PATH
1137: //
1138: // MessageText:
1139: //
1140: // The path specified is being used in
1141: // a substitute.
1142: //
1143: #define ERROR_IS_SUBST_PATH 146L
1144:
1145: //
1146: // MessageId: ERROR_IS_JOIN_PATH
1147: //
1148: // MessageText:
1149: //
1150: // Not enough resources are available to
1151: // process this command.
1152: //
1153: #define ERROR_IS_JOIN_PATH 147L
1154:
1155: //
1156: // MessageId: ERROR_PATH_BUSY
1157: //
1158: // MessageText:
1159: //
1160: // The path specified cannot be used at this time.
1161: //
1162: #define ERROR_PATH_BUSY 148L
1163:
1164: //
1165: // MessageId: ERROR_IS_SUBST_TARGET
1166: //
1167: // MessageText:
1168: //
1169: // An attempt was made to join
1170: // or substitute a drive for which a directory
1171: // on the drive is the target of a previous
1172: // substitute.
1173: //
1174: #define ERROR_IS_SUBST_TARGET 149L
1175:
1176: //
1177: // MessageId: ERROR_SYSTEM_TRACE
1178: //
1179: // MessageText:
1180: //
1181: // System trace information was not specified in your
1182: // CONFIG.SYS file, or tracing is disallowed.
1183: //
1184: #define ERROR_SYSTEM_TRACE 150L
1185:
1186: //
1187: // MessageId: ERROR_INVALID_EVENT_COUNT
1188: //
1189: // MessageText:
1190: //
1191: // The number of specified semaphore events for
1192: // DosMuxSemWait is not correct.
1193: //
1194: #define ERROR_INVALID_EVENT_COUNT 151L
1195:
1196: //
1197: // MessageId: ERROR_TOO_MANY_MUXWAITERS
1198: //
1199: // MessageText:
1200: //
1201: // DosMuxSemWait did not execute; too many semaphores
1202: // are already set.
1203: //
1204: #define ERROR_TOO_MANY_MUXWAITERS 152L
1205:
1206: //
1207: // MessageId: ERROR_INVALID_LIST_FORMAT
1208: //
1209: // MessageText:
1210: //
1211: // The DosMuxSemWait list is not correct.
1212: //
1213: #define ERROR_INVALID_LIST_FORMAT 153L
1214:
1215: //
1216: // MessageId: ERROR_LABEL_TOO_LONG
1217: //
1218: // MessageText:
1219: //
1220: // The volume label you entered exceeds the
1221: // 11 character limit. The first 11 characters were written
1222: // to disk. Any characters that exceeded the 11 character limit
1223: // were automatically deleted.
1224: //
1225: #define ERROR_LABEL_TOO_LONG 154L
1226:
1227: //
1228: // MessageId: ERROR_TOO_MANY_TCBS
1229: //
1230: // MessageText:
1231: //
1232: // Cannot create another thread.
1233: //
1234: #define ERROR_TOO_MANY_TCBS 155L
1235:
1236: //
1237: // MessageId: ERROR_SIGNAL_REFUSED
1238: //
1239: // MessageText:
1240: //
1241: // The recipient process has refused the signal.
1242: //
1243: #define ERROR_SIGNAL_REFUSED 156L
1244:
1245: //
1246: // MessageId: ERROR_DISCARDED
1247: //
1248: // MessageText:
1249: //
1250: // The segment is already discarded and cannot be locked.
1251: //
1252: #define ERROR_DISCARDED 157L
1253:
1254: //
1255: // MessageId: ERROR_NOT_LOCKED
1256: //
1257: // MessageText:
1258: //
1259: // The segment is already unlocked.
1260: //
1261: #define ERROR_NOT_LOCKED 158L
1262:
1263: //
1264: // MessageId: ERROR_BAD_THREADID_ADDR
1265: //
1266: // MessageText:
1267: //
1268: // The address for the thread ID is not correct.
1269: //
1270: #define ERROR_BAD_THREADID_ADDR 159L
1271:
1272: //
1273: // MessageId: ERROR_BAD_ARGUMENTS
1274: //
1275: // MessageText:
1276: //
1277: // The argument string passed to DosExecPgm is not correct.
1278: //
1279: #define ERROR_BAD_ARGUMENTS 160L
1280:
1281: //
1282: // MessageId: ERROR_BAD_PATHNAME
1283: //
1284: // MessageText:
1285: //
1286: // Invalid path name specified.
1287: //
1288: #define ERROR_BAD_PATHNAME 161L
1289:
1290: //
1291: // MessageId: ERROR_SIGNAL_PENDING
1292: //
1293: // MessageText:
1294: //
1295: // A signal is already pending.
1296: //
1297: #define ERROR_SIGNAL_PENDING 162L
1298:
1299: //
1300: // MessageId: ERROR_MAX_THRDS_REACHED
1301: //
1302: // MessageText:
1303: //
1304: // No more threads can be created in the system.
1305: //
1306: #define ERROR_MAX_THRDS_REACHED 164L
1307:
1308: //
1309: // MessageId: ERROR_LOCK_FAILED
1310: //
1311: // MessageText:
1312: //
1313: // Attempt to lock a region of a file failed.
1314: //
1315: #define ERROR_LOCK_FAILED 167L
1316:
1317: //
1318: // MessageId: ERROR_BUSY
1319: //
1320: // MessageText:
1321: //
1322: // The requested resource is in use.
1323: //
1324: #define ERROR_BUSY 170L
1325:
1326: //
1.1.1.2 root 1327: // MessageId: ERROR_CANCEL_VIOLATION
1328: //
1329: // MessageText:
1330: //
1331: // A lock request was not outstanding for the supplied cancel region.
1332: //
1333: #define ERROR_CANCEL_VIOLATION 173L
1334:
1335: //
1336: // MessageId: ERROR_ATOMIC_LOCKS_NOT_SUPPORTED
1337: //
1338: // MessageText:
1339: //
1340: // The file system does not supporting atomic changing of the lock type.
1341: //
1342: #define ERROR_ATOMIC_LOCKS_NOT_SUPPORTED 174L
1343:
1344: //
1.1 root 1345: // MessageId: ERROR_INVALID_SEGMENT_NUMBER
1346: //
1347: // MessageText:
1348: //
1349: // The system detected a segment number that was not correct.
1350: //
1351: #define ERROR_INVALID_SEGMENT_NUMBER 180L
1352:
1353: //
1354: // MessageId: ERROR_INVALID_ORDINAL
1355: //
1356: // MessageText:
1357: //
1358: // The operating system cannot run %1.
1359: //
1360: #define ERROR_INVALID_ORDINAL 182L
1361:
1362: //
1363: // MessageId: ERROR_ALREADY_EXISTS
1364: //
1365: // MessageText:
1366: //
1367: // Attempt to create file that already exists.
1368: //
1369: #define ERROR_ALREADY_EXISTS 183L
1370:
1371: //
1372: // MessageId: ERROR_INVALID_FLAG_NUMBER
1373: //
1374: // MessageText:
1375: //
1376: // The flag passed is not correct.
1377: //
1378: #define ERROR_INVALID_FLAG_NUMBER 186L
1379:
1380: //
1381: // MessageId: ERROR_SEM_NOT_FOUND
1382: //
1383: // MessageText:
1384: //
1385: // The specified system semaphore name was not found.
1386: //
1387: #define ERROR_SEM_NOT_FOUND 187L
1388:
1389: //
1390: // MessageId: ERROR_INVALID_STARTING_CODESEG
1391: //
1392: // MessageText:
1393: //
1394: // The operating system cannot run %1.
1395: //
1396: #define ERROR_INVALID_STARTING_CODESEG 188L
1397:
1398: //
1399: // MessageId: ERROR_INVALID_STACKSEG
1400: //
1401: // MessageText:
1402: //
1403: // The operating system cannot run %1.
1404: //
1405: #define ERROR_INVALID_STACKSEG 189L
1406:
1407: //
1408: // MessageId: ERROR_INVALID_MODULETYPE
1409: //
1410: // MessageText:
1411: //
1412: // The operating system cannot run %1.
1413: //
1414: #define ERROR_INVALID_MODULETYPE 190L
1415:
1416: //
1417: // MessageId: ERROR_INVALID_EXE_SIGNATURE
1418: //
1419: // MessageText:
1420: //
1421: // %1 cannot be run in Windows/NT mode.
1422: //
1423: #define ERROR_INVALID_EXE_SIGNATURE 191L
1424:
1425: //
1426: // MessageId: ERROR_EXE_MARKED_INVALID
1427: //
1428: // MessageText:
1429: //
1430: // The operating system cannot run %1.
1431: //
1432: #define ERROR_EXE_MARKED_INVALID 192L
1433:
1434: //
1435: // MessageId: ERROR_BAD_EXE_FORMAT
1436: //
1437: // MessageText:
1438: //
1439: // %1 is not a valid Windows application.
1440: //
1441: #define ERROR_BAD_EXE_FORMAT 193L
1442:
1443: //
1444: // MessageId: ERROR_ITERATED_DATA_EXCEEDS_64k
1445: //
1446: // MessageText:
1447: //
1448: // The operating system cannot run %1.
1449: //
1450: #define ERROR_ITERATED_DATA_EXCEEDS_64k 194L
1451:
1452: //
1453: // MessageId: ERROR_INVALID_MINALLOCSIZE
1454: //
1455: // MessageText:
1456: //
1457: // The operating system cannot run %1.
1458: //
1459: #define ERROR_INVALID_MINALLOCSIZE 195L
1460:
1461: //
1462: // MessageId: ERROR_DYNLINK_FROM_INVALID_RING
1463: //
1464: // MessageText:
1465: //
1466: // The operating system cannot run this
1467: // application program.
1468: //
1469: #define ERROR_DYNLINK_FROM_INVALID_RING 196L
1470:
1471: //
1472: // MessageId: ERROR_IOPL_NOT_ENABLED
1473: //
1474: // MessageText:
1475: //
1476: // The operating system is not presently
1477: // configured to run this application.
1478: //
1479: #define ERROR_IOPL_NOT_ENABLED 197L
1480:
1481: //
1482: // MessageId: ERROR_INVALID_SEGDPL
1483: //
1484: // MessageText:
1485: //
1486: // The operating system cannot run %1.
1487: //
1488: #define ERROR_INVALID_SEGDPL 198L
1489:
1490: //
1491: // MessageId: ERROR_AUTODATASEG_EXCEEDS_64k
1492: //
1493: // MessageText:
1494: //
1495: // The operating system cannot run this
1496: // application program.
1497: //
1498: #define ERROR_AUTODATASEG_EXCEEDS_64k 199L
1499:
1500: //
1501: // MessageId: ERROR_RING2SEG_MUST_BE_MOVABLE
1502: //
1503: // MessageText:
1504: //
1505: // The code segment cannot be greater than or equal to 64KB.
1506: //
1507: #define ERROR_RING2SEG_MUST_BE_MOVABLE 200L
1508:
1509: //
1510: // MessageId: ERROR_RELOC_CHAIN_XEEDS_SEGLIM
1511: //
1512: // MessageText:
1513: //
1514: // The operating system cannot run %1.
1515: //
1516: #define ERROR_RELOC_CHAIN_XEEDS_SEGLIM 201L
1517:
1518: //
1519: // MessageId: ERROR_INFLOOP_IN_RELOC_CHAIN
1520: //
1521: // MessageText:
1522: //
1523: // The operating system cannot run %1.
1524: //
1525: #define ERROR_INFLOOP_IN_RELOC_CHAIN 202L
1526:
1527: //
1528: // MessageId: ERROR_ENVVAR_NOT_FOUND
1529: //
1530: // MessageText:
1531: //
1532: // The system could not find the environment
1533: // option that was entered.
1534: //
1535: #define ERROR_ENVVAR_NOT_FOUND 203L
1536:
1537: //
1538: // MessageId: ERROR_NO_SIGNAL_SENT
1539: //
1540: // MessageText:
1541: //
1542: // No process in the command subtree has a
1543: // signal handler.
1544: //
1545: #define ERROR_NO_SIGNAL_SENT 205L
1546:
1547: //
1548: // MessageId: ERROR_FILENAME_EXCED_RANGE
1549: //
1550: // MessageText:
1551: //
1552: // The file name or extension is too long.
1553: //
1554: #define ERROR_FILENAME_EXCED_RANGE 206L
1555:
1556: //
1557: // MessageId: ERROR_RING2_STACK_IN_USE
1558: //
1559: // MessageText:
1560: //
1561: // The ring 2 stack is in use.
1562: //
1563: #define ERROR_RING2_STACK_IN_USE 207L
1564:
1565: //
1566: // MessageId: ERROR_META_EXPANSION_TOO_LONG
1567: //
1568: // MessageText:
1569: //
1570: // The global file name characters, * or ? are entered
1571: // incorrectly or too many global file name characters are specified.
1572: //
1573: #define ERROR_META_EXPANSION_TOO_LONG 208L
1574:
1575: //
1576: // MessageId: ERROR_INVALID_SIGNAL_NUMBER
1577: //
1578: // MessageText:
1579: //
1580: // The signal being posted is not correct.
1581: //
1582: #define ERROR_INVALID_SIGNAL_NUMBER 209L
1583:
1584: //
1585: // MessageId: ERROR_THREAD_1_INACTIVE
1586: //
1587: // MessageText:
1588: //
1589: // The signal handler cannot be set.
1590: //
1591: #define ERROR_THREAD_1_INACTIVE 210L
1592:
1593: //
1594: // MessageId: ERROR_LOCKED
1595: //
1596: // MessageText:
1597: //
1598: // The segment is locked and cannot be reallocated.
1599: //
1600: #define ERROR_LOCKED 212L
1601:
1602: //
1603: // MessageId: ERROR_TOO_MANY_MODULES
1604: //
1605: // MessageText:
1606: //
1607: // Too many dynamic link modules are attached to this
1608: // program or dynamic link module.
1609: //
1610: #define ERROR_TOO_MANY_MODULES 214L
1611:
1612: //
1613: // MessageId: ERROR_NESTING_NOT_ALLOWED
1614: //
1615: // MessageText:
1616: //
1617: // Can't nest calls to LoadModule.
1618: //
1619: #define ERROR_NESTING_NOT_ALLOWED 215L
1620:
1621: //
1622: // MessageId: ERROR_BAD_PIPE
1623: //
1624: // MessageText:
1625: //
1626: // Invalid pipe state.
1627: //
1628: #define ERROR_BAD_PIPE 230L
1629:
1630: //
1631: // MessageId: ERROR_PIPE_BUSY
1632: //
1633: // MessageText:
1634: //
1635: // All pipe instances busy.
1636: //
1637: #define ERROR_PIPE_BUSY 231L
1638:
1639: //
1640: // MessageId: ERROR_NO_DATA
1641: //
1642: // MessageText:
1643: //
1644: // Pipe close in progress.
1645: //
1646: #define ERROR_NO_DATA 232L
1647:
1648: //
1649: // MessageId: ERROR_PIPE_NOT_CONNECTED
1650: //
1651: // MessageText:
1652: //
1653: // No process on other end of pipe.
1654: //
1655: #define ERROR_PIPE_NOT_CONNECTED 233L
1656:
1657: //
1658: // MessageId: ERROR_MORE_DATA
1659: //
1660: // MessageText:
1661: //
1662: // More data is available.
1663: //
1.1.1.2 root 1664: #define ERROR_MORE_DATA 234L // dderror
1.1 root 1665:
1666: //
1667: // MessageId: ERROR_VC_DISCONNECTED
1668: //
1669: // MessageText:
1670: //
1671: // The session was cancelled.
1672: //
1673: #define ERROR_VC_DISCONNECTED 240L
1674:
1675: //
1676: // MessageId: ERROR_INVALID_EA_NAME
1677: //
1678: // MessageText:
1679: //
1680: // The specified EA name was invalid.
1681: //
1682: #define ERROR_INVALID_EA_NAME 254L
1683:
1684: //
1685: // MessageId: ERROR_EA_LIST_INCONSISTENT
1686: //
1687: // MessageText:
1688: //
1689: // The EAs are inconsistent.
1690: //
1691: #define ERROR_EA_LIST_INCONSISTENT 255L
1692:
1693: //
1694: // MessageId: ERROR_NO_MORE_ITEMS
1695: //
1696: // MessageText:
1697: //
1698: // No more data is available.
1699: //
1700: #define ERROR_NO_MORE_ITEMS 259L
1701:
1702: //
1.1.1.2 root 1703: // MessageId: ERROR_CANNOT_COPY
1704: //
1705: // MessageText:
1706: //
1707: // The Copy API cannot be used.
1708: //
1709: #define ERROR_CANNOT_COPY 266L
1710:
1711: //
1.1 root 1712: // MessageId: ERROR_DIRECTORY
1713: //
1714: // MessageText:
1715: //
1716: // Invalid directory name.
1717: //
1718: #define ERROR_DIRECTORY 267L
1719:
1720: //
1721: // MessageId: ERROR_EAS_DIDNT_FIT
1722: //
1723: // MessageText:
1724: //
1725: // The EAs did not fit in the buffer.
1726: //
1727: #define ERROR_EAS_DIDNT_FIT 275L
1728:
1729: //
1.1.1.2 root 1730: // MessageId: ERROR_EA_FILE_CORRUPT
1731: //
1732: // MessageText:
1733: //
1734: // The EA file on the mounted file system is corrupt.
1735: //
1736: #define ERROR_EA_FILE_CORRUPT 276L
1737:
1738: //
1739: // MessageId: ERROR_EA_TABLE_FULL
1740: //
1741: // MessageText:
1742: //
1743: // The EA table in the EA file on the mounted file system is full.
1744: //
1745: #define ERROR_EA_TABLE_FULL 277L
1746:
1747: //
1748: // MessageId: ERROR_INVALID_EA_HANDLE
1749: //
1750: // MessageText:
1751: //
1752: // The EA handle specified is invalid.
1753: //
1754: #define ERROR_INVALID_EA_HANDLE 278L
1755:
1756: //
1.1 root 1757: // MessageId: ERROR_EAS_NOT_SUPPORTED
1758: //
1759: // MessageText:
1760: //
1761: // The mounted file system does not support extended attributes.
1762: //
1763: #define ERROR_EAS_NOT_SUPPORTED 282L
1764:
1765: //
1766: // MessageId: ERROR_NOT_OWNER
1767: //
1768: // MessageText:
1769: //
1770: // Attempt to release mutex not owned by caller.
1771: //
1772: #define ERROR_NOT_OWNER 288L
1773:
1774: //
1775: // MessageId: ERROR_TOO_MANY_POSTS
1776: //
1777: // MessageText:
1778: //
1779: // Too many posts were made to a semaphore.
1780: //
1781: #define ERROR_TOO_MANY_POSTS 298L
1782:
1783: //
1784: // MessageId: ERROR_MR_MID_NOT_FOUND
1785: //
1786: // MessageText:
1787: //
1788: // The system cannot find message for message number 0x%1
1789: // in message file for %2.
1790: //
1791: #define ERROR_MR_MID_NOT_FOUND 317L
1792:
1793: //
1794: // MessageId: ERROR_INVALID_ADDRESS
1795: //
1796: // MessageText:
1797: //
1798: // Attempt to access invalid address.
1799: //
1800: #define ERROR_INVALID_ADDRESS 487L
1801:
1802: //
1803: // MessageId: ERROR_ARITHMETIC_OVERFLOW
1804: //
1805: // MessageText:
1806: //
1807: // Arithmatic result exceeded 32-bits.
1808: //
1809: #define ERROR_ARITHMETIC_OVERFLOW 534L
1810:
1811: //
1812: // MessageId: ERROR_PIPE_CONNECTED
1813: //
1814: // MessageText:
1815: //
1816: // There is a process on other end of the pipe.
1817: //
1818: #define ERROR_PIPE_CONNECTED 535L
1819:
1820: //
1821: // MessageId: ERROR_PIPE_LISTENING
1822: //
1823: // MessageText:
1824: //
1825: // Waiting for a process to open the other end of the pipe.
1826: //
1827: #define ERROR_PIPE_LISTENING 536L
1828:
1829: //
1830: // MessageId: ERROR_EA_ACCESS_DENIED
1831: //
1832: // MessageText:
1833: //
1834: // Access to the EA was denied.
1835: //
1836: #define ERROR_EA_ACCESS_DENIED 994L
1837:
1838: //
1839: // MessageId: ERROR_OPERATION_ABORTED
1840: //
1841: // MessageText:
1842: //
1843: // The IO operation has been aborted due to either thread exit
1844: // or application request.
1845: //
1846: #define ERROR_OPERATION_ABORTED 995L
1847:
1848: //
1849: // MessageId: ERROR_IO_INCOMPLETE
1850: //
1851: // MessageText:
1852: //
1853: // Overlapped IO event not in signalled state.
1854: //
1855: #define ERROR_IO_INCOMPLETE 996L
1856:
1857: //
1858: // MessageId: ERROR_IO_PENDING
1859: //
1860: // MessageText:
1861: //
1862: // Overlapped IO operation in progress.
1863: //
1.1.1.2 root 1864: #define ERROR_IO_PENDING 997L // dderror
1.1 root 1865:
1866: //
1867: // MessageId: ERROR_NOACCESS
1868: //
1869: // MessageText:
1870: //
1871: // Invalid access to memory location.
1872: //
1873: #define ERROR_NOACCESS 998L
1874:
1875: //
1876: // MessageId: ERROR_SWAPERROR
1877: //
1878: // MessageText:
1879: //
1880: // Error accessing paging file.
1881: //
1882: #define ERROR_SWAPERROR 999L
1883:
1.1.1.2 root 1884: //
1885: // MessageId: ERROR_STACK_OVERFLOW
1886: //
1887: // MessageText:
1888: //
1889: // Recursion too deep, stack overflowed.
1890: //
1891: #define ERROR_STACK_OVERFLOW 1001L
1892:
1893: //
1894: // MessageId: ERROR_INVALID_MESSAGE
1895: //
1896: // MessageText:
1897: //
1898: // Window can't handle sent message.
1899: //
1900: #define ERROR_INVALID_MESSAGE 1002L
1901:
1902: //
1903: // MessageId: ERROR_CAN_NOT_COMPLETE
1904: //
1905: // MessageText:
1906: //
1907: // Cannot complete function for some reason. Like calling GetSelection()
1908: // when there is no selection.
1909: //
1910: #define ERROR_CAN_NOT_COMPLETE 1003L
1911:
1912: //
1913: // MessageId: ERROR_INVALID_FLAGS
1914: //
1915: // MessageText:
1916: //
1917: // Invalid flags.
1918: //
1919: #define ERROR_INVALID_FLAGS 1004L
1920:
1921: //
1922: // MessageId: ERROR_UNRECOGNIZED_VOLUME
1923: //
1924: // MessageText:
1925: //
1926: // The volume does not contain a recognized file system.
1927: // Please make sure that all required file system drivers are loaded and that the
1928: // volume is not corrupt.
1929: //
1930: #define ERROR_UNRECOGNIZED_VOLUME 1005L
1931:
1932: //
1933: // MessageId: ERROR_FILE_INVALID
1934: //
1935: // MessageText:
1936: //
1937: // The volume for a file has been externally altered such that the
1938: // opened file is no longer valid.
1939: //
1940: #define ERROR_FILE_INVALID 1006L
1941:
1942: //
1943: // MessageId: ERROR_FULLSCREEN_MODE
1944: //
1945: // MessageText:
1946: //
1947: // The requested operation cannot be performed in fullscreen mode.
1948: //
1949: #define ERROR_FULLSCREEN_MODE 1007L
1950:
1951: //
1952: // MessageId: ERROR_NO_TOKEN
1953: //
1954: // MessageText:
1955: //
1956: // An attempt was made to reference a token that does not exist.
1957: //
1958: #define ERROR_NO_TOKEN 1008L
1959:
1960: //
1961: // MessageId: ERROR_BADDB
1962: //
1963: // MessageText:
1964: //
1965: // The configuration registry database is corrupt.
1966: //
1967: #define ERROR_BADDB 1009L
1968:
1969: //
1970: // MessageId: ERROR_BADKEY
1971: //
1972: // MessageText:
1973: //
1974: // The configuration registry key is invalid.
1975: //
1976: #define ERROR_BADKEY 1010L
1977:
1978: //
1979: // MessageId: ERROR_CANTOPEN
1980: //
1981: // MessageText:
1982: //
1983: // The configuration registry key could not be opened.
1984: //
1985: #define ERROR_CANTOPEN 1011L
1986:
1987: //
1988: // MessageId: ERROR_CANTREAD
1989: //
1990: // MessageText:
1991: //
1992: // The configuration registry key could not be read.
1993: //
1994: #define ERROR_CANTREAD 1012L
1995:
1996: //
1997: // MessageId: ERROR_CANTWRITE
1998: //
1999: // MessageText:
2000: //
2001: // The configuration registry key could not be written.
2002: //
2003: #define ERROR_CANTWRITE 1013L
2004:
2005: //
2006: // MessageId: ERROR_REGISTRY_RECOVERED
2007: //
2008: // MessageText:
2009: //
2010: // One of the files containing the system's Registry data had to be recovered
2011: // by use of a log or alternate copy. The recovery was successful.
2012: //
2013: #define ERROR_REGISTRY_RECOVERED 1014L
2014:
2015: //
2016: // MessageId: ERROR_REGISTRY_CORRUPT
2017: //
2018: // MessageText:
2019: //
2020: // The Registry is corrupt.
2021: // The structure of one of the files that contains Registry data is corrupt, or
2022: // the system's in memory image of the file is corrupt, or the file could not
2023: // be recovered because its alternate copy or log was absent or corrupt.
2024: //
2025: #define ERROR_REGISTRY_CORRUPT 1015L
2026:
2027: //
2028: // MessageId: ERROR_REGISTRY_IO_FAILED
2029: //
2030: // MessageText:
2031: //
2032: // An I/O operation initiated by the Registry failed unrecoverably.
2033: // The Registry could not read in, or write out, or flush, one of the files
2034: // that contain the system's image of the Registry.
2035: //
2036: #define ERROR_REGISTRY_IO_FAILED 1016L
2037:
2038: //
2039: // MessageId: ERROR_NOT_REGISTRY_FILE
2040: //
2041: // MessageText:
2042: //
2043: // The system has attempted to load or restore a file into the registry, and the
2044: // specified file is not in the format of a registry file.
2045: //
2046: #define ERROR_NOT_REGISTRY_FILE 1017L
2047:
2048: //
2049: // MessageId: ERROR_KEY_DELETED
2050: //
2051: // MessageText:
2052: //
2053: // Illegal operation attempted on a registry key which has been marked for deletion.
2054: //
2055: #define ERROR_KEY_DELETED 1018L
2056:
2057: //
2058: // MessageId: ERROR_NO_LOG_SPACE
2059: //
2060: // MessageText:
2061: //
2062: // System could not allocate required space in a registry log.
2063: //
2064: #define ERROR_NO_LOG_SPACE 1019L
2065:
2066: //
2067: // MessageId: ERROR_KEY_HAS_CHILDREN
2068: //
2069: // MessageText:
2070: //
2071: // An attempt was made to create a symbolic link in a registry key that already
2072: // has subkeys or values.
2073: //
2074: #define ERROR_KEY_HAS_CHILDREN 1020L
2075:
2076: //
2077: // MessageId: ERROR_CHILD_MUST_BE_VOLATILE
2078: //
2079: // MessageText:
2080: //
2081: // An attempt was made to create a Stable subkey under a Volatile parent key.
2082: //
2083: #define ERROR_CHILD_MUST_BE_VOLATILE 1021L
2084:
2085: //
2086: // MessageId: ERROR_NOTIFY_ENUM_DIR
2087: //
2088: // MessageText:
2089: //
2090: // This indicates that a notify change request is being completed and that the
2091: // information is not being returned in the caller's buffer. The caller now
2092: // needs to enumerate the files to find the changes.
2093: //
2094: #define ERROR_NOTIFY_ENUM_DIR 1022L
2095:
2096: //
2097: // MessageId: ERROR_DEPENDENT_SERVICES_RUNNING
2098: //
2099: // MessageText:
2100: //
2101: // A stop control has been sent to a service which other running services
2102: // are dependent on.
2103: //
2104: #define ERROR_DEPENDENT_SERVICES_RUNNING 1051L
2105:
2106: //
2107: // MessageId: ERROR_INVALID_SERVICE_CONTROL
2108: //
2109: // MessageText:
2110: //
2111: // The requested control is not valid for this service
2112: //
2113: #define ERROR_INVALID_SERVICE_CONTROL 1052L
2114:
2115: //
2116: // MessageId: ERROR_SERVICE_REQUEST_TIMEOUT
2117: //
2118: // MessageText:
2119: //
2120: // The service did not respond to the start or control request in a timely
2121: // fashion.
2122: //
2123: #define ERROR_SERVICE_REQUEST_TIMEOUT 1053L
2124:
2125: //
2126: // MessageId: ERROR_SERVICE_NO_THREAD
2127: //
2128: // MessageText:
2129: //
2130: // A thread could not be created for the Win32 service.
2131: //
2132: #define ERROR_SERVICE_NO_THREAD 1054L
2133:
2134: //
2135: // MessageId: ERROR_SERVICE_DATABASE_LOCKED
2136: //
2137: // MessageText:
2138: //
1.1.1.3 ! root 2139: // The service database is locked.
1.1.1.2 root 2140: //
2141: #define ERROR_SERVICE_DATABASE_LOCKED 1055L
2142:
2143: //
2144: // MessageId: ERROR_SERVICE_ALREADY_RUNNING
2145: //
2146: // MessageText:
2147: //
2148: // An instance of the service is already running.
2149: //
2150: #define ERROR_SERVICE_ALREADY_RUNNING 1056L
2151:
2152: //
2153: // MessageId: ERROR_INVALID_SERVICE_ACCOUNT
2154: //
2155: // MessageText:
2156: //
1.1.1.3 ! root 2157: // The account name is invalid or does not exist.
1.1.1.2 root 2158: //
2159: #define ERROR_INVALID_SERVICE_ACCOUNT 1057L
2160:
2161: //
2162: // MessageId: ERROR_SERVICE_DISABLED
2163: //
2164: // MessageText:
2165: //
2166: // The specified service is disabled and cannot be started.
2167: //
2168: #define ERROR_SERVICE_DISABLED 1058L
2169:
2170: //
2171: // MessageId: ERROR_CIRCULAR_DEPENDENCY
2172: //
2173: // MessageText:
2174: //
2175: // Circular service dependency was specified.
2176: //
2177: #define ERROR_CIRCULAR_DEPENDENCY 1059L
2178:
2179: //
2180: // MessageId: ERROR_SERVICE_DOES_NOT_EXIST
2181: //
2182: // MessageText:
2183: //
2184: // The specified service does not exist as an installed service.
2185: //
2186: #define ERROR_SERVICE_DOES_NOT_EXIST 1060L
2187:
2188: //
2189: // MessageId: ERROR_SERVICE_CANNOT_ACCEPT_CTRL
2190: //
2191: // MessageText:
2192: //
2193: // The service cannot accept control messages at this time.
2194: //
2195: #define ERROR_SERVICE_CANNOT_ACCEPT_CTRL 1061L
2196:
2197: //
2198: // MessageId: ERROR_SERVICE_NOT_ACTIVE
2199: //
2200: // MessageText:
2201: //
2202: // The service has not been started.
2203: //
2204: #define ERROR_SERVICE_NOT_ACTIVE 1062L
2205:
2206: //
2207: // MessageId: ERROR_FAILED_SERVICE_CONTROLLER_CONNECT
2208: //
2209: // MessageText:
2210: //
2211: // The service process could not connect to the service controller.
2212: //
2213: #define ERROR_FAILED_SERVICE_CONTROLLER_CONNECT 1063L
2214:
2215: //
2216: // MessageId: ERROR_EXCEPTION_IN_SERVICE
2217: //
2218: // MessageText:
2219: //
1.1.1.3 ! root 2220: // An exception occurred in the service when handling the control request.
1.1.1.2 root 2221: //
2222: #define ERROR_EXCEPTION_IN_SERVICE 1064L
2223:
2224: //
2225: // MessageId: ERROR_DATABASE_DOES_NOT_EXIST
2226: //
2227: // MessageText:
2228: //
2229: // The database specified does not exist.
2230: //
2231: #define ERROR_DATABASE_DOES_NOT_EXIST 1065L
2232:
2233: //
2234: // MessageId: ERROR_SERVICE_SPECIFIC_ERROR
2235: //
2236: // MessageText:
2237: //
2238: // The service has returned a service specific error code.
2239: //
2240: #define ERROR_SERVICE_SPECIFIC_ERROR 1066L
2241:
2242: //
2243: // MessageId: ERROR_PROCESS_ABORTED
2244: //
2245: // MessageText:
2246: //
2247: // The process terminated unexpectedly.
2248: //
2249: #define ERROR_PROCESS_ABORTED 1067L
2250:
2251: //
2252: // MessageId: ERROR_SERVICE_DEPENDENCY_FAIL
2253: //
2254: // MessageText:
2255: //
1.1.1.3 ! root 2256: // The dependency service or group failed to start.
1.1.1.2 root 2257: //
2258: #define ERROR_SERVICE_DEPENDENCY_FAIL 1068L
2259:
2260: //
2261: // MessageId: ERROR_SERVICE_LOGON_FAILED
2262: //
2263: // MessageText:
2264: //
2265: // The service failed to be logged on.
2266: //
2267: #define ERROR_SERVICE_LOGON_FAILED 1069L
2268:
2269: //
2270: // MessageId: ERROR_SERVICE_START_HANG
2271: //
2272: // MessageText:
2273: //
2274: // The service hung on starting.
2275: //
2276: #define ERROR_SERVICE_START_HANG 1070L
2277:
2278: //
2279: // MessageId: ERROR_INVALID_SERVICE_LOCK
2280: //
2281: // MessageText:
2282: //
1.1.1.3 ! root 2283: // The specified service database lock is invalid.
1.1.1.2 root 2284: //
2285: #define ERROR_INVALID_SERVICE_LOCK 1071L
2286:
2287: //
2288: // MessageId: ERROR_SERVICE_MARKED_FOR_DELETE
2289: //
2290: // MessageText:
2291: //
1.1.1.3 ! root 2292: // The specified service has been marked for deletion.
1.1.1.2 root 2293: //
2294: #define ERROR_SERVICE_MARKED_FOR_DELETE 1072L
2295:
2296: //
2297: // MessageId: ERROR_SERVICE_EXISTS
2298: //
2299: // MessageText:
2300: //
1.1.1.3 ! root 2301: // The specified service already exists.
1.1.1.2 root 2302: //
2303: #define ERROR_SERVICE_EXISTS 1073L
2304:
2305: //
2306: // MessageId: ERROR_ALREADY_RUNNING_LKG
2307: //
2308: // MessageText:
2309: //
1.1.1.3 ! root 2310: // The system is currently booted using the last-known-good configuration.
1.1.1.2 root 2311: //
2312: #define ERROR_ALREADY_RUNNING_LKG 1074L
2313:
2314: //
1.1.1.3 ! root 2315: // MessageId: ERROR_SERVICE_DEPENDENCY_DELETED
! 2316: //
! 2317: // MessageText:
! 2318: //
! 2319: // The dependency service does not exist or has been marked for
! 2320: // deletion.
! 2321: //
! 2322: #define ERROR_SERVICE_DEPENDENCY_DELETED 1075L
! 2323:
! 2324: //
! 2325: // MessageId: ERROR_BOOT_ALREADY_ACCEPTED
! 2326: //
! 2327: // MessageText:
! 2328: //
! 2329: // The current boot has already been accepted for use as the
! 2330: // last-known-good control set.
! 2331: //
! 2332: #define ERROR_BOOT_ALREADY_ACCEPTED 1076L
! 2333:
! 2334: //
1.1.1.2 root 2335: // MessageId: ERROR_END_OF_MEDIA
2336: //
2337: // MessageText:
2338: //
2339: // End of tape mark has been reached during an operation.
2340: //
2341: #define ERROR_END_OF_MEDIA 1100L
2342:
2343: //
2344: // MessageId: ERROR_SHORT_FILEMARK_DETECTED
2345: //
2346: // MessageText:
2347: //
2348: // A tape access reached a short filemark.
2349: //
2350: #define ERROR_SHORT_FILEMARK_DETECTED 1101L
2351:
2352: //
2353: // MessageId: ERROR_LONG_FILEMARK_DETECTED
2354: //
2355: // MessageText:
2356: //
2357: // A tape access reached a long filemark.
2358: //
2359: #define ERROR_LONG_FILEMARK_DETECTED 1102L
2360:
2361: //
2362: // MessageId: ERROR_SETMARK_DETECTED
2363: //
2364: // MessageText:
2365: //
2366: // A tape access reached a setmark.
2367: //
2368: #define ERROR_SETMARK_DETECTED 1103L
2369:
2370: //
2371: // MessageId: ERROR_NO_DATA_DETECTED
2372: //
2373: // MessageText:
2374: //
2375: // During a tape access, the end of the data written is reached.
2376: //
2377: #define ERROR_NO_DATA_DETECTED 1104L
2378:
2379: //
2380: // MessageId: ERROR_PARTITION_FAILURE
2381: //
2382: // MessageText:
2383: //
2384: // Tape could not be partitioned.
2385: //
2386: #define ERROR_PARTITION_FAILURE 1105L
2387:
2388: //
2389: // MessageId: ERROR_INVALID_BLOCK_LENGTH
2390: //
2391: // MessageText:
2392: //
2393: // When accessing a new tape of a multivolume partition, the current
2394: // blocksize is incorrect.
2395: //
2396: #define ERROR_INVALID_BLOCK_LENGTH 1106L
2397:
2398: //
2399: // MessageId: ERROR_DEVICE_NOT_PARTITIONED
2400: //
2401: // MessageText:
2402: //
2403: // Tape partition information could not be found when loading a tape.
2404: //
2405: #define ERROR_DEVICE_NOT_PARTITIONED 1107L
2406:
2407: //
2408: // MessageId: ERROR_UNABLE_TO_LOCK_MEDIA
2409: //
2410: // MessageText:
2411: //
2412: // Attempt to lock the eject media mechansism fails.
2413: //
2414: #define ERROR_UNABLE_TO_LOCK_MEDIA 1108L
2415:
2416: //
2417: // MessageId: ERROR_UNABLE_TO_UNLOAD_MEDIA
2418: //
2419: // MessageText:
2420: //
2421: // Unload media fails.
2422: //
2423: #define ERROR_UNABLE_TO_UNLOAD_MEDIA 1109L
2424:
2425: //
2426: // MessageId: ERROR_TAPE_WRITE_PROTECTED
2427: //
2428: // MessageText:
2429: //
2430: // Attempt to write to or erase a write protected tape.
2431: //
2432: #define ERROR_TAPE_WRITE_PROTECTED 1110L
2433:
2434: //
2435: // MessageId: ERROR_TAPE_OPERATION_NOT_SUPPORTED
2436: //
2437: // MessageText:
2438: //
2439: // Attempted operation not supported on drive.
2440: //
2441: #define ERROR_TAPE_OPERATION_NOT_SUPPORTED 1111L
2442:
2443: //
2444: // MessageId: ERROR_NO_TAPE_IN_DRIVE
2445: //
2446: // MessageText:
2447: //
2448: // Tape query failed because of no tape in drive.
2449: //
2450: #define ERROR_NO_TAPE_IN_DRIVE 1112L
2451:
2452: //
2453: // MessageId: ERROR_NO_UNICODE_TRANSLATION
2454: //
2455: // MessageText:
2456: //
2457: // No mapping for the Unicode character exists in the target multi-byte code page.
2458: //
2459: #define ERROR_NO_UNICODE_TRANSLATION 1113L
2460:
2461: //
2462: // MessageId: ERROR_DLL_INIT_FAILED
2463: //
2464: // MessageText:
2465: //
2466: // A DLL initialization routine failed.
2467: //
2468: #define ERROR_DLL_INIT_FAILED 1114L
2469:
2470: //
2471: // MessageId: ERROR_SHUTDOWN_IN_PROGRESS
2472: //
2473: // MessageText:
2474: //
2475: // A system shutdown is in progress.
2476: //
2477: #define ERROR_SHUTDOWN_IN_PROGRESS 1115L
2478:
2479: //
2480: // MessageId: ERROR_NO_SHUTDOWN_IN_PROGRESS
2481: //
2482: // MessageText:
2483: //
2484: // An attempt to abort the shutdown of the system failed because no shutdown
2485: // was in progress.
2486: //
2487: #define ERROR_NO_SHUTDOWN_IN_PROGRESS 1116L
2488:
2489: //
2490: // MessageId: ERROR_IO_DEVICE
2491: //
2492: // MessageText:
2493: //
2494: // The request could not be performed because of an I/O device error.
2495: //
2496: #define ERROR_IO_DEVICE 1117L
2497:
2498: //
2499: // MessageId: ERROR_SERIAL_NO_DEVICE
2500: //
2501: // MessageText:
2502: //
2503: // No serial device was successfully initialized. The serial driver will unload.
2504: //
2505: #define ERROR_SERIAL_NO_DEVICE 1118L
2506:
2507: //
2508: // MessageId: ERROR_IRQ_BUSY
2509: //
2510: // MessageText:
2511: //
2512: // An attempt was made to open a device that was sharing an IRQ with other devices.
2513: // At least one other device that uses that IRQ was already opened. Two concurrent
2514: // opens of devices that share an IRQ and only work via interrupts is not supported
2515: // for the particular bus type that the devices use.
2516: //
2517: #define ERROR_IRQ_BUSY 1119L
2518:
2519: //
2520: // MessageId: ERROR_MORE_WRITES
2521: //
2522: // MessageText:
2523: //
2524: // This informational status message indicates that the serial io control
2525: // IOCTL_SERIAL_XOFF_COUNTER completed due to another write to the serial
2526: // port.
2527: //
2528: #define ERROR_MORE_WRITES 1120L
2529:
2530: //
2531: // MessageId: ERROR_COUNTER_TIMEOUT
2532: //
2533: // MessageText:
2534: //
2535: // This informational status message indicates that the serial io control
2536: // IOCTL_SERIAL_XOFF_COUNTER completed due to timer expiring before the
2537: // counter reached 0.
2538: //
2539: #define ERROR_COUNTER_TIMEOUT 1121L
2540:
2541: //
2542: // MessageId: ERROR_FLOPPY_ID_MARK_NOT_FOUND
2543: //
2544: // MessageText:
2545: //
2546: // While accessing the floppy an id address mark was not found.
2547: //
2548: #define ERROR_FLOPPY_ID_MARK_NOT_FOUND 1122L
2549:
2550: //
2551: // MessageId: ERROR_FLOPPY_WRONG_CYLINDER
2552: //
2553: // MessageText:
2554: //
2555: // While accessing the floppy the track address from the sector id field was found
2556: // to be different than the track address maintained by the controller.
2557: //
2558: #define ERROR_FLOPPY_WRONG_CYLINDER 1123L
2559:
2560: //
2561: // MessageId: ERROR_FLOPPY_UNKNOWN_ERROR
2562: //
2563: // MessageText:
2564: //
2565: // The floppy controller reported an error that is not recognized by the floppy driver.
2566: //
2567: #define ERROR_FLOPPY_UNKNOWN_ERROR 1124L
2568:
2569: //
2570: // MessageId: ERROR_FLOPPY_BAD_REGISTERS
2571: //
2572: // MessageText:
2573: //
2574: // While accessing the floppy, the controller returned inconsistant results via its registers.
2575: //
2576: #define ERROR_FLOPPY_BAD_REGISTERS 1125L
2577:
2578: //
2579: // MessageId: ERROR_DISK_RECALIBRATE_FAILED
2580: //
2581: // MessageText:
2582: //
2583: // While accessing the hard disk, a recalibrate operation failed, even after retries.
2584: //
2585: #define ERROR_DISK_RECALIBRATE_FAILED 1126L
2586:
2587: //
2588: // MessageId: ERROR_DISK_OPERATION_FAILED
2589: //
2590: // MessageText:
2591: //
2592: // While accessing the hard disk, a disk operation failed even after retries.
2593: //
2594: #define ERROR_DISK_OPERATION_FAILED 1127L
2595:
2596: //
2597: // MessageId: ERROR_DISK_RESET_FAILED
2598: //
2599: // MessageText:
2600: //
2601: // While accessing the hard disk, a disk controller reset was needed, but even that failed.
2602: // It would seem that some diagnostics should be run.
2603: //
2604: #define ERROR_DISK_RESET_FAILED 1128L
2605:
2606:
2607:
2608:
2609: ///////////////////////////
2610: // //
2611: // Winnet32 Status Codes //
2612: // //
2613: ///////////////////////////
2614:
2615:
2616: //
2617: // MessageId: ERROR_BAD_USERNAME
2618: //
2619: // MessageText:
2620: //
2621: // The specified user name is invalid.
2622: //
2623: #define ERROR_BAD_USERNAME 2202L
2624:
2625: //
2626: // MessageId: ERROR_NO_NETWORK
2627: //
2628: // MessageText:
2629: //
2630: // The network is not present or not started.
2631: //
2632: #define ERROR_NO_NETWORK 2138L
2633:
2634: //
2635: // MessageId: ERROR_NOT_CONNECTED
2636: //
2637: // MessageText:
2638: //
2639: // This network connection does not exist.
2640: //
2641: #define ERROR_NOT_CONNECTED 2250L
2642:
2643: //
2644: // MessageId: ERROR_OPEN_FILES
2645: //
2646: // MessageText:
2647: //
2648: // There are open files or requests pending on this connection.
2649: //
2650: #define ERROR_OPEN_FILES 2401L
2651:
2652: //
2653: // MessageId: ERROR_DEVICE_IN_USE
2654: //
2655: // MessageText:
2656: //
2657: // The device is in use by an active process and cannot be disconnected.
2658: //
2659: #define ERROR_DEVICE_IN_USE 2404L
2660:
2661: //
2662: // MessageId: ERROR_BAD_DEVICE
2663: //
2664: // MessageText:
2665: //
2666: // The specified device name is invalid.
2667: //
2668: #define ERROR_BAD_DEVICE 1200L
2669:
2670: //
2671: // MessageId: ERROR_CONNECTION_UNAVAIL
2672: //
2673: // MessageText:
2674: //
2675: // The device is not currently connected but it is a remembered connection.
2676: //
2677: #define ERROR_CONNECTION_UNAVAIL 1201L
2678:
2679: //
2680: // MessageId: ERROR_DEVICE_ALREADY_REMEMBERED
2681: //
2682: // MessageText:
2683: //
2684: // An attempt was made to remember a device that had previously been remembered.
2685: //
2686: #define ERROR_DEVICE_ALREADY_REMEMBERED 1202L
2687:
2688: //
2689: // MessageId: ERROR_NO_NET_OR_BAD_PATH
2690: //
2691: // MessageText:
2692: //
2693: // No network provider accepted the given network path.
2694: //
2695: #define ERROR_NO_NET_OR_BAD_PATH 1203L
2696:
2697: //
2698: // MessageId: ERROR_BAD_PROVIDER
2699: //
2700: // MessageText:
2701: //
2702: // The specified network provider name is invalid.
2703: //
2704: #define ERROR_BAD_PROVIDER 1204L
2705:
2706: //
2707: // MessageId: ERROR_CANNOT_OPEN_PROFILE
2708: //
2709: // MessageText:
2710: //
2711: // Unable to open the network connection profile.
2712: //
2713: #define ERROR_CANNOT_OPEN_PROFILE 1205L
2714:
2715: //
2716: // MessageId: ERROR_BAD_PROFILE
2717: //
2718: // MessageText:
2719: //
2720: // The network connection profile is corrupt.
2721: //
2722: #define ERROR_BAD_PROFILE 1206L
2723:
2724: //
2725: // MessageId: ERROR_NOT_CONTAINER
2726: //
2727: // MessageText:
2728: //
2729: // Cannot enumerate a non-container.
2730: //
2731: #define ERROR_NOT_CONTAINER 1207L
2732:
2733: //
2734: // MessageId: ERROR_EXTENDED_ERROR
2735: //
2736: // MessageText:
2737: //
2738: // An extended error has occurred.
2739: //
2740: #define ERROR_EXTENDED_ERROR 1208L
2741:
1.1.1.3 ! root 2742: //
! 2743: // MessageId: ERROR_INVALID_GROUPNAME
! 2744: //
! 2745: // MessageText:
! 2746: //
! 2747: // The format of the specified group name is invalid.
! 2748: //
! 2749: #define ERROR_INVALID_GROUPNAME 1209L
! 2750:
! 2751: //
! 2752: // MessageId: ERROR_INVALID_COMPUTERNAME
! 2753: //
! 2754: // MessageText:
! 2755: //
! 2756: // The format of the specified computer name is invalid.
! 2757: //
! 2758: #define ERROR_INVALID_COMPUTERNAME 1210L
! 2759:
! 2760: //
! 2761: // MessageId: ERROR_INVALID_EVENTNAME
! 2762: //
! 2763: // MessageText:
! 2764: //
! 2765: // The format of the specified event name is invalid.
! 2766: //
! 2767: #define ERROR_INVALID_EVENTNAME 1211L
! 2768:
! 2769: //
! 2770: // MessageId: ERROR_INVALID_DOMAINNAME
! 2771: //
! 2772: // MessageText:
! 2773: //
! 2774: // The format of the specified domain name is invalid.
! 2775: //
! 2776: #define ERROR_INVALID_DOMAINNAME 1212L
! 2777:
! 2778: //
! 2779: // MessageId: ERROR_INVALID_SERVICENAME
! 2780: //
! 2781: // MessageText:
! 2782: //
! 2783: // The format of the specified service name is invalid.
! 2784: //
! 2785: #define ERROR_INVALID_SERVICENAME 1213L
! 2786:
! 2787: //
! 2788: // MessageId: ERROR_INVALID_NETNAME
! 2789: //
! 2790: // MessageText:
! 2791: //
! 2792: // The format of the specified network name is invalid.
! 2793: //
! 2794: #define ERROR_INVALID_NETNAME 1214L
! 2795:
! 2796: //
! 2797: // MessageId: ERROR_INVALID_SHARENAME
! 2798: //
! 2799: // MessageText:
! 2800: //
! 2801: // The format of the specified share name is invalid.
! 2802: //
! 2803: #define ERROR_INVALID_SHARENAME 1215L
! 2804:
! 2805: //
! 2806: // MessageId: ERROR_INVALID_PASSWORDNAME
! 2807: //
! 2808: // MessageText:
! 2809: //
! 2810: // The format of the specified password is invalid.
! 2811: //
! 2812: #define ERROR_INVALID_PASSWORDNAME 1216L
! 2813:
! 2814: //
! 2815: // MessageId: ERROR_INVALID_MESSAGENAME
! 2816: //
! 2817: // MessageText:
! 2818: //
! 2819: // The format of the specified message name is invalid.
! 2820: //
! 2821: #define ERROR_INVALID_MESSAGENAME 1217L
! 2822:
! 2823: //
! 2824: // MessageId: ERROR_INVALID_MESSAGEDEST
! 2825: //
! 2826: // MessageText:
! 2827: //
! 2828: // The format of the specified message destination is invalid.
! 2829: //
! 2830: #define ERROR_INVALID_MESSAGEDEST 1218L
! 2831:
1.1.1.2 root 2832:
2833:
2834:
2835: ///////////////////////////
2836: // //
2837: // Security Status Codes //
2838: // //
2839: ///////////////////////////
2840:
2841:
2842: //
2843: // MessageId: ERROR_NOT_ALL_ASSIGNED
2844: //
2845: // MessageText:
2846: //
2847: // Indicates not all privileges referenced are assigned to the caller.
2848: // This allows, for example, all privileges to be disabled without having
2849: // to know exactly which privileges are assigned.
2850: //
2851: #define ERROR_NOT_ALL_ASSIGNED 1300L
2852:
2853: //
2854: // MessageId: ERROR_SOME_NOT_MAPPED
2855: //
2856: // MessageText:
2857: //
2858: // Some of the information to be translated has not been translated.
2859: //
2860: #define ERROR_SOME_NOT_MAPPED 1301L
2861:
2862: //
2863: // MessageId: ERROR_NO_QUOTAS_FOR_ACCOUNT
2864: //
2865: // MessageText:
2866: //
2867: // No system quota limits are specifically set for this Account.
2868: //
2869: #define ERROR_NO_QUOTAS_FOR_ACCOUNT 1302L
2870:
2871: //
2872: // MessageId: ERROR_LOCAL_USER_SESSION_KEY
2873: //
2874: // MessageText:
2875: //
2876: // A user session key was requested for a local rpc connection. The session key
2877: // returned is a constant value and not unique to this connection. There is
2878: // little to be gained by encrypting data on such a connection.
2879: //
2880: #define ERROR_LOCAL_USER_SESSION_KEY 1303L
2881:
2882: //
2883: // MessageId: ERROR_NULL_LM_PASSWORD
2884: //
2885: // MessageText:
2886: //
2887: // The NT password is too complex to be converted to a Lan-Manager password.
2888: // The Lan-Manager password returned is a NULL string.
2889: //
2890: #define ERROR_NULL_LM_PASSWORD 1304L
2891:
2892: //
2893: // MessageId: ERROR_UNKNOWN_REVISION
2894: //
2895: // MessageText:
2896: //
2897: // Indicates a revision number encountered or specified is not one
2898: // known by the service. It may be a more recent revision than the
2899: // service is aware of.
2900: //
2901: #define ERROR_UNKNOWN_REVISION 1305L
2902:
2903: //
2904: // MessageId: ERROR_REVISION_MISMATCH
2905: //
2906: // MessageText:
2907: //
2908: // Indicates two revision levels are incompatible.
2909: //
2910: #define ERROR_REVISION_MISMATCH 1306L
2911:
2912: //
2913: // MessageId: ERROR_INVALID_OWNER
2914: //
2915: // MessageText:
2916: //
2917: // Indicates a particular Security ID may not be assigned as the
2918: // owner of an object.
2919: //
2920: #define ERROR_INVALID_OWNER 1307L
2921:
2922: //
2923: // MessageId: ERROR_INVALID_PRIMARY_GROUP
2924: //
2925: // MessageText:
2926: //
2927: // Indicates a particular Security ID may not be assigned as the
2928: // primary group of an object.
2929: //
2930: #define ERROR_INVALID_PRIMARY_GROUP 1308L
2931:
2932: //
2933: // MessageId: ERROR_NO_IMPERSONATION_TOKEN
2934: //
2935: // MessageText:
2936: //
2937: // An attempt has been made to operate on an impersonation token
2938: // by a thread that is not currently impersonating a client.
2939: //
2940: #define ERROR_NO_IMPERSONATION_TOKEN 1309L
2941:
2942: //
2943: // MessageId: ERROR_CANT_DISABLE_MANDATORY
2944: //
2945: // MessageText:
2946: //
2947: // A mandatory group may not be disabled.
2948: //
2949: #define ERROR_CANT_DISABLE_MANDATORY 1310L
2950:
2951: //
2952: // MessageId: ERROR_NO_LOGON_SERVERS
2953: //
2954: // MessageText:
2955: //
2956: // There are currently no logon servers available to service the logon
2957: // request.
2958: //
2959: #define ERROR_NO_LOGON_SERVERS 1311L
2960:
2961: //
2962: // MessageId: ERROR_NO_SUCH_LOGON_SESSION
2963: //
2964: // MessageText:
2965: //
2966: // A specified logon session does not exist. It may already have
2967: // been terminated.
2968: //
2969: #define ERROR_NO_SUCH_LOGON_SESSION 1312L
2970:
2971: //
2972: // MessageId: ERROR_NO_SUCH_PRIVILEGE
2973: //
2974: // MessageText:
2975: //
2976: // A specified privilege does not exist.
2977: //
2978: #define ERROR_NO_SUCH_PRIVILEGE 1313L
2979:
2980: //
2981: // MessageId: ERROR_PRIVILEGE_NOT_HELD
2982: //
2983: // MessageText:
2984: //
2985: // A required privilege is not held by the client.
2986: //
2987: #define ERROR_PRIVILEGE_NOT_HELD 1314L
2988:
2989: //
2990: // MessageId: ERROR_INVALID_ACCOUNT_NAME
2991: //
2992: // MessageText:
2993: //
2994: // The name provided is not a properly formed account name.
2995: //
2996: #define ERROR_INVALID_ACCOUNT_NAME 1315L
2997:
2998: //
2999: // MessageId: ERROR_USER_EXISTS
3000: //
3001: // MessageText:
3002: //
3003: // The specified user already exists.
3004: //
3005: #define ERROR_USER_EXISTS 1316L
3006:
3007: //
3008: // MessageId: ERROR_NO_SUCH_USER
3009: //
3010: // MessageText:
3011: //
3012: // The specified user does not exist.
3013: //
3014: #define ERROR_NO_SUCH_USER 1317L
3015:
3016: //
3017: // MessageId: ERROR_GROUP_EXISTS
3018: //
3019: // MessageText:
3020: //
3021: // The specified group already exists.
3022: //
3023: #define ERROR_GROUP_EXISTS 1318L
3024:
3025: //
3026: // MessageId: ERROR_NO_SUCH_GROUP
3027: //
3028: // MessageText:
3029: //
3030: // The specified group does not exist.
3031: //
3032: #define ERROR_NO_SUCH_GROUP 1319L
3033:
3034: //
3035: // MessageId: ERROR_MEMBER_IN_GROUP
3036: //
3037: // MessageText:
3038: //
3039: // The specified user account is already in the specified group account.
3040: // Also used to indicate a group can not be deleted because it contains
3041: // a member.
3042: //
3043: #define ERROR_MEMBER_IN_GROUP 1320L
3044:
3045: //
3046: // MessageId: ERROR_MEMBER_NOT_IN_GROUP
3047: //
3048: // MessageText:
3049: //
3050: // The specified user account is not a member of the specified group account.
3051: //
3052: #define ERROR_MEMBER_NOT_IN_GROUP 1321L
3053:
3054: //
3055: // MessageId: ERROR_LAST_ADMIN
3056: //
3057: // MessageText:
3058: //
3059: // Indicates the requested operation would disable or delete the last
3060: // remaining administration account. This is not allowed to prevent
3061: // creating a situation in which the system will not be administratable.
3062: //
3063: #define ERROR_LAST_ADMIN 1322L
3064:
3065: //
3066: // MessageId: ERROR_WRONG_PASSWORD
3067: //
3068: // MessageText:
3069: //
3070: // When trying to update a password, this return status indicates that
3071: // the value provided as the current password is not correct.
3072: //
3073: #define ERROR_WRONG_PASSWORD 1323L
3074:
3075: //
3076: // MessageId: ERROR_ILL_FORMED_PASSWORD
3077: //
3078: // MessageText:
3079: //
3080: // When trying to update a password, this return status indicates that
3081: // the value provided for the new password contains values that are
3082: // not allowed in passwords.
3083: //
3084: #define ERROR_ILL_FORMED_PASSWORD 1324L
3085:
3086: //
3087: // MessageId: ERROR_PASSWORD_RESTRICTION
3088: //
3089: // MessageText:
3090: //
3091: // When trying to update a password, this status indicates that some
3092: // password update rule has been violated. For example, the password
3093: // may not meet length criteria.
3094: //
3095: #define ERROR_PASSWORD_RESTRICTION 1325L
3096:
3097: //
3098: // MessageId: ERROR_LOGON_FAILURE
3099: //
3100: // MessageText:
3101: //
3102: // The attempted logon is invalid. This is either due to a bad username
3103: // or authentication information.
3104: //
3105: #define ERROR_LOGON_FAILURE 1326L
3106:
3107: //
3108: // MessageId: ERROR_ACCOUNT_RESTRICTION
3109: //
3110: // MessageText:
3111: //
3112: // Indicates a referenced user name and authentication information are
3113: // valid, but some user account restriction has prevented successful
3114: // authentication (such as time-of-day restrictions).
3115: //
3116: #define ERROR_ACCOUNT_RESTRICTION 1327L
3117:
3118: //
3119: // MessageId: ERROR_INVALID_LOGON_HOURS
3120: //
3121: // MessageText:
3122: //
3123: // The user account has time restrictions and may not be logged onto
3124: // at this time.
3125: //
3126: #define ERROR_INVALID_LOGON_HOURS 1328L
3127:
3128: //
3129: // MessageId: ERROR_INVALID_WORKSTATION
3130: //
3131: // MessageText:
3132: //
3133: // The user account is restricted such that it may not be used to
3134: // log on from the source workstation.
3135: //
3136: #define ERROR_INVALID_WORKSTATION 1329L
3137:
3138: //
3139: // MessageId: ERROR_PASSWORD_EXPIRED
3140: //
3141: // MessageText:
3142: //
3143: // The user account's password has expired.
3144: //
3145: #define ERROR_PASSWORD_EXPIRED 1330L
3146:
3147: //
3148: // MessageId: ERROR_ACCOUNT_DISABLED
3149: //
3150: // MessageText:
3151: //
3152: // The referenced account is currently disabled and may not be logged on to.
3153: //
3154: #define ERROR_ACCOUNT_DISABLED 1331L
3155:
3156: //
3157: // MessageId: ERROR_NONE_MAPPED
3158: //
3159: // MessageText:
3160: //
3161: // None of the information to be translated has been translated.
3162: //
3163: #define ERROR_NONE_MAPPED 1332L
3164:
3165: //
3166: // MessageId: ERROR_TOO_MANY_LUIDS_REQUESTED
3167: //
3168: // MessageText:
3169: //
3170: // The number of LUIDs requested may not be allocated with a single
3171: // allocation.
3172: //
3173: #define ERROR_TOO_MANY_LUIDS_REQUESTED 1333L
3174:
3175: //
3176: // MessageId: ERROR_LUIDS_EXHAUSTED
3177: //
3178: // MessageText:
3179: //
3180: // Indicates there are no more LUIDs to allocate.
3181: //
3182: #define ERROR_LUIDS_EXHAUSTED 1334L
3183:
3184: //
3185: // MessageId: ERROR_INVALID_SUB_AUTHORITY
3186: //
3187: // MessageText:
3188: //
3189: // Indicates the sub-authority value is invalid for the particular use.
3190: //
3191: #define ERROR_INVALID_SUB_AUTHORITY 1335L
3192:
3193: //
3194: // MessageId: ERROR_INVALID_ACL
3195: //
3196: // MessageText:
3197: //
3198: // Indicates the ACL structure is not valid.
3199: //
3200: #define ERROR_INVALID_ACL 1336L
3201:
3202: //
3203: // MessageId: ERROR_INVALID_SID
3204: //
3205: // MessageText:
3206: //
3207: // Indicates the SID structure is not valid.
3208: //
3209: #define ERROR_INVALID_SID 1337L
3210:
3211: //
3212: // MessageId: ERROR_INVALID_SECURITY_DESCR
3213: //
3214: // MessageText:
3215: //
3216: // Indicates the SECURITY_DESCRIPTOR structure is not valid.
3217: //
3218: #define ERROR_INVALID_SECURITY_DESCR 1338L
3219:
3220: //
3221: // MessageId: ERROR_BAD_INHERITANCE_ACL
3222: //
3223: // MessageText:
3224: //
3225: // Indicates that an attempt to build either an inherited ACL or ACE
3226: // was not successful.
3227: // This can be caused by a number of things. One of the more probable
3228: // causes is the replacement of a CreatorId with an SID that didn't fit
3229: // into the ACE or ACL.
3230: //
3231: #define ERROR_BAD_INHERITANCE_ACL 1340L
3232:
3233: //
3234: // MessageId: ERROR_SERVER_DISABLED
3235: //
3236: // MessageText:
3237: //
3238: // The GUID allocation server is [already] disabled at the moment.
3239: //
3240: #define ERROR_SERVER_DISABLED 1341L
3241:
3242: //
3243: // MessageId: ERROR_SERVER_NOT_DISABLED
3244: //
3245: // MessageText:
3246: //
3247: // The GUID allocation server is [already] enabled at the moment.
3248: //
3249: #define ERROR_SERVER_NOT_DISABLED 1342L
3250:
3251: //
3252: // MessageId: ERROR_INVALID_ID_AUTHORITY
3253: //
3254: // MessageText:
3255: //
3256: // The value provided was an invalid value for an identifier authority.
3257: //
3258: #define ERROR_INVALID_ID_AUTHORITY 1343L
3259:
3260: //
3261: // MessageId: ERROR_ALLOTTED_SPACE_EXCEEDED
3262: //
3263: // MessageText:
3264: //
3265: // When a block of memory is allotted for future updates, such as the memory
3266: // allocated to hold discretionary access control and primary group information,
3267: // successive updates may exceed the amount of memory originally allotted.
3268: // Since quota may already have been charged to several processes which have
3269: // handles to the object, it is not reasonable to alter the size of the
3270: // allocated memory. Instead, a request that requires more memory than has
3271: // been allotted must fail and the ERROR_ALLOTTED_SPACE_EXCEEDED error returned.
3272: //
3273: #define ERROR_ALLOTTED_SPACE_EXCEEDED 1344L
3274:
3275: //
3276: // MessageId: ERROR_INVALID_GROUP_ATTRIBUTES
3277: //
3278: // MessageText:
3279: //
3280: // The specified attributes are invalid, or incompatible with the
3281: // attributes for the group as a whole.
3282: //
3283: #define ERROR_INVALID_GROUP_ATTRIBUTES 1345L
3284:
3285: //
3286: // MessageId: ERROR_BAD_IMPERSONATION_LEVEL
3287: //
3288: // MessageText:
3289: //
3290: // A specified impersonation level is invalid.
3291: // Also used to indicate a required impersonation level was not provided.
3292: //
3293: #define ERROR_BAD_IMPERSONATION_LEVEL 1346L
3294:
3295: //
3296: // MessageId: ERROR_CANT_OPEN_ANONYMOUS
3297: //
3298: // MessageText:
3299: //
3300: // An attempt was made to open an Anonymous level token.
3301: // Anonymous tokens may not be opened.
3302: //
3303: #define ERROR_CANT_OPEN_ANONYMOUS 1347L
3304:
3305: //
3306: // MessageId: ERROR_BAD_VALIDATION_CLASS
3307: //
3308: // MessageText:
3309: //
3310: // The validation information class requested was invalid.
3311: //
3312: #define ERROR_BAD_VALIDATION_CLASS 1348L
3313:
3314: //
3315: // MessageId: ERROR_BAD_TOKEN_TYPE
3316: //
3317: // MessageText:
3318: //
3319: // The type of a token object is inapropriate for its attempted use.
3320: //
3321: #define ERROR_BAD_TOKEN_TYPE 1349L
3322:
3323: //
3324: // MessageId: ERROR_NO_SECURITY_ON_OBJECT
3325: //
3326: // MessageText:
3327: //
3328: // Indicates an attempt was made to operate on the security of
3329: // an object that does not have security associated with it.
3330: //
3331: #define ERROR_NO_SECURITY_ON_OBJECT 1350L
3332:
3333: //
3334: // MessageId: ERROR_CANT_ACCESS_DOMAIN_INFO
3335: //
3336: // MessageText:
3337: //
3338: // Indicates a domain controller could not be contacted or that
3339: // objects within the domain are protected such that necessary
3340: // information could not be retrieved.
3341: //
3342: #define ERROR_CANT_ACCESS_DOMAIN_INFO 1351L
3343:
3344: //
3345: // MessageId: ERROR_INVALID_SERVER_STATE
3346: //
3347: // MessageText:
3348: //
3349: // Indicates the Sam Server was in the wrong state to
3350: // perform the desired operation.
3351: //
3352: #define ERROR_INVALID_SERVER_STATE 1352L
3353:
3354: //
3355: // MessageId: ERROR_INVALID_DOMAIN_STATE
3356: //
3357: // MessageText:
3358: //
3359: // Indicates the Domain was in the wrong state to
3360: // perform the desired operation.
3361: //
3362: #define ERROR_INVALID_DOMAIN_STATE 1353L
3363:
3364: //
3365: // MessageId: ERROR_INVALID_DOMAIN_ROLE
3366: //
3367: // MessageText:
3368: //
3369: // Indicates the desired operation cannot be completed
3370: // with the domain in its present role.
3371: //
3372: #define ERROR_INVALID_DOMAIN_ROLE 1354L
3373:
3374: //
3375: // MessageId: ERROR_NO_SUCH_DOMAIN
3376: //
3377: // MessageText:
3378: //
3379: // The specified Domain did not exist.
3380: //
3381: #define ERROR_NO_SUCH_DOMAIN 1355L
3382:
3383: //
3384: // MessageId: ERROR_DOMAIN_EXISTS
3385: //
3386: // MessageText:
3387: //
3388: // The specified Domain already exists.
3389: //
3390: #define ERROR_DOMAIN_EXISTS 1356L
3391:
3392: //
3393: // MessageId: ERROR_DOMAIN_LIMIT_EXCEEDED
3394: //
3395: // MessageText:
3396: //
3397: // An attempt to exceed the limit on the number of domains per server
3398: // for this release.
3399: //
3400: #define ERROR_DOMAIN_LIMIT_EXCEEDED 1357L
3401:
3402: //
3403: // MessageId: ERROR_INTERNAL_DB_CORRUPTION
3404: //
3405: // MessageText:
3406: //
3407: // This error indicates that the requested operation cannot be
3408: // completed due to a catastrophic media failure or on-disk data
3409: // structure corruption
3410: //
3411: #define ERROR_INTERNAL_DB_CORRUPTION 1358L
3412:
3413: //
3414: // MessageId: ERROR_INTERNAL_ERROR
3415: //
3416: // MessageText:
3417: //
3418: // This error indicates that the SAM server has encounterred an
3419: // internal consistency error in its database. This catastrophic
3420: // failure will prevent further operation of SAM
3421: //
3422: #define ERROR_INTERNAL_ERROR 1359L
3423:
3424: //
3425: // MessageId: ERROR_GENERIC_NOT_MAPPED
3426: //
3427: // MessageText:
3428: //
3429: // Indicates generic access types were contained in an access mask
3430: // which should already be mapped to non-generic access types.
3431: //
3432: #define ERROR_GENERIC_NOT_MAPPED 1360L
3433:
3434: //
3435: // MessageId: ERROR_BAD_DESCRIPTOR_FORMAT
3436: //
3437: // MessageText:
3438: //
3439: // Indicates a security descriptor is not in the necessary format (absolute
3440: // or self-relative).
3441: //
3442: #define ERROR_BAD_DESCRIPTOR_FORMAT 1361L
3443:
3444: //
3445: // MessageId: ERROR_NOT_LOGON_PROCESS
3446: //
3447: // MessageText:
3448: //
3449: // The requested action is restricted for use by logon processes
3450: // only. The calling process has not registered as a logon process.
3451: //
3452: #define ERROR_NOT_LOGON_PROCESS 1362L
3453:
3454: //
3455: // MessageId: ERROR_LOGON_SESSION_EXISTS
3456: //
3457: // MessageText:
3458: //
3459: // A attempt has been made to start a new session manager or
3460: // LSA logon session with an ID that is alread in use.
3461: //
3462: #define ERROR_LOGON_SESSION_EXISTS 1363L
3463:
3464: //
3465: // MessageId: ERROR_NO_SUCH_PACKAGE
3466: //
3467: // MessageText:
3468: //
3469: // A specified authentication package is unknown
3470: //
3471: #define ERROR_NO_SUCH_PACKAGE 1364L
3472:
3473: //
3474: // MessageId: ERROR_BAD_LOGON_SESSION_STATE
3475: //
3476: // MessageText:
3477: //
3478: // The logon session is not in a state the is consistent with the
3479: // requested operation.
3480: //
3481: #define ERROR_BAD_LOGON_SESSION_STATE 1365L
3482:
3483: //
3484: // MessageId: ERROR_LOGON_SESSION_COLLISION
3485: //
3486: // MessageText:
3487: //
3488: // The logon session is not in a state the is consistent with the
3489: // requested operation. BUG, BUG - fix this message
3490: //
3491: #define ERROR_LOGON_SESSION_COLLISION 1366L
3492:
3493: //
3494: // MessageId: ERROR_INVALID_LOGON_TYPE
3495: //
3496: // MessageText:
3497: //
3498: // Indicates an invalid value has been provided for LogonType has been
3499: // requested.
3500: //
3501: #define ERROR_INVALID_LOGON_TYPE 1367L
3502:
3503: //
3504: // MessageId: ERROR_CANNOT_IMPERSONATE
3505: //
3506: // MessageText:
3507: //
3508: // Indicates that an attempt has been made to impersonate via a named
3509: // pipe that has not yet been read from.
3510: //
3511: #define ERROR_CANNOT_IMPERSONATE 1368L
3512:
3513: //
3514: // MessageId: ERROR_RXACT_INVALID_STATE
3515: //
3516: // MessageText:
3517: //
3518: // Indicates that the transaction state of a registry sub-tree is
3519: // incompatible with the requested operation.
3520: // For example, a request has been made to start a new transaction with
3521: // one already in progress, or a request to apply a transaction when one
3522: // is not currently in progress.
3523: // This status value is returned by the runtime library (RTL) registry
3524: // transaction package (RXact).
3525: //
3526: #define ERROR_RXACT_INVALID_STATE 1369L
3527:
3528: //
3529: // MessageId: ERROR_RXACT_COMMIT_FAILURE
3530: //
3531: // MessageText:
3532: //
3533: // Indicates an error has occured during a registry transaction commit.
3534: // The database has been left in an unknown, but probably inconsistent,
3535: // state. The state of the registry transaction is left as COMMITTING.
3536: // This status value is returned by the runtime library (RTL) registry
3537: // transaction package (RXact).
3538: //
3539: #define ERROR_RXACT_COMMIT_FAILURE 1370L
3540:
3541: //
3542: // MessageId: ERROR_SPECIAL_ACCOUNT
3543: //
3544: // MessageText:
3545: //
3546: // Indicates an operation has been attempted on a built-in (special)
3547: // SAM account which is incompatible with built-in accounts. For
3548: // example, built-in accounts can not be re-named or deleted.
3549: //
3550: #define ERROR_SPECIAL_ACCOUNT 1371L
3551:
3552: //
3553: // MessageId: ERROR_SPECIAL_GROUP
3554: //
3555: // MessageText:
3556: //
3557: // The operation requested may not be performed on the specified
3558: // group because it is a built-in special group.
3559: //
3560: #define ERROR_SPECIAL_GROUP 1372L
3561:
3562: //
3563: // MessageId: ERROR_SPECIAL_USER
3564: //
3565: // MessageText:
3566: //
3567: // The operation requested may not be performed on the specified
3568: // user because it is a built-in special user.
3569: //
3570: #define ERROR_SPECIAL_USER 1373L
3571:
3572: //
3573: // MessageId: ERROR_MEMBERS_PRIMARY_GROUP
3574: //
3575: // MessageText:
3576: //
3577: // Indicates a member can not be removed from a group because the
3578: // group is currently the member's primary group.
3579: //
3580: #define ERROR_MEMBERS_PRIMARY_GROUP 1374L
3581:
3582: //
3583: // MessageId: ERROR_TOKEN_ALREADY_IN_USE
3584: //
3585: // MessageText:
3586: //
3587: // An attempt was made to establish a token for use as a primary token
3588: // but the token is already in use. A token can only be the primary token
3589: // of one process at a time.
3590: //
3591: #define ERROR_TOKEN_ALREADY_IN_USE 1375L
3592:
3593: //
3594: // MessageId: ERROR_NO_SUCH_ALIAS
3595: //
3596: // MessageText:
3597: //
3598: // The specified alias does not exist.
3599: //
3600: #define ERROR_NO_SUCH_ALIAS 1376L
3601:
3602: //
3603: // MessageId: ERROR_MEMBER_NOT_IN_ALIAS
3604: //
3605: // MessageText:
3606: //
3607: // The specified account name is not a member of the alias.
3608: //
3609: #define ERROR_MEMBER_NOT_IN_ALIAS 1377L
3610:
3611: //
3612: // MessageId: ERROR_MEMBER_IN_ALIAS
3613: //
3614: // MessageText:
3615: //
1.1.1.3 ! root 3616: // The specified account name is already a member of the alias.
1.1.1.2 root 3617: //
3618: #define ERROR_MEMBER_IN_ALIAS 1378L
3619:
3620: //
3621: // MessageId: ERROR_ALIAS_EXISTS
3622: //
3623: // MessageText:
3624: //
3625: // The specified alias already exists.
3626: //
3627: #define ERROR_ALIAS_EXISTS 1379L
3628:
3629: //
3630: // MessageId: ERROR_LOGON_NOT_GRANTED
3631: //
3632: // MessageText:
3633: //
3634: // A requested type of logon (e.g., Interactive, Network, Service) is not
3635: // granted by the target system's local security policy. Please ask the
3636: // system administrator to grant the necessary form of logon.
3637: //
3638: #define ERROR_LOGON_NOT_GRANTED 1380L
3639:
3640: //
3641: // MessageId: ERROR_TOO_MANY_SECRETS
3642: //
3643: // MessageText:
3644: //
3645: // The maximum number of secrets that may be stored in a single system has been
3646: // exceeded. The length and number of secrets is limited to satisfy United
3647: // States State Department export restrictions.
3648: //
3649: #define ERROR_TOO_MANY_SECRETS 1381L
3650:
3651: //
3652: // MessageId: ERROR_SECRET_TOO_LONG
3653: //
3654: // MessageText:
3655: //
3656: // The length of an secret exceeds the maximum length allowed. The length and
3657: // number of secrets is limited to satisfy United States State Department
3658: // export restrictions.
3659: //
3660: #define ERROR_SECRET_TOO_LONG 1382L
3661:
3662: //
3663: // MessageId: ERROR_INTERNAL_DB_ERROR
3664: //
3665: // MessageText:
3666: //
3667: // The Local Security Authority (LSA) database contains in internal inconsistency.
3668: //
3669: #define ERROR_INTERNAL_DB_ERROR 1383L
3670:
3671: //
3672: // MessageId: ERROR_TOO_MANY_CONTEXT_IDS
3673: //
3674: // MessageText:
3675: //
3676: // During a logon attempt, the user's security context accumulated too many
3677: // security IDs. This is a very unusual situation. Remove the user from
3678: // some groups or aliases to reduce the number of security ids to incorporate
3679: // into the security context.
3680: //
3681: #define ERROR_TOO_MANY_CONTEXT_IDS 1384L
3682:
3683: //
3684: // MessageId: ERROR_LOGON_TYPE_NOT_GRANTED
3685: //
3686: // MessageText:
3687: //
3688: // A user has requested a type of logon (e.g., interactive or network) that
3689: // has not be granted. An administrator has control over who may logon
3690: // interactively and through the network.
3691: //
3692: #define ERROR_LOGON_TYPE_NOT_GRANTED 1385L
3693:
3694: //
3695: // MessageId: ERROR_NT_CROSS_ENCRYPTION_REQUIRED
3696: //
3697: // MessageText:
3698: //
3699: // An attempt was made to change a user password in the security account manager
3700: // without providing the necessary NT cross-encrypted password.
3701: //
3702: #define ERROR_NT_CROSS_ENCRYPTION_REQUIRED 1386L
3703:
3704: //
3705: // MessageId: ERROR_NO_SUCH_MEMBER
3706: //
3707: // MessageText:
3708: //
3709: // A new member could not be added to an alias because the member does not exist.
3710: //
3711: #define ERROR_NO_SUCH_MEMBER 1387L
3712:
3713: //
3714: // MessageId: ERROR_INVALID_MEMBER
3715: //
3716: // MessageText:
3717: //
3718: // A new member could not be added to an alias because the member has the
3719: // wrong account type.
3720: //
3721: #define ERROR_INVALID_MEMBER 1388L
3722:
3723: //
3724: // MessageId: ERROR_TOO_MANY_SIDS
3725: //
3726: // MessageText:
3727: //
3728: // Too many Sids have been specified.
3729: //
3730: #define ERROR_TOO_MANY_SIDS 1389L
3731:
3732: //
3733: // MessageId: ERROR_LM_CROSS_ENCRYPTION_REQUIRED
3734: //
3735: // MessageText:
3736: //
3737: // An attempt was made to change a user password in the security account manager
3738: // without providing the necessary LM cross-encrypted password.
3739: //
3740: #define ERROR_LM_CROSS_ENCRYPTION_REQUIRED 1390L
3741:
3742: //
3743: // MessageId: ERROR_NO_INHERITANCE
3744: //
3745: // MessageText:
3746: //
3747: // Indicates an ACL contains no inheritable components
3748: //
3749: #define ERROR_NO_INHERITANCE 1391L
3750:
3751: //
3752: // MessageId: ERROR_FILE_CORRUPT
3753: //
3754: // MessageText:
3755: //
3756: // The file or directory is corrupt and non-readable.
3757: //
3758: #define ERROR_FILE_CORRUPT 1392L
3759:
3760: //
3761: // MessageId: ERROR_DISK_CORRUPT
3762: //
3763: // MessageText:
3764: //
3765: // The disk structure is corrupt and non-readable.
3766: //
3767: #define ERROR_DISK_CORRUPT 1393L
3768:
3769: // End of security error codes
3770:
3771:
3772:
3773: ///////////////////////////
3774: // //
3775: // WinUser Error Codes //
3776: // //
3777: ///////////////////////////
3778:
3779:
3780: //
3781: // MessageId: ERROR_INVALID_WINDOW_HANDLE
3782: //
3783: // MessageText:
3784: //
3785: // Invalid window handle.
3786: //
3787: #define ERROR_INVALID_WINDOW_HANDLE 1400L
3788:
3789: //
3790: // MessageId: ERROR_INVALID_MENU_HANDLE
3791: //
3792: // MessageText:
3793: //
3794: // Invalid menu handle.
3795: //
3796: #define ERROR_INVALID_MENU_HANDLE 1401L
3797:
3798: //
3799: // MessageId: ERROR_INVALID_CURSOR_HANDLE
3800: //
3801: // MessageText:
3802: //
3803: // Invalid cursor handle.
3804: //
3805: #define ERROR_INVALID_CURSOR_HANDLE 1402L
3806:
3807: //
3808: // MessageId: ERROR_INVALID_ACCEL_HANDLE
3809: //
3810: // MessageText:
3811: //
3812: // Invalid accelerator-table handle.
3813: //
3814: #define ERROR_INVALID_ACCEL_HANDLE 1403L
3815:
3816: //
3817: // MessageId: ERROR_INVALID_HOOK_HANDLE
3818: //
3819: // MessageText:
3820: //
3821: // Invalid hook handle.
3822: //
3823: #define ERROR_INVALID_HOOK_HANDLE 1404L
3824:
3825: //
3826: // MessageId: ERROR_INVALID_DWP_HANDLE
3827: //
3828: // MessageText:
3829: //
3830: // Invalid DeferWindowPos handle.
3831: //
3832: #define ERROR_INVALID_DWP_HANDLE 1405L
3833:
3834: //
3835: // MessageId: ERROR_TLW_WITH_WSCHILD
3836: //
3837: // MessageText:
3838: //
3839: // CreateWindow() failed, creating top-level window with WS_CHILD style.
3840: //
3841: #define ERROR_TLW_WITH_WSCHILD 1406L
3842:
3843: //
3844: // MessageId: ERROR_CANNOT_FIND_WND_CLASS
3845: //
3846: // MessageText:
3847: //
3848: // Cannot find window class.
3849: //
3850: #define ERROR_CANNOT_FIND_WND_CLASS 1407L
3851:
3852: //
3853: // MessageId: ERROR_WINDOW_OF_OTHER_THREAD
3854: //
3855: // MessageText:
3856: //
3857: // Invalid window, belongs to other thread.
3858: //
3859: #define ERROR_WINDOW_OF_OTHER_THREAD 1408L
3860:
3861: //
3862: // MessageId: ERROR_HOTKEY_ALREADY_REGISTERED
3863: //
3864: // MessageText:
3865: //
3866: // Hotkey already registered.
3867: //
3868: #define ERROR_HOTKEY_ALREADY_REGISTERED 1409L
3869:
3870: //
3871: // MessageId: ERROR_CLASS_ALREADY_EXISTS
3872: //
3873: // MessageText:
3874: //
3875: // Class already exists.
3876: //
3877: #define ERROR_CLASS_ALREADY_EXISTS 1410L
3878:
3879: //
3880: // MessageId: ERROR_CLASS_DOES_NOT_EXIST
3881: //
3882: // MessageText:
3883: //
3884: // Class does not exist.
3885: //
3886: #define ERROR_CLASS_DOES_NOT_EXIST 1411L
3887:
3888: //
3889: // MessageId: ERROR_CLASS_HAS_WINDOWS
3890: //
3891: // MessageText:
3892: //
3893: // Class still has open windows.
3894: //
3895: #define ERROR_CLASS_HAS_WINDOWS 1412L
3896:
3897: //
3898: // MessageId: ERROR_INVALID_INDEX
3899: //
3900: // MessageText:
3901: //
3902: // Invalid index.
3903: //
3904: #define ERROR_INVALID_INDEX 1413L
3905:
3906: //
3907: // MessageId: ERROR_INVALID_ICON_HANDLE
3908: //
3909: // MessageText:
3910: //
3911: // Invalid icon handle.
3912: //
3913: #define ERROR_INVALID_ICON_HANDLE 1414L
3914:
3915: //
3916: // MessageId: ERROR_PRIVATE_DIALOG_INDEX
3917: //
3918: // MessageText:
3919: //
3920: // Using private DIALOG window words.
3921: //
3922: #define ERROR_PRIVATE_DIALOG_INDEX 1415L
3923:
3924: //
3925: // MessageId: ERROR_LISTBOX_ID_NOT_FOUND
3926: //
3927: // MessageText:
3928: //
3929: // Listbox ID not found.
3930: //
3931: #define ERROR_LISTBOX_ID_NOT_FOUND 1416L
3932:
3933: //
3934: // MessageId: ERROR_NO_WILDCARD_CHARACTERS
3935: //
3936: // MessageText:
3937: //
3938: // No wildcard characters found.
3939: //
3940: #define ERROR_NO_WILDCARD_CHARACTERS 1417L
3941:
3942: //
3943: // MessageId: ERROR_CLIPBOARD_NOT_OPEN
3944: //
3945: // MessageText:
3946: //
3947: // Thread doesn't have clipboard open.
3948: //
3949: #define ERROR_CLIPBOARD_NOT_OPEN 1418L
3950:
3951: //
3952: // MessageId: ERROR_HOTKEY_NOT_REGISTERED
3953: //
3954: // MessageText:
3955: //
3956: // Hotkey not registered.
3957: //
3958: #define ERROR_HOTKEY_NOT_REGISTERED 1419L
3959:
3960: //
3961: // MessageId: ERROR_WINDOW_NOT_DIALOG
3962: //
3963: // MessageText:
3964: //
3965: // The window is not a valid dialog window.
3966: //
3967: #define ERROR_WINDOW_NOT_DIALOG 1420L
3968:
3969: //
3970: // MessageId: ERROR_CONTROL_ID_NOT_FOUND
3971: //
3972: // MessageText:
3973: //
3974: // Control ID not found.
3975: //
3976: #define ERROR_CONTROL_ID_NOT_FOUND 1421L
3977:
3978: //
3979: // MessageId: ERROR_INVALID_COMBOBOX_MESSAGE
3980: //
3981: // MessageText:
3982: //
3983: // Invalid Message, combobox doesn't have an edit control.
3984: //
3985: #define ERROR_INVALID_COMBOBOX_MESSAGE 1422L
3986:
3987: //
3988: // MessageId: ERROR_WINDOW_NOT_COMBOBOX
3989: //
3990: // MessageText:
3991: //
3992: // The window is not a combobox.
3993: //
3994: #define ERROR_WINDOW_NOT_COMBOBOX 1423L
3995:
3996: //
3997: // MessageId: ERROR_INVALID_EDIT_HEIGHT
3998: //
3999: // MessageText:
4000: //
4001: // Height must be less than 256.
4002: //
4003: #define ERROR_INVALID_EDIT_HEIGHT 1424L
4004:
4005: //
4006: // MessageId: ERROR_DC_NOT_FOUND
4007: //
4008: // MessageText:
4009: //
4010: // Invalid HDC passed to ReleaseDC.
4011: //
4012: #define ERROR_DC_NOT_FOUND 1425L
4013:
4014: //
4015: // MessageId: ERROR_INVALID_HOOK_FILTER
4016: //
4017: // MessageText:
4018: //
4019: // Invalid hook filter type.
4020: //
4021: #define ERROR_INVALID_HOOK_FILTER 1426L
4022:
4023: //
4024: // MessageId: ERROR_INVALID_FILTER_PROC
4025: //
4026: // MessageText:
4027: //
4028: // Invalid filter proc.
4029: //
4030: #define ERROR_INVALID_FILTER_PROC 1427L
4031:
4032: //
4033: // MessageId: ERROR_HOOK_NEEDS_HMOD
4034: //
4035: // MessageText:
4036: //
4037: // Cannot set non-local hook without an module handle.
4038: //
4039: #define ERROR_HOOK_NEEDS_HMOD 1428L
4040:
4041: //
4042: // MessageId: ERROR_GLOBAL_ONLY_HOOK
4043: //
4044: // MessageText:
4045: //
4046: // This hook can only be set globally.
4047: //
4048: #define ERROR_GLOBAL_ONLY_HOOK 1429L
4049:
4050: //
4051: // MessageId: ERROR_JOURNAL_HOOK_SET
4052: //
4053: // MessageText:
4054: //
4055: // The journal hook is already installed.
4056: //
4057: #define ERROR_JOURNAL_HOOK_SET 1430L
4058:
4059: //
4060: // MessageId: ERROR_HOOK_NOT_INSTALLED
4061: //
4062: // MessageText:
4063: //
4064: // Hook not installed.
4065: //
4066: #define ERROR_HOOK_NOT_INSTALLED 1431L
4067:
4068: //
4069: // MessageId: ERROR_INVALID_LB_MESSAGE
4070: //
4071: // MessageText:
4072: //
4073: // Invalid message for single-selection listbox.
4074: //
4075: #define ERROR_INVALID_LB_MESSAGE 1432L
4076:
4077: //
4078: // MessageId: ERROR_SETCOUNT_ON_BAD_LB
4079: //
4080: // MessageText:
4081: //
4082: // LB_SETCOUNT sent to non-lazy listbox.
4083: //
4084: #define ERROR_SETCOUNT_ON_BAD_LB 1433L
4085:
4086: //
4087: // MessageId: ERROR_LB_WITHOUT_TABSTOPS
4088: //
4089: // MessageText:
4090: //
4091: // This listbox doesn't support tab stops.
4092: //
4093: #define ERROR_LB_WITHOUT_TABSTOPS 1434L
4094:
4095: //
4096: // MessageId: ERROR_DESTROY_OBJECT_OF_OTHER_THREAD
4097: //
4098: // MessageText:
4099: //
4100: // Cannot destroy object created by another thread.
4101: //
4102: #define ERROR_DESTROY_OBJECT_OF_OTHER_THREAD 1435L
4103:
4104: //
4105: // MessageId: ERROR_CHILD_WINDOW_MENU
4106: //
4107: // MessageText:
4108: //
4109: // Child windows can't have menus.
4110: //
4111: #define ERROR_CHILD_WINDOW_MENU 1436L
4112:
4113: //
4114: // MessageId: ERROR_NO_SYSTEM_MENU
4115: //
4116: // MessageText:
4117: //
4118: // Window doesn't have system menu.
4119: //
4120: #define ERROR_NO_SYSTEM_MENU 1437L
4121:
4122: //
4123: // MessageId: ERROR_INVALID_MSGBOX_STYLE
4124: //
4125: // MessageText:
4126: //
4127: // Invalid message box style.
4128: //
4129: #define ERROR_INVALID_MSGBOX_STYLE 1438L
4130:
4131: //
4132: // MessageId: ERROR_INVALID_SPI_VALUE
4133: //
4134: // MessageText:
4135: //
4136: // Invalid SPI_* parameter.
4137: //
4138: #define ERROR_INVALID_SPI_VALUE 1439L
4139:
4140: //
4141: // MessageId: ERROR_SCREEN_ALREADY_LOCKED
4142: //
4143: // MessageText:
4144: //
4145: // Screen already locked.
4146: //
4147: #define ERROR_SCREEN_ALREADY_LOCKED 1440L
4148:
4149: //
1.1.1.3 ! root 4150: // MessageId: ERROR_HWNDS_HAVE_DIFF_PARENT
1.1.1.2 root 4151: //
4152: // MessageText:
4153: //
4154: // All DeferWindowPos() HWNDs must have same parent.
4155: //
1.1.1.3 ! root 4156: #define ERROR_HWNDS_HAVE_DIFF_PARENT 1441L
1.1.1.2 root 4157:
4158: //
4159: // MessageId: ERROR_NOT_CHILD_WINDOW
4160: //
4161: // MessageText:
4162: //
4163: // Window is not a child window.
4164: //
4165: #define ERROR_NOT_CHILD_WINDOW 1442L
4166:
4167: //
4168: // MessageId: ERROR_INVALID_GW_COMMAND
4169: //
4170: // MessageText:
4171: //
4172: // Invalid GW_* command.
4173: //
4174: #define ERROR_INVALID_GW_COMMAND 1443L
4175:
4176: //
4177: // MessageId: ERROR_INVALID_THREAD_ID
4178: //
4179: // MessageText:
4180: //
4181: // Invalid thread ID.
4182: //
4183: #define ERROR_INVALID_THREAD_ID 1444L
4184:
4185: //
4186: // MessageId: ERROR_NON_MDICHILD_WINDOW
4187: //
4188: // MessageText:
4189: //
4190: // DefMDIChildProc() called with a non-MDIChild window.
4191: //
4192: #define ERROR_NON_MDICHILD_WINDOW 1445L
4193:
4194: //
4195: // MessageId: ERROR_POPUP_ALREADY_ACTIVE
4196: //
4197: // MessageText:
4198: //
4199: // Popup menu already active.
4200: //
4201: #define ERROR_POPUP_ALREADY_ACTIVE 1446L
4202:
4203: //
4204: // MessageId: ERROR_NO_SCROLLBARS
4205: //
4206: // MessageText:
4207: //
4208: // Window does not have scrollbars.
4209: //
4210: #define ERROR_NO_SCROLLBARS 1447L
4211:
4212: //
4213: // MessageId: ERROR_INVALID_SCROLLBAR_RANGE
4214: //
4215: // MessageText:
4216: //
4217: // Scrollbar range greater than 0x7FFF.
4218: //
4219: #define ERROR_INVALID_SCROLLBAR_RANGE 1448L
4220:
4221: //
4222: // MessageId: ERROR_INVALID_SHOWWIN_COMMAND
4223: //
4224: // MessageText:
4225: //
4226: // Invalid ShowWindow() command.
4227: //
4228: #define ERROR_INVALID_SHOWWIN_COMMAND 1449L
4229:
4230: // End of WinUser error codes
4231:
4232:
4233:
4234: ///////////////////////////
4235: // //
4236: // Eventlog Status Codes //
4237: // //
4238: ///////////////////////////
4239:
4240:
4241: //
4242: // MessageId: ERROR_EVENTLOG_FILE_CORRUPT
4243: //
4244: // MessageText:
4245: //
1.1.1.3 ! root 4246: // The Eventlog logfile %1 is corrupt.
1.1.1.2 root 4247: //
4248: #define ERROR_EVENTLOG_FILE_CORRUPT 1500L
4249:
1.1.1.3 ! root 4250: //
! 4251: // MessageId: ERROR_EVENTLOG_CANT_START
! 4252: //
! 4253: // MessageText:
! 4254: //
! 4255: // No Eventlog log file could be opened. The Eventlog service did not start.
! 4256: //
! 4257: #define ERROR_EVENTLOG_CANT_START 1501L
! 4258:
1.1.1.2 root 4259: // End of eventlog error codes
4260:
4261:
4262:
4263: ///////////////////////////
4264: // //
4265: // RPC Status Codes //
4266: // //
4267: ///////////////////////////
4268:
4269:
4270: //
4271: // MessageId: RPC_S_INVALID_STRING_BINDING
4272: //
4273: // MessageText:
4274: //
4275: // The string binding is invalid.
4276: //
4277: #define RPC_S_INVALID_STRING_BINDING 1700L
4278:
4279: //
4280: // MessageId: RPC_S_WRONG_KIND_OF_BINDING
4281: //
4282: // MessageText:
4283: //
4284: // The binding handle is not the correct type.
4285: //
4286: #define RPC_S_WRONG_KIND_OF_BINDING 1701L
4287:
4288: //
4289: // MessageId: RPC_S_INVALID_BINDING
4290: //
4291: // MessageText:
4292: //
4293: // The binding handle is invalid.
4294: //
4295: #define RPC_S_INVALID_BINDING 1702L
4296:
4297: //
4298: // MessageId: RPC_S_PROTSEQ_NOT_SUPPORTED
4299: //
4300: // MessageText:
4301: //
4302: // The Rpc protocol sequence is not supported.
4303: //
4304: #define RPC_S_PROTSEQ_NOT_SUPPORTED 1703L
4305:
4306: //
4307: // MessageId: RPC_S_INVALID_RPC_PROTSEQ
4308: //
4309: // MessageText:
4310: //
4311: // The rpc protocol sequence is invalid.
4312: //
4313: #define RPC_S_INVALID_RPC_PROTSEQ 1704L
4314:
4315: //
4316: // MessageId: RPC_S_INVALID_STRING_UUID
4317: //
4318: // MessageText:
4319: //
4320: // The string uuid is invalid.
4321: //
4322: #define RPC_S_INVALID_STRING_UUID 1705L
4323:
4324: //
4325: // MessageId: RPC_S_INVALID_ENDPOINT_FORMAT
4326: //
4327: // MessageText:
4328: //
4329: // The endpoint format is invalid.
4330: //
4331: #define RPC_S_INVALID_ENDPOINT_FORMAT 1706L
4332:
4333: //
4334: // MessageId: RPC_S_INVALID_NET_ADDR
4335: //
4336: // MessageText:
4337: //
4338: // The network address is invalid.
4339: //
4340: #define RPC_S_INVALID_NET_ADDR 1707L
4341:
4342: //
4343: // MessageId: RPC_S_NO_ENDPOINT_FOUND
4344: //
4345: // MessageText:
4346: //
4347: // No endpoint was found.
4348: //
4349: #define RPC_S_NO_ENDPOINT_FOUND 1708L
4350:
4351: //
4352: // MessageId: RPC_S_INVALID_TIMEOUT
4353: //
4354: // MessageText:
4355: //
4356: // The timeout value is invalid.
4357: //
4358: #define RPC_S_INVALID_TIMEOUT 1709L
4359:
4360: //
4361: // MessageId: RPC_S_OBJECT_NOT_FOUND
4362: //
4363: // MessageText:
4364: //
4365: // The object uuid was not found.
4366: //
4367: #define RPC_S_OBJECT_NOT_FOUND 1710L
4368:
4369: //
4370: // MessageId: RPC_S_ALREADY_REGISTERED
4371: //
4372: // MessageText:
4373: //
4374: // The object uuid has already been registered.
4375: //
4376: #define RPC_S_ALREADY_REGISTERED 1711L
4377:
4378: //
4379: // MessageId: RPC_S_TYPE_ALREADY_REGISTERED
4380: //
4381: // MessageText:
4382: //
4383: // The type uuid has already been registered.
4384: //
4385: #define RPC_S_TYPE_ALREADY_REGISTERED 1712L
4386:
4387: //
4388: // MessageId: RPC_S_ALREADY_LISTENING
4389: //
4390: // MessageText:
4391: //
4392: // The server is already listening.
4393: //
4394: #define RPC_S_ALREADY_LISTENING 1713L
4395:
4396: //
4397: // MessageId: RPC_S_NO_PROTSEQS_REGISTERED
4398: //
4399: // MessageText:
4400: //
4401: // No protocol sequences have been registered.
4402: //
4403: #define RPC_S_NO_PROTSEQS_REGISTERED 1714L
4404:
4405: //
4406: // MessageId: RPC_S_NOT_LISTENING
4407: //
4408: // MessageText:
4409: //
4410: // The server is not listening.
4411: //
4412: #define RPC_S_NOT_LISTENING 1715L
4413:
4414: //
4415: // MessageId: RPC_S_UNKNOWN_MGR_TYPE
4416: //
4417: // MessageText:
4418: //
4419: // The manager type is unknown.
4420: //
4421: #define RPC_S_UNKNOWN_MGR_TYPE 1716L
4422:
4423: //
4424: // MessageId: RPC_S_UNKNOWN_IF
4425: //
4426: // MessageText:
4427: //
4428: // The interface is unknown.
4429: //
4430: #define RPC_S_UNKNOWN_IF 1717L
4431:
4432: //
4433: // MessageId: RPC_S_NO_BINDINGS
4434: //
4435: // MessageText:
4436: //
4437: // There are no bindings.
4438: //
4439: #define RPC_S_NO_BINDINGS 1718L
4440:
4441: //
4442: // MessageId: RPC_S_NO_PROTSEQS
4443: //
4444: // MessageText:
4445: //
4446: // There are no protocol sequences.
4447: //
4448: #define RPC_S_NO_PROTSEQS 1719L
4449:
4450: //
4451: // MessageId: RPC_S_CANT_CREATE_ENDPOINT
4452: //
4453: // MessageText:
4454: //
4455: // The endpoint can not be created.
4456: //
4457: #define RPC_S_CANT_CREATE_ENDPOINT 1720L
4458:
4459: //
4460: // MessageId: RPC_S_OUT_OF_RESOURCES
4461: //
4462: // MessageText:
4463: //
4464: // Not enough resources are available to complete this operation.
4465: //
4466: #define RPC_S_OUT_OF_RESOURCES 1721L
4467:
4468: //
4469: // MessageId: RPC_S_SERVER_UNAVAILABLE
4470: //
4471: // MessageText:
4472: //
4473: // The server is unavailable.
4474: //
4475: #define RPC_S_SERVER_UNAVAILABLE 1722L
4476:
4477: //
4478: // MessageId: RPC_S_SERVER_TOO_BUSY
4479: //
4480: // MessageText:
4481: //
4482: // The server is too busy to complete this operation.
4483: //
4484: #define RPC_S_SERVER_TOO_BUSY 1723L
4485:
4486: //
4487: // MessageId: RPC_S_INVALID_NETWORK_OPTIONS
4488: //
4489: // MessageText:
4490: //
4491: // The network options are invalid.
4492: //
4493: #define RPC_S_INVALID_NETWORK_OPTIONS 1724L
4494:
4495: //
4496: // MessageId: RPC_S_NO_CALL_ACTIVE
4497: //
4498: // MessageText:
4499: //
4500: // There is not a remote procedure call active in this thread.
4501: //
4502: #define RPC_S_NO_CALL_ACTIVE 1725L
4503:
4504: //
4505: // MessageId: RPC_S_CALL_FAILED
4506: //
4507: // MessageText:
4508: //
4509: // The remote procedure call failed.
4510: //
4511: #define RPC_S_CALL_FAILED 1726L
4512:
4513: //
4514: // MessageId: RPC_S_CALL_FAILED_DNE
4515: //
4516: // MessageText:
4517: //
4518: // The remote procedure call failed and did not execute.
4519: //
4520: #define RPC_S_CALL_FAILED_DNE 1727L
4521:
4522: //
4523: // MessageId: RPC_S_PROTOCOL_ERROR
4524: //
4525: // MessageText:
4526: //
4527: // An rpc protocol error occured.
4528: //
4529: #define RPC_S_PROTOCOL_ERROR 1728L
4530:
4531: //
4532: // MessageId: RPC_S_CANNOT_BIND
4533: //
4534: // MessageText:
4535: //
4536: // An attempt to bind with the server failed.
4537: //
4538: #define RPC_S_CANNOT_BIND 1729L
4539:
4540: //
4541: // MessageId: RPC_S_UNSUPPORTED_TRANS_SYN
4542: //
4543: // MessageText:
4544: //
4545: // The transfer syntax is not supported by the server.
4546: //
4547: #define RPC_S_UNSUPPORTED_TRANS_SYN 1730L
4548:
4549: //
4550: // MessageId: RPC_S_SERVER_OUT_OF_MEMORY
4551: //
4552: // MessageText:
4553: //
4554: // The server has insufficient memory to complete this operation.
4555: //
4556: #define RPC_S_SERVER_OUT_OF_MEMORY 1731L
4557:
4558: //
4559: // MessageId: RPC_S_UNSUPPORTED_TYPE
4560: //
4561: // MessageText:
4562: //
4563: // The type uuid is not supported.
4564: //
4565: #define RPC_S_UNSUPPORTED_TYPE 1732L
4566:
4567: //
4568: // MessageId: RPC_S_INVALID_TAG
4569: //
4570: // MessageText:
4571: //
4572: // The tag is invalid.
4573: //
4574: #define RPC_S_INVALID_TAG 1733L
4575:
4576: //
4577: // MessageId: RPC_S_INVALID_BOUND
4578: //
4579: // MessageText:
4580: //
4581: // The array bounds are invalid.
4582: //
4583: #define RPC_S_INVALID_BOUND 1734L
4584:
4585: //
4586: // MessageId: RPC_S_NO_ENTRY_NAME
4587: //
4588: // MessageText:
4589: //
4590: // The binding does not contain an entry name.
4591: //
4592: #define RPC_S_NO_ENTRY_NAME 1735L
4593:
4594: //
4595: // MessageId: RPC_S_INVALID_NAME_SYNTAX
4596: //
4597: // MessageText:
4598: //
4599: // The name syntax is invalid.
4600: //
4601: #define RPC_S_INVALID_NAME_SYNTAX 1736L
4602:
4603: //
4604: // MessageId: RPC_S_UNSUPPORTED_NAME_SYNTAX
4605: //
4606: // MessageText:
4607: //
4608: // The name syntax is not supported.
4609: //
4610: #define RPC_S_UNSUPPORTED_NAME_SYNTAX 1737L
4611:
4612: //
4613: // MessageId: RPC_S_SERVER_NOT_LISTENING
4614: //
4615: // MessageText:
4616: //
4617: // The server is not listening for remote procedure calls.
4618: //
4619: #define RPC_S_SERVER_NOT_LISTENING 1738L
4620:
4621: //
4622: // MessageId: RPC_S_UUID_NO_ADDRESS
4623: //
4624: // MessageText:
4625: //
4626: // No network address is available to use to construct a uuid.
4627: //
4628: #define RPC_S_UUID_NO_ADDRESS 1739L
4629:
4630: //
4631: // MessageId: RPC_S_DUPLICATE_ENDPOINT
4632: //
4633: // MessageText:
4634: //
4635: // The endpoint is a duplicate.
4636: //
4637: #define RPC_S_DUPLICATE_ENDPOINT 1740L
4638:
4639: //
4640: // MessageId: RPC_S_UNKNOWN_AUTHN_TYPE
4641: //
4642: // MessageText:
4643: //
4644: // The authentication type is unknown.
4645: //
4646: #define RPC_S_UNKNOWN_AUTHN_TYPE 1741L
4647:
4648: //
4649: // MessageId: RPC_S_MAX_CALLS_TOO_SMALL
4650: //
4651: // MessageText:
4652: //
4653: // The maximum number of calls is too small.
4654: //
4655: #define RPC_S_MAX_CALLS_TOO_SMALL 1742L
4656:
4657: //
4658: // MessageId: RPC_S_STRING_TOO_LONG
4659: //
4660: // MessageText:
4661: //
4662: // The string is too long.
4663: //
4664: #define RPC_S_STRING_TOO_LONG 1743L
4665:
4666: //
4667: // MessageId: RPC_S_PROTSEQ_NOT_FOUND
4668: //
4669: // MessageText:
4670: //
4671: // The rpc protocol sequence was not found.
4672: //
4673: #define RPC_S_PROTSEQ_NOT_FOUND 1744L
4674:
4675: //
4676: // MessageId: RPC_S_PROCNUM_OUT_OF_RANGE
4677: //
4678: // MessageText:
4679: //
4680: // The procedure number is out of range.
4681: //
4682: #define RPC_S_PROCNUM_OUT_OF_RANGE 1745L
4683:
4684: //
4685: // MessageId: RPC_S_BINDING_HAS_NO_AUTH
4686: //
4687: // MessageText:
4688: //
4689: // The binding does not contain any authentication information.
4690: //
4691: #define RPC_S_BINDING_HAS_NO_AUTH 1746L
4692:
4693: //
4694: // MessageId: RPC_S_UNKNOWN_AUTHN_SERVICE
4695: //
4696: // MessageText:
4697: //
4698: // The authentication service is unknown.
4699: //
4700: #define RPC_S_UNKNOWN_AUTHN_SERVICE 1747L
4701:
4702: //
4703: // MessageId: RPC_S_UNKNOWN_AUTHN_LEVEL
4704: //
4705: // MessageText:
4706: //
4707: // The authentication level is unknown.
4708: //
4709: #define RPC_S_UNKNOWN_AUTHN_LEVEL 1748L
4710:
4711: //
4712: // MessageId: RPC_S_INVALID_AUTH_IDENTITY
4713: //
4714: // MessageText:
4715: //
4716: // The security context is invalid.
4717: //
4718: #define RPC_S_INVALID_AUTH_IDENTITY 1749L
4719:
4720: //
4721: // MessageId: RPC_S_UNKNOWN_AUTHZ_SERVICE
4722: //
4723: // MessageText:
4724: //
4725: // The authorization service is unknown.
4726: //
4727: #define RPC_S_UNKNOWN_AUTHZ_SERVICE 1750L
4728:
4729: //
4730: // MessageId: EPT_S_INVALID_ENTRY
4731: //
4732: // MessageText:
4733: //
4734: // The entry is invalid.
4735: //
4736: #define EPT_S_INVALID_ENTRY 1751L
4737:
4738: //
4739: // MessageId: EPT_S_CANT_PERFORM_OP
4740: //
4741: // MessageText:
4742: //
4743: // The operation can not be performed.
4744: //
4745: #define EPT_S_CANT_PERFORM_OP 1752L
4746:
4747: //
4748: // MessageId: EPT_S_NOT_REGISTERED
4749: //
4750: // MessageText:
4751: //
4752: // There are not more endpoints available from the endpoint mapper.
4753: //
4754: #define EPT_S_NOT_REGISTERED 1753L
4755:
4756: //
4757: // MessageId: RPC_S_NO_INTERFACES_EXPORTED
4758: //
4759: // MessageText:
4760: //
4761: // No interfaces have been exported.
4762: //
4763: #define RPC_S_NO_INTERFACES_EXPORTED 1754L
4764:
4765: //
4766: // MessageId: RPC_S_INCOMPLETE_NAME
4767: //
4768: // MessageText:
4769: //
4770: // The entry name is incomplete.
4771: //
4772: #define RPC_S_INCOMPLETE_NAME 1755L
4773:
4774: //
4775: // MessageId: RPC_S_INVALID_VERS_OPTION
4776: //
4777: // MessageText:
4778: //
4779: // The version option is invalid.
4780: //
4781: #define RPC_S_INVALID_VERS_OPTION 1756L
4782:
4783: //
4784: // MessageId: RPC_S_NO_MORE_MEMBERS
4785: //
4786: // MessageText:
4787: //
4788: // There are no more members.
4789: //
4790: #define RPC_S_NO_MORE_MEMBERS 1757L
4791:
4792: //
4793: // MessageId: RPC_S_NOTHING_TO_UNEXPORT
4794: //
4795: // MessageText:
4796: //
4797: // There is nothing to unexport.
4798: //
4799: #define RPC_S_NOTHING_TO_UNEXPORT 1758L
4800:
4801: //
4802: // MessageId: RPC_S_INTERFACE_NOT_FOUND
4803: //
4804: // MessageText:
4805: //
4806: // The interface was not found.
4807: //
4808: #define RPC_S_INTERFACE_NOT_FOUND 1759L
4809:
4810: //
4811: // MessageId: RPC_S_ENTRY_ALREADY_EXISTS
4812: //
4813: // MessageText:
4814: //
4815: // The entry already exists.
4816: //
4817: #define RPC_S_ENTRY_ALREADY_EXISTS 1760L
4818:
4819: //
4820: // MessageId: RPC_S_ENTRY_NOT_FOUND
4821: //
4822: // MessageText:
4823: //
4824: // The entry is not found.
4825: //
4826: #define RPC_S_ENTRY_NOT_FOUND 1761L
4827:
4828: //
4829: // MessageId: RPC_S_NAME_SERVICE_UNAVAILABLE
4830: //
4831: // MessageText:
4832: //
4833: // The name service is unavailable.
4834: //
4835: #define RPC_S_NAME_SERVICE_UNAVAILABLE 1762L
4836:
4837: //
4838: // MessageId: RPC_S_INVALID_NAF_IF
4839: //
4840: // MessageText:
4841: //
4842: // The network address family is invalid.
4843: //
4844: #define RPC_S_INVALID_NAF_IF 1763L
4845:
4846: //
4847: // MessageId: RPC_S_CANNOT_SUPPORT
4848: //
4849: // MessageText:
4850: //
4851: // The requested operation is not supported.
4852: //
4853: #define RPC_S_CANNOT_SUPPORT 1764L
4854:
4855: //
4856: // MessageId: RPC_S_NO_CONTEXT_AVAILABLE
4857: //
4858: // MessageText:
4859: //
4860: // No security context is available to allow impersonation.
4861: //
4862: #define RPC_S_NO_CONTEXT_AVAILABLE 1765L
4863:
4864: //
4865: // MessageId: RPC_S_INTERNAL_ERROR
4866: //
4867: // MessageText:
4868: //
4869: // An internal error occured in rpc.
4870: //
4871: #define RPC_S_INTERNAL_ERROR 1766L
4872:
4873: //
4874: // MessageId: RPC_S_ZERO_DIVIDE
4875: //
4876: // MessageText:
4877: //
4878: // The server attempted an integer divide by zero.
4879: //
4880: #define RPC_S_ZERO_DIVIDE 1767L
4881:
4882: //
4883: // MessageId: RPC_S_ADDRESS_ERROR
4884: //
4885: // MessageText:
4886: //
4887: // An addressing error occured in the server.
4888: //
4889: #define RPC_S_ADDRESS_ERROR 1768L
4890:
4891: //
4892: // MessageId: RPC_S_FP_DIV_ZERO
4893: //
4894: // MessageText:
4895: //
4896: // A floating point operation at the server caused a divide by zero.
4897: //
4898: #define RPC_S_FP_DIV_ZERO 1769L
4899:
4900: //
4901: // MessageId: RPC_S_FP_UNDERFLOW
4902: //
4903: // MessageText:
4904: //
4905: // A floating point underflow occured at the server.
4906: //
4907: #define RPC_S_FP_UNDERFLOW 1770L
4908:
4909: //
4910: // MessageId: RPC_S_FP_OVERFLOW
4911: //
4912: // MessageText:
4913: //
4914: // A floating point overflow occured at the server.
4915: //
4916: #define RPC_S_FP_OVERFLOW 1771L
4917:
4918: //
4919: // MessageId: RPC_X_NO_MORE_ENTRIES
4920: //
4921: // MessageText:
4922: //
4923: // The list of servers available for auto_handle binding has been exhausted.
4924: //
4925: #define RPC_X_NO_MORE_ENTRIES 1772L
4926:
4927: //
4928: // MessageId: RPC_X_SS_CHAR_TRANS_OPEN_FAIL
4929: //
4930: // MessageText:
4931: //
4932: // The file designated by DCERPCCHARTRANS cannot be opened.
4933: //
4934: #define RPC_X_SS_CHAR_TRANS_OPEN_FAIL 1773L
4935:
4936: //
4937: // MessageId: RPC_X_SS_CHAR_TRANS_SHORT_FILE
4938: //
4939: // MessageText:
4940: //
4941: // The file containing the character translation table has fewer than
4942: // 512 bytes.
4943: //
4944: #define RPC_X_SS_CHAR_TRANS_SHORT_FILE 1774L
4945:
4946: //
4947: // MessageId: RPC_X_SS_IN_NULL_CONTEXT
4948: //
4949: // MessageText:
4950: //
4951: // A null context handle is passed as an [in] parameter.
4952: //
4953: #define RPC_X_SS_IN_NULL_CONTEXT 1775L
4954:
4955: //
4956: // MessageId: RPC_X_SS_CONTEXT_MISMATCH
4957: //
4958: // MessageText:
4959: //
4960: // The context handle does not match any known context handles.
4961: //
4962: #define RPC_X_SS_CONTEXT_MISMATCH 1776L
4963:
4964: //
4965: // MessageId: RPC_X_SS_CONTEXT_DAMAGED
4966: //
4967: // MessageText:
4968: //
4969: // The context handle changed during a call.
4970: //
4971: #define RPC_X_SS_CONTEXT_DAMAGED 1777L
4972:
4973: //
4974: // MessageId: RPC_X_SS_HANDLES_MISMATCH
4975: //
4976: // MessageText:
4977: //
4978: // The binding handles passed to a remote procedure call do not match.
4979: //
4980: #define RPC_X_SS_HANDLES_MISMATCH 1778L
4981:
4982: //
4983: // MessageId: RPC_X_SS_CANNOT_GET_CALL_HANDLE
4984: //
4985: // MessageText:
4986: //
4987: // The stub is unable to get the call handle.
4988: //
4989: #define RPC_X_SS_CANNOT_GET_CALL_HANDLE 1779L
4990:
4991: //
4992: // MessageId: RPC_X_NULL_REF_POINTER
4993: //
4994: // MessageText:
4995: //
4996: // A null reference pointer was passed to the stub.
4997: //
4998: #define RPC_X_NULL_REF_POINTER 1780L
4999:
5000: //
5001: // MessageId: RPC_X_ENUM_VALUE_OUT_OF_RANGE
5002: //
5003: // MessageText:
5004: //
5005: // The enumeration value is out of range.
5006: //
5007: #define RPC_X_ENUM_VALUE_OUT_OF_RANGE 1781L
5008:
5009: //
5010: // MessageId: RPC_X_BYTE_COUNT_TOO_SMALL
5011: //
5012: // MessageText:
5013: //
5014: // The byte count is too small
5015: //
5016: #define RPC_X_BYTE_COUNT_TOO_SMALL 1782L
5017:
5018: //
5019: // MessageId: RPC_X_BAD_STUB_DATA
5020: //
5021: // MessageText:
5022: //
5023: // The stub received bad data.
5024: //
5025: #define RPC_X_BAD_STUB_DATA 1783L
5026:
5027: //
5028: // MessageId: ERROR_INVALID_USER_BUFFER
5029: //
5030: // MessageText:
5031: //
5032: // The supplied user buffer is not valid for the requested operation.
5033: //
5034: #define ERROR_INVALID_USER_BUFFER 1784L
5035:
5036: //
5037: // MessageId: ERROR_UNRECOGNIZED_MEDIA
5038: //
5039: // MessageText:
5040: //
5041: // The disk media is not recognized. It may not be formatted.
5042: //
5043: #define ERROR_UNRECOGNIZED_MEDIA 1785L
5044:
1.1.1.3 ! root 5045: //
! 5046: // MessageId: ERROR_NO_TRUST_LSA_SECRET
! 5047: //
! 5048: // MessageText:
! 5049: //
! 5050: // The workstation does not have a trust secret.
! 5051: //
! 5052: #define ERROR_NO_TRUST_LSA_SECRET 1786L
! 5053:
! 5054: //
! 5055: // MessageId: ERROR_NO_TRUST_SAM_ACCOUNT
! 5056: //
! 5057: // MessageText:
! 5058: //
! 5059: // The domain controller does not have an account for this workstation.
! 5060: //
! 5061: #define ERROR_NO_TRUST_SAM_ACCOUNT 1787L
! 5062:
! 5063: //
! 5064: // MessageId: ERROR_TRUSTED_DOMAIN_FAILURE
! 5065: //
! 5066: // MessageText:
! 5067: //
! 5068: // The trust relationship between the primary domain and the trusted
! 5069: // domain failed.
! 5070: //
! 5071: #define ERROR_TRUSTED_DOMAIN_FAILURE 1788L
! 5072:
! 5073: //
! 5074: // MessageId: ERROR_TRUSTED_RELATIONSHIP_FAILURE
! 5075: //
! 5076: // MessageText:
! 5077: //
! 5078: // The trust relationship between this workstation and the primary
! 5079: // domain failed.
! 5080: //
! 5081: #define ERROR_TRUSTED_RELATIONSHIP_FAILURE 1789L
! 5082:
! 5083: //
! 5084: // MessageId: ERROR_TRUST_FAILURE
! 5085: //
! 5086: // MessageText:
! 5087: //
! 5088: // The network logon failed. This may be due the validation authority can't
! 5089: // be reached
! 5090: //
! 5091: #define ERROR_TRUST_FAILURE 1790L
! 5092:
! 5093: //
! 5094: // MessageId: RPC_S_CALL_IN_PROGRESS
! 5095: //
! 5096: // MessageText:
! 5097: //
! 5098: // A remote procedure call is already in progress for this thread.
! 5099: //
! 5100: #define RPC_S_CALL_IN_PROGRESS 1791L
! 5101:
! 5102: //
! 5103: // MessageId: ERROR_NETLOGON_NOT_STARTED
! 5104: //
! 5105: // MessageText:
! 5106: //
! 5107: // An attempt was made to logon, but the netlogon service was not started.
! 5108: //
! 5109: #define ERROR_NETLOGON_NOT_STARTED 1792L
! 5110:
! 5111: //
! 5112: // MessageId: ERROR_ACCOUNT_EXPIRED
! 5113: //
! 5114: // MessageText:
! 5115: //
! 5116: // The user's account has expired.
! 5117: //
! 5118: #define ERROR_ACCOUNT_EXPIRED 1793L
! 5119:
! 5120: //
! 5121: // MessageId: ERROR_REDIRECTOR_HAS_OPEN_HANDLES
! 5122: //
! 5123: // MessageText:
! 5124: //
! 5125: // The redirector is in use and cannot be unloaded.
! 5126: //
! 5127: #define ERROR_REDIRECTOR_HAS_OPEN_HANDLES 1794L
! 5128:
! 5129: //
! 5130: // MessageId: ERROR_PRINTER_DRIVER_ALREADY_INSTALLED
! 5131: //
! 5132: // MessageText:
! 5133: //
! 5134: // The specified Printer Driver is already installed.
! 5135: //
! 5136: #define ERROR_PRINTER_DRIVER_ALREADY_INSTALLED 1795L
! 5137:
! 5138: //
! 5139: // MessageId: ERROR_UNKNOWN_PORT
! 5140: //
! 5141: // MessageText:
! 5142: //
! 5143: // The specified Port is unknown.
! 5144: //
! 5145: #define ERROR_UNKNOWN_PORT 1796L
! 5146:
! 5147: //
! 5148: // MessageId: ERROR_UNKNOWN_PRINTER_DRIVER
! 5149: //
! 5150: // MessageText:
! 5151: //
! 5152: // The Printer Driver is unknown.
! 5153: //
! 5154: #define ERROR_UNKNOWN_PRINTER_DRIVER 1797L
! 5155:
! 5156: //
! 5157: // MessageId: ERROR_UNKNOWN_PRINTPROCESSOR
! 5158: //
! 5159: // MessageText:
! 5160: //
! 5161: // The Print Processor is unknown.
! 5162: //
! 5163: #define ERROR_UNKNOWN_PRINTPROCESSOR 1798L
! 5164:
! 5165: //
! 5166: // MessageId: ERROR_INVALID_SEPARATOR_FILE
! 5167: //
! 5168: // MessageText:
! 5169: //
! 5170: // The specified separator file is invalid.
! 5171: //
! 5172: #define ERROR_INVALID_SEPARATOR_FILE 1799L
! 5173:
! 5174: //
! 5175: // MessageId: ERROR_INVALID_PRIORITY
! 5176: //
! 5177: // MessageText:
! 5178: //
! 5179: // The specified Priority is invalid.
! 5180: //
! 5181: #define ERROR_INVALID_PRIORITY 1800L
! 5182:
! 5183: //
! 5184: // MessageId: ERROR_INVALID_PRINTER_NAME
! 5185: //
! 5186: // MessageText:
! 5187: //
! 5188: // The Printer Name is invalid.
! 5189: //
! 5190: #define ERROR_INVALID_PRINTER_NAME 1801L
! 5191:
! 5192: //
! 5193: // MessageId: ERROR_PRINTER_ALREADY_EXISTS
! 5194: //
! 5195: // MessageText:
! 5196: //
! 5197: // The Printer already exists.
! 5198: //
! 5199: #define ERROR_PRINTER_ALREADY_EXISTS 1802L
! 5200:
! 5201: //
! 5202: // MessageId: ERROR_INVALID_PRINTER_COMMAND
! 5203: //
! 5204: // MessageText:
! 5205: //
! 5206: // The Printer Command is invalid.
! 5207: //
! 5208: #define ERROR_INVALID_PRINTER_COMMAND 1803L
! 5209:
! 5210: //
! 5211: // MessageId: ERROR_INVALID_DATATYPE
! 5212: //
! 5213: // MessageText:
! 5214: //
! 5215: // The specified datatype is invalid.
! 5216: //
! 5217: #define ERROR_INVALID_DATATYPE 1804L
! 5218:
! 5219: //
! 5220: // MessageId: ERROR_INVALID_ENVIRONMENT
! 5221: //
! 5222: // MessageText:
! 5223: //
! 5224: // The Environment specified is invalid.
! 5225: //
! 5226: #define ERROR_INVALID_ENVIRONMENT 1805L
! 5227:
1.1 root 5228: #endif // _WINERROR_
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.