|
|
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: //
134: // Incorrect internal file identifier.
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: //
! 2139: // The service controller database was locked.
! 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: //
! 2157: // The account name does not exist, or the service is specified to share
! 2158: // the same binary file as an already installed service but has an account
! 2159: // name that is not the same as the installed service.
! 2160: //
! 2161: #define ERROR_INVALID_SERVICE_ACCOUNT 1057L
! 2162:
! 2163: //
! 2164: // MessageId: ERROR_SERVICE_DISABLED
! 2165: //
! 2166: // MessageText:
! 2167: //
! 2168: // The specified service is disabled and cannot be started.
! 2169: //
! 2170: #define ERROR_SERVICE_DISABLED 1058L
! 2171:
! 2172: //
! 2173: // MessageId: ERROR_CIRCULAR_DEPENDENCY
! 2174: //
! 2175: // MessageText:
! 2176: //
! 2177: // Circular service dependency was specified.
! 2178: //
! 2179: #define ERROR_CIRCULAR_DEPENDENCY 1059L
! 2180:
! 2181: //
! 2182: // MessageId: ERROR_SERVICE_DOES_NOT_EXIST
! 2183: //
! 2184: // MessageText:
! 2185: //
! 2186: // The specified service does not exist as an installed service.
! 2187: //
! 2188: #define ERROR_SERVICE_DOES_NOT_EXIST 1060L
! 2189:
! 2190: //
! 2191: // MessageId: ERROR_SERVICE_CANNOT_ACCEPT_CTRL
! 2192: //
! 2193: // MessageText:
! 2194: //
! 2195: // The service cannot accept control messages at this time.
! 2196: //
! 2197: #define ERROR_SERVICE_CANNOT_ACCEPT_CTRL 1061L
! 2198:
! 2199: //
! 2200: // MessageId: ERROR_SERVICE_NOT_ACTIVE
! 2201: //
! 2202: // MessageText:
! 2203: //
! 2204: // The service has not been started.
! 2205: //
! 2206: #define ERROR_SERVICE_NOT_ACTIVE 1062L
! 2207:
! 2208: //
! 2209: // MessageId: ERROR_FAILED_SERVICE_CONTROLLER_CONNECT
! 2210: //
! 2211: // MessageText:
! 2212: //
! 2213: // The service process could not connect to the service controller.
! 2214: //
! 2215: #define ERROR_FAILED_SERVICE_CONTROLLER_CONNECT 1063L
! 2216:
! 2217: //
! 2218: // MessageId: ERROR_EXCEPTION_IN_SERVICE
! 2219: //
! 2220: // MessageText:
! 2221: //
! 2222: // An exception occured in the service when handling the control request.
! 2223: //
! 2224: #define ERROR_EXCEPTION_IN_SERVICE 1064L
! 2225:
! 2226: //
! 2227: // MessageId: ERROR_DATABASE_DOES_NOT_EXIST
! 2228: //
! 2229: // MessageText:
! 2230: //
! 2231: // The database specified does not exist.
! 2232: //
! 2233: #define ERROR_DATABASE_DOES_NOT_EXIST 1065L
! 2234:
! 2235: //
! 2236: // MessageId: ERROR_SERVICE_SPECIFIC_ERROR
! 2237: //
! 2238: // MessageText:
! 2239: //
! 2240: // The service has returned a service specific error code.
! 2241: //
! 2242: #define ERROR_SERVICE_SPECIFIC_ERROR 1066L
! 2243:
! 2244: //
! 2245: // MessageId: ERROR_PROCESS_ABORTED
! 2246: //
! 2247: // MessageText:
! 2248: //
! 2249: // The process terminated unexpectedly.
! 2250: //
! 2251: #define ERROR_PROCESS_ABORTED 1067L
! 2252:
! 2253: //
! 2254: // MessageId: ERROR_SERVICE_DEPENDENCY_FAIL
! 2255: //
! 2256: // MessageText:
! 2257: //
! 2258: // The dependency service failed to start.
! 2259: //
! 2260: #define ERROR_SERVICE_DEPENDENCY_FAIL 1068L
! 2261:
! 2262: //
! 2263: // MessageId: ERROR_SERVICE_LOGON_FAILED
! 2264: //
! 2265: // MessageText:
! 2266: //
! 2267: // The service failed to be logged on.
! 2268: //
! 2269: #define ERROR_SERVICE_LOGON_FAILED 1069L
! 2270:
! 2271: //
! 2272: // MessageId: ERROR_SERVICE_START_HANG
! 2273: //
! 2274: // MessageText:
! 2275: //
! 2276: // The service hung on starting.
! 2277: //
! 2278: #define ERROR_SERVICE_START_HANG 1070L
! 2279:
! 2280: //
! 2281: // MessageId: ERROR_INVALID_SERVICE_LOCK
! 2282: //
! 2283: // MessageText:
! 2284: //
! 2285: // The specified service controller database lock is invalid.
! 2286: //
! 2287: #define ERROR_INVALID_SERVICE_LOCK 1071L
! 2288:
! 2289: //
! 2290: // MessageId: ERROR_SERVICE_MARKED_FOR_DELETE
! 2291: //
! 2292: // MessageText:
! 2293: //
! 2294: // The specified service has been marked for delete.
! 2295: //
! 2296: #define ERROR_SERVICE_MARKED_FOR_DELETE 1072L
! 2297:
! 2298: //
! 2299: // MessageId: ERROR_SERVICE_EXISTS
! 2300: //
! 2301: // MessageText:
! 2302: //
! 2303: // The specified service is already created.
! 2304: //
! 2305: #define ERROR_SERVICE_EXISTS 1073L
! 2306:
! 2307: //
! 2308: // MessageId: ERROR_ALREADY_RUNNING_LKG
! 2309: //
! 2310: // MessageText:
! 2311: //
! 2312: // The system is currently booted using the Last-Known-Good configuration.
! 2313: //
! 2314: #define ERROR_ALREADY_RUNNING_LKG 1074L
! 2315:
! 2316: //
! 2317: // MessageId: ERROR_END_OF_MEDIA
! 2318: //
! 2319: // MessageText:
! 2320: //
! 2321: // End of tape mark has been reached during an operation.
! 2322: //
! 2323: #define ERROR_END_OF_MEDIA 1100L
! 2324:
! 2325: //
! 2326: // MessageId: ERROR_SHORT_FILEMARK_DETECTED
! 2327: //
! 2328: // MessageText:
! 2329: //
! 2330: // A tape access reached a short filemark.
! 2331: //
! 2332: #define ERROR_SHORT_FILEMARK_DETECTED 1101L
! 2333:
! 2334: //
! 2335: // MessageId: ERROR_LONG_FILEMARK_DETECTED
! 2336: //
! 2337: // MessageText:
! 2338: //
! 2339: // A tape access reached a long filemark.
! 2340: //
! 2341: #define ERROR_LONG_FILEMARK_DETECTED 1102L
! 2342:
! 2343: //
! 2344: // MessageId: ERROR_SETMARK_DETECTED
! 2345: //
! 2346: // MessageText:
! 2347: //
! 2348: // A tape access reached a setmark.
! 2349: //
! 2350: #define ERROR_SETMARK_DETECTED 1103L
! 2351:
! 2352: //
! 2353: // MessageId: ERROR_NO_DATA_DETECTED
! 2354: //
! 2355: // MessageText:
! 2356: //
! 2357: // During a tape access, the end of the data written is reached.
! 2358: //
! 2359: #define ERROR_NO_DATA_DETECTED 1104L
! 2360:
! 2361: //
! 2362: // MessageId: ERROR_PARTITION_FAILURE
! 2363: //
! 2364: // MessageText:
! 2365: //
! 2366: // Tape could not be partitioned.
! 2367: //
! 2368: #define ERROR_PARTITION_FAILURE 1105L
! 2369:
! 2370: //
! 2371: // MessageId: ERROR_INVALID_BLOCK_LENGTH
! 2372: //
! 2373: // MessageText:
! 2374: //
! 2375: // When accessing a new tape of a multivolume partition, the current
! 2376: // blocksize is incorrect.
! 2377: //
! 2378: #define ERROR_INVALID_BLOCK_LENGTH 1106L
! 2379:
! 2380: //
! 2381: // MessageId: ERROR_DEVICE_NOT_PARTITIONED
! 2382: //
! 2383: // MessageText:
! 2384: //
! 2385: // Tape partition information could not be found when loading a tape.
! 2386: //
! 2387: #define ERROR_DEVICE_NOT_PARTITIONED 1107L
! 2388:
! 2389: //
! 2390: // MessageId: ERROR_UNABLE_TO_LOCK_MEDIA
! 2391: //
! 2392: // MessageText:
! 2393: //
! 2394: // Attempt to lock the eject media mechansism fails.
! 2395: //
! 2396: #define ERROR_UNABLE_TO_LOCK_MEDIA 1108L
! 2397:
! 2398: //
! 2399: // MessageId: ERROR_UNABLE_TO_UNLOAD_MEDIA
! 2400: //
! 2401: // MessageText:
! 2402: //
! 2403: // Unload media fails.
! 2404: //
! 2405: #define ERROR_UNABLE_TO_UNLOAD_MEDIA 1109L
! 2406:
! 2407: //
! 2408: // MessageId: ERROR_TAPE_WRITE_PROTECTED
! 2409: //
! 2410: // MessageText:
! 2411: //
! 2412: // Attempt to write to or erase a write protected tape.
! 2413: //
! 2414: #define ERROR_TAPE_WRITE_PROTECTED 1110L
! 2415:
! 2416: //
! 2417: // MessageId: ERROR_TAPE_OPERATION_NOT_SUPPORTED
! 2418: //
! 2419: // MessageText:
! 2420: //
! 2421: // Attempted operation not supported on drive.
! 2422: //
! 2423: #define ERROR_TAPE_OPERATION_NOT_SUPPORTED 1111L
! 2424:
! 2425: //
! 2426: // MessageId: ERROR_NO_TAPE_IN_DRIVE
! 2427: //
! 2428: // MessageText:
! 2429: //
! 2430: // Tape query failed because of no tape in drive.
! 2431: //
! 2432: #define ERROR_NO_TAPE_IN_DRIVE 1112L
! 2433:
! 2434: //
! 2435: // MessageId: ERROR_NO_UNICODE_TRANSLATION
! 2436: //
! 2437: // MessageText:
! 2438: //
! 2439: // No mapping for the Unicode character exists in the target multi-byte code page.
! 2440: //
! 2441: #define ERROR_NO_UNICODE_TRANSLATION 1113L
! 2442:
! 2443: //
! 2444: // MessageId: ERROR_DLL_INIT_FAILED
! 2445: //
! 2446: // MessageText:
! 2447: //
! 2448: // A DLL initialization routine failed.
! 2449: //
! 2450: #define ERROR_DLL_INIT_FAILED 1114L
! 2451:
! 2452: //
! 2453: // MessageId: ERROR_SHUTDOWN_IN_PROGRESS
! 2454: //
! 2455: // MessageText:
! 2456: //
! 2457: // A system shutdown is in progress.
! 2458: //
! 2459: #define ERROR_SHUTDOWN_IN_PROGRESS 1115L
! 2460:
! 2461: //
! 2462: // MessageId: ERROR_NO_SHUTDOWN_IN_PROGRESS
! 2463: //
! 2464: // MessageText:
! 2465: //
! 2466: // An attempt to abort the shutdown of the system failed because no shutdown
! 2467: // was in progress.
! 2468: //
! 2469: #define ERROR_NO_SHUTDOWN_IN_PROGRESS 1116L
! 2470:
! 2471: //
! 2472: // MessageId: ERROR_IO_DEVICE
! 2473: //
! 2474: // MessageText:
! 2475: //
! 2476: // The request could not be performed because of an I/O device error.
! 2477: //
! 2478: #define ERROR_IO_DEVICE 1117L
! 2479:
! 2480: //
! 2481: // MessageId: ERROR_SERIAL_NO_DEVICE
! 2482: //
! 2483: // MessageText:
! 2484: //
! 2485: // No serial device was successfully initialized. The serial driver will unload.
! 2486: //
! 2487: #define ERROR_SERIAL_NO_DEVICE 1118L
! 2488:
! 2489: //
! 2490: // MessageId: ERROR_IRQ_BUSY
! 2491: //
! 2492: // MessageText:
! 2493: //
! 2494: // An attempt was made to open a device that was sharing an IRQ with other devices.
! 2495: // At least one other device that uses that IRQ was already opened. Two concurrent
! 2496: // opens of devices that share an IRQ and only work via interrupts is not supported
! 2497: // for the particular bus type that the devices use.
! 2498: //
! 2499: #define ERROR_IRQ_BUSY 1119L
! 2500:
! 2501: //
! 2502: // MessageId: ERROR_MORE_WRITES
! 2503: //
! 2504: // MessageText:
! 2505: //
! 2506: // This informational status message indicates that the serial io control
! 2507: // IOCTL_SERIAL_XOFF_COUNTER completed due to another write to the serial
! 2508: // port.
! 2509: //
! 2510: #define ERROR_MORE_WRITES 1120L
! 2511:
! 2512: //
! 2513: // MessageId: ERROR_COUNTER_TIMEOUT
! 2514: //
! 2515: // MessageText:
! 2516: //
! 2517: // This informational status message indicates that the serial io control
! 2518: // IOCTL_SERIAL_XOFF_COUNTER completed due to timer expiring before the
! 2519: // counter reached 0.
! 2520: //
! 2521: #define ERROR_COUNTER_TIMEOUT 1121L
! 2522:
! 2523: //
! 2524: // MessageId: ERROR_FLOPPY_ID_MARK_NOT_FOUND
! 2525: //
! 2526: // MessageText:
! 2527: //
! 2528: // While accessing the floppy an id address mark was not found.
! 2529: //
! 2530: #define ERROR_FLOPPY_ID_MARK_NOT_FOUND 1122L
! 2531:
! 2532: //
! 2533: // MessageId: ERROR_FLOPPY_WRONG_CYLINDER
! 2534: //
! 2535: // MessageText:
! 2536: //
! 2537: // While accessing the floppy the track address from the sector id field was found
! 2538: // to be different than the track address maintained by the controller.
! 2539: //
! 2540: #define ERROR_FLOPPY_WRONG_CYLINDER 1123L
! 2541:
! 2542: //
! 2543: // MessageId: ERROR_FLOPPY_UNKNOWN_ERROR
! 2544: //
! 2545: // MessageText:
! 2546: //
! 2547: // The floppy controller reported an error that is not recognized by the floppy driver.
! 2548: //
! 2549: #define ERROR_FLOPPY_UNKNOWN_ERROR 1124L
! 2550:
! 2551: //
! 2552: // MessageId: ERROR_FLOPPY_BAD_REGISTERS
! 2553: //
! 2554: // MessageText:
! 2555: //
! 2556: // While accessing the floppy, the controller returned inconsistant results via its registers.
! 2557: //
! 2558: #define ERROR_FLOPPY_BAD_REGISTERS 1125L
! 2559:
! 2560: //
! 2561: // MessageId: ERROR_DISK_RECALIBRATE_FAILED
! 2562: //
! 2563: // MessageText:
! 2564: //
! 2565: // While accessing the hard disk, a recalibrate operation failed, even after retries.
! 2566: //
! 2567: #define ERROR_DISK_RECALIBRATE_FAILED 1126L
! 2568:
! 2569: //
! 2570: // MessageId: ERROR_DISK_OPERATION_FAILED
! 2571: //
! 2572: // MessageText:
! 2573: //
! 2574: // While accessing the hard disk, a disk operation failed even after retries.
! 2575: //
! 2576: #define ERROR_DISK_OPERATION_FAILED 1127L
! 2577:
! 2578: //
! 2579: // MessageId: ERROR_DISK_RESET_FAILED
! 2580: //
! 2581: // MessageText:
! 2582: //
! 2583: // While accessing the hard disk, a disk controller reset was needed, but even that failed.
! 2584: // It would seem that some diagnostics should be run.
! 2585: //
! 2586: #define ERROR_DISK_RESET_FAILED 1128L
! 2587:
! 2588:
! 2589:
! 2590:
! 2591: ///////////////////////////
! 2592: // //
! 2593: // Winnet32 Status Codes //
! 2594: // //
! 2595: ///////////////////////////
! 2596:
! 2597:
! 2598: //
! 2599: // MessageId: ERROR_BAD_USERNAME
! 2600: //
! 2601: // MessageText:
! 2602: //
! 2603: // The specified user name is invalid.
! 2604: //
! 2605: #define ERROR_BAD_USERNAME 2202L
! 2606:
! 2607: //
! 2608: // MessageId: ERROR_NO_NETWORK
! 2609: //
! 2610: // MessageText:
! 2611: //
! 2612: // The network is not present or not started.
! 2613: //
! 2614: #define ERROR_NO_NETWORK 2138L
! 2615:
! 2616: //
! 2617: // MessageId: ERROR_NOT_CONNECTED
! 2618: //
! 2619: // MessageText:
! 2620: //
! 2621: // This network connection does not exist.
! 2622: //
! 2623: #define ERROR_NOT_CONNECTED 2250L
! 2624:
! 2625: //
! 2626: // MessageId: ERROR_OPEN_FILES
! 2627: //
! 2628: // MessageText:
! 2629: //
! 2630: // There are open files or requests pending on this connection.
! 2631: //
! 2632: #define ERROR_OPEN_FILES 2401L
! 2633:
! 2634: //
! 2635: // MessageId: ERROR_DEVICE_IN_USE
! 2636: //
! 2637: // MessageText:
! 2638: //
! 2639: // The device is in use by an active process and cannot be disconnected.
! 2640: //
! 2641: #define ERROR_DEVICE_IN_USE 2404L
! 2642:
! 2643: //
! 2644: // MessageId: ERROR_BAD_DEVICE
! 2645: //
! 2646: // MessageText:
! 2647: //
! 2648: // The specified device name is invalid.
! 2649: //
! 2650: #define ERROR_BAD_DEVICE 1200L
! 2651:
! 2652: //
! 2653: // MessageId: ERROR_CONNECTION_UNAVAIL
! 2654: //
! 2655: // MessageText:
! 2656: //
! 2657: // The device is not currently connected but it is a remembered connection.
! 2658: //
! 2659: #define ERROR_CONNECTION_UNAVAIL 1201L
! 2660:
! 2661: //
! 2662: // MessageId: ERROR_DEVICE_ALREADY_REMEMBERED
! 2663: //
! 2664: // MessageText:
! 2665: //
! 2666: // An attempt was made to remember a device that had previously been remembered.
! 2667: //
! 2668: #define ERROR_DEVICE_ALREADY_REMEMBERED 1202L
! 2669:
! 2670: //
! 2671: // MessageId: ERROR_NO_NET_OR_BAD_PATH
! 2672: //
! 2673: // MessageText:
! 2674: //
! 2675: // No network provider accepted the given network path.
! 2676: //
! 2677: #define ERROR_NO_NET_OR_BAD_PATH 1203L
! 2678:
! 2679: //
! 2680: // MessageId: ERROR_BAD_PROVIDER
! 2681: //
! 2682: // MessageText:
! 2683: //
! 2684: // The specified network provider name is invalid.
! 2685: //
! 2686: #define ERROR_BAD_PROVIDER 1204L
! 2687:
! 2688: //
! 2689: // MessageId: ERROR_CANNOT_OPEN_PROFILE
! 2690: //
! 2691: // MessageText:
! 2692: //
! 2693: // Unable to open the network connection profile.
! 2694: //
! 2695: #define ERROR_CANNOT_OPEN_PROFILE 1205L
! 2696:
! 2697: //
! 2698: // MessageId: ERROR_BAD_PROFILE
! 2699: //
! 2700: // MessageText:
! 2701: //
! 2702: // The network connection profile is corrupt.
! 2703: //
! 2704: #define ERROR_BAD_PROFILE 1206L
! 2705:
! 2706: //
! 2707: // MessageId: ERROR_NOT_CONTAINER
! 2708: //
! 2709: // MessageText:
! 2710: //
! 2711: // Cannot enumerate a non-container.
! 2712: //
! 2713: #define ERROR_NOT_CONTAINER 1207L
! 2714:
! 2715: //
! 2716: // MessageId: ERROR_EXTENDED_ERROR
! 2717: //
! 2718: // MessageText:
! 2719: //
! 2720: // An extended error has occurred.
! 2721: //
! 2722: #define ERROR_EXTENDED_ERROR 1208L
! 2723:
! 2724:
! 2725:
! 2726:
! 2727: ///////////////////////////
! 2728: // //
! 2729: // Security Status Codes //
! 2730: // //
! 2731: ///////////////////////////
! 2732:
! 2733:
! 2734: //
! 2735: // MessageId: ERROR_NOT_ALL_ASSIGNED
! 2736: //
! 2737: // MessageText:
! 2738: //
! 2739: // Indicates not all privileges referenced are assigned to the caller.
! 2740: // This allows, for example, all privileges to be disabled without having
! 2741: // to know exactly which privileges are assigned.
! 2742: //
! 2743: #define ERROR_NOT_ALL_ASSIGNED 1300L
! 2744:
! 2745: //
! 2746: // MessageId: ERROR_SOME_NOT_MAPPED
! 2747: //
! 2748: // MessageText:
! 2749: //
! 2750: // Some of the information to be translated has not been translated.
! 2751: //
! 2752: #define ERROR_SOME_NOT_MAPPED 1301L
! 2753:
! 2754: //
! 2755: // MessageId: ERROR_NO_QUOTAS_FOR_ACCOUNT
! 2756: //
! 2757: // MessageText:
! 2758: //
! 2759: // No system quota limits are specifically set for this Account.
! 2760: //
! 2761: #define ERROR_NO_QUOTAS_FOR_ACCOUNT 1302L
! 2762:
! 2763: //
! 2764: // MessageId: ERROR_LOCAL_USER_SESSION_KEY
! 2765: //
! 2766: // MessageText:
! 2767: //
! 2768: // A user session key was requested for a local rpc connection. The session key
! 2769: // returned is a constant value and not unique to this connection. There is
! 2770: // little to be gained by encrypting data on such a connection.
! 2771: //
! 2772: #define ERROR_LOCAL_USER_SESSION_KEY 1303L
! 2773:
! 2774: //
! 2775: // MessageId: ERROR_NULL_LM_PASSWORD
! 2776: //
! 2777: // MessageText:
! 2778: //
! 2779: // The NT password is too complex to be converted to a Lan-Manager password.
! 2780: // The Lan-Manager password returned is a NULL string.
! 2781: //
! 2782: #define ERROR_NULL_LM_PASSWORD 1304L
! 2783:
! 2784: //
! 2785: // MessageId: ERROR_UNKNOWN_REVISION
! 2786: //
! 2787: // MessageText:
! 2788: //
! 2789: // Indicates a revision number encountered or specified is not one
! 2790: // known by the service. It may be a more recent revision than the
! 2791: // service is aware of.
! 2792: //
! 2793: #define ERROR_UNKNOWN_REVISION 1305L
! 2794:
! 2795: //
! 2796: // MessageId: ERROR_REVISION_MISMATCH
! 2797: //
! 2798: // MessageText:
! 2799: //
! 2800: // Indicates two revision levels are incompatible.
! 2801: //
! 2802: #define ERROR_REVISION_MISMATCH 1306L
! 2803:
! 2804: //
! 2805: // MessageId: ERROR_INVALID_OWNER
! 2806: //
! 2807: // MessageText:
! 2808: //
! 2809: // Indicates a particular Security ID may not be assigned as the
! 2810: // owner of an object.
! 2811: //
! 2812: #define ERROR_INVALID_OWNER 1307L
! 2813:
! 2814: //
! 2815: // MessageId: ERROR_INVALID_PRIMARY_GROUP
! 2816: //
! 2817: // MessageText:
! 2818: //
! 2819: // Indicates a particular Security ID may not be assigned as the
! 2820: // primary group of an object.
! 2821: //
! 2822: #define ERROR_INVALID_PRIMARY_GROUP 1308L
! 2823:
! 2824: //
! 2825: // MessageId: ERROR_NO_IMPERSONATION_TOKEN
! 2826: //
! 2827: // MessageText:
! 2828: //
! 2829: // An attempt has been made to operate on an impersonation token
! 2830: // by a thread that is not currently impersonating a client.
! 2831: //
! 2832: #define ERROR_NO_IMPERSONATION_TOKEN 1309L
! 2833:
! 2834: //
! 2835: // MessageId: ERROR_CANT_DISABLE_MANDATORY
! 2836: //
! 2837: // MessageText:
! 2838: //
! 2839: // A mandatory group may not be disabled.
! 2840: //
! 2841: #define ERROR_CANT_DISABLE_MANDATORY 1310L
! 2842:
! 2843: //
! 2844: // MessageId: ERROR_NO_LOGON_SERVERS
! 2845: //
! 2846: // MessageText:
! 2847: //
! 2848: // There are currently no logon servers available to service the logon
! 2849: // request.
! 2850: //
! 2851: #define ERROR_NO_LOGON_SERVERS 1311L
! 2852:
! 2853: //
! 2854: // MessageId: ERROR_NO_SUCH_LOGON_SESSION
! 2855: //
! 2856: // MessageText:
! 2857: //
! 2858: // A specified logon session does not exist. It may already have
! 2859: // been terminated.
! 2860: //
! 2861: #define ERROR_NO_SUCH_LOGON_SESSION 1312L
! 2862:
! 2863: //
! 2864: // MessageId: ERROR_NO_SUCH_PRIVILEGE
! 2865: //
! 2866: // MessageText:
! 2867: //
! 2868: // A specified privilege does not exist.
! 2869: //
! 2870: #define ERROR_NO_SUCH_PRIVILEGE 1313L
! 2871:
! 2872: //
! 2873: // MessageId: ERROR_PRIVILEGE_NOT_HELD
! 2874: //
! 2875: // MessageText:
! 2876: //
! 2877: // A required privilege is not held by the client.
! 2878: //
! 2879: #define ERROR_PRIVILEGE_NOT_HELD 1314L
! 2880:
! 2881: //
! 2882: // MessageId: ERROR_INVALID_ACCOUNT_NAME
! 2883: //
! 2884: // MessageText:
! 2885: //
! 2886: // The name provided is not a properly formed account name.
! 2887: //
! 2888: #define ERROR_INVALID_ACCOUNT_NAME 1315L
! 2889:
! 2890: //
! 2891: // MessageId: ERROR_USER_EXISTS
! 2892: //
! 2893: // MessageText:
! 2894: //
! 2895: // The specified user already exists.
! 2896: //
! 2897: #define ERROR_USER_EXISTS 1316L
! 2898:
! 2899: //
! 2900: // MessageId: ERROR_NO_SUCH_USER
! 2901: //
! 2902: // MessageText:
! 2903: //
! 2904: // The specified user does not exist.
! 2905: //
! 2906: #define ERROR_NO_SUCH_USER 1317L
! 2907:
! 2908: //
! 2909: // MessageId: ERROR_GROUP_EXISTS
! 2910: //
! 2911: // MessageText:
! 2912: //
! 2913: // The specified group already exists.
! 2914: //
! 2915: #define ERROR_GROUP_EXISTS 1318L
! 2916:
! 2917: //
! 2918: // MessageId: ERROR_NO_SUCH_GROUP
! 2919: //
! 2920: // MessageText:
! 2921: //
! 2922: // The specified group does not exist.
! 2923: //
! 2924: #define ERROR_NO_SUCH_GROUP 1319L
! 2925:
! 2926: //
! 2927: // MessageId: ERROR_MEMBER_IN_GROUP
! 2928: //
! 2929: // MessageText:
! 2930: //
! 2931: // The specified user account is already in the specified group account.
! 2932: // Also used to indicate a group can not be deleted because it contains
! 2933: // a member.
! 2934: //
! 2935: #define ERROR_MEMBER_IN_GROUP 1320L
! 2936:
! 2937: //
! 2938: // MessageId: ERROR_MEMBER_NOT_IN_GROUP
! 2939: //
! 2940: // MessageText:
! 2941: //
! 2942: // The specified user account is not a member of the specified group account.
! 2943: //
! 2944: #define ERROR_MEMBER_NOT_IN_GROUP 1321L
! 2945:
! 2946: //
! 2947: // MessageId: ERROR_LAST_ADMIN
! 2948: //
! 2949: // MessageText:
! 2950: //
! 2951: // Indicates the requested operation would disable or delete the last
! 2952: // remaining administration account. This is not allowed to prevent
! 2953: // creating a situation in which the system will not be administratable.
! 2954: //
! 2955: #define ERROR_LAST_ADMIN 1322L
! 2956:
! 2957: //
! 2958: // MessageId: ERROR_WRONG_PASSWORD
! 2959: //
! 2960: // MessageText:
! 2961: //
! 2962: // When trying to update a password, this return status indicates that
! 2963: // the value provided as the current password is not correct.
! 2964: //
! 2965: #define ERROR_WRONG_PASSWORD 1323L
! 2966:
! 2967: //
! 2968: // MessageId: ERROR_ILL_FORMED_PASSWORD
! 2969: //
! 2970: // MessageText:
! 2971: //
! 2972: // When trying to update a password, this return status indicates that
! 2973: // the value provided for the new password contains values that are
! 2974: // not allowed in passwords.
! 2975: //
! 2976: #define ERROR_ILL_FORMED_PASSWORD 1324L
! 2977:
! 2978: //
! 2979: // MessageId: ERROR_PASSWORD_RESTRICTION
! 2980: //
! 2981: // MessageText:
! 2982: //
! 2983: // When trying to update a password, this status indicates that some
! 2984: // password update rule has been violated. For example, the password
! 2985: // may not meet length criteria.
! 2986: //
! 2987: #define ERROR_PASSWORD_RESTRICTION 1325L
! 2988:
! 2989: //
! 2990: // MessageId: ERROR_LOGON_FAILURE
! 2991: //
! 2992: // MessageText:
! 2993: //
! 2994: // The attempted logon is invalid. This is either due to a bad username
! 2995: // or authentication information.
! 2996: //
! 2997: #define ERROR_LOGON_FAILURE 1326L
! 2998:
! 2999: //
! 3000: // MessageId: ERROR_ACCOUNT_RESTRICTION
! 3001: //
! 3002: // MessageText:
! 3003: //
! 3004: // Indicates a referenced user name and authentication information are
! 3005: // valid, but some user account restriction has prevented successful
! 3006: // authentication (such as time-of-day restrictions).
! 3007: //
! 3008: #define ERROR_ACCOUNT_RESTRICTION 1327L
! 3009:
! 3010: //
! 3011: // MessageId: ERROR_INVALID_LOGON_HOURS
! 3012: //
! 3013: // MessageText:
! 3014: //
! 3015: // The user account has time restrictions and may not be logged onto
! 3016: // at this time.
! 3017: //
! 3018: #define ERROR_INVALID_LOGON_HOURS 1328L
! 3019:
! 3020: //
! 3021: // MessageId: ERROR_INVALID_WORKSTATION
! 3022: //
! 3023: // MessageText:
! 3024: //
! 3025: // The user account is restricted such that it may not be used to
! 3026: // log on from the source workstation.
! 3027: //
! 3028: #define ERROR_INVALID_WORKSTATION 1329L
! 3029:
! 3030: //
! 3031: // MessageId: ERROR_PASSWORD_EXPIRED
! 3032: //
! 3033: // MessageText:
! 3034: //
! 3035: // The user account's password has expired.
! 3036: //
! 3037: #define ERROR_PASSWORD_EXPIRED 1330L
! 3038:
! 3039: //
! 3040: // MessageId: ERROR_ACCOUNT_DISABLED
! 3041: //
! 3042: // MessageText:
! 3043: //
! 3044: // The referenced account is currently disabled and may not be logged on to.
! 3045: //
! 3046: #define ERROR_ACCOUNT_DISABLED 1331L
! 3047:
! 3048: //
! 3049: // MessageId: ERROR_NONE_MAPPED
! 3050: //
! 3051: // MessageText:
! 3052: //
! 3053: // None of the information to be translated has been translated.
! 3054: //
! 3055: #define ERROR_NONE_MAPPED 1332L
! 3056:
! 3057: //
! 3058: // MessageId: ERROR_TOO_MANY_LUIDS_REQUESTED
! 3059: //
! 3060: // MessageText:
! 3061: //
! 3062: // The number of LUIDs requested may not be allocated with a single
! 3063: // allocation.
! 3064: //
! 3065: #define ERROR_TOO_MANY_LUIDS_REQUESTED 1333L
! 3066:
! 3067: //
! 3068: // MessageId: ERROR_LUIDS_EXHAUSTED
! 3069: //
! 3070: // MessageText:
! 3071: //
! 3072: // Indicates there are no more LUIDs to allocate.
! 3073: //
! 3074: #define ERROR_LUIDS_EXHAUSTED 1334L
! 3075:
! 3076: //
! 3077: // MessageId: ERROR_INVALID_SUB_AUTHORITY
! 3078: //
! 3079: // MessageText:
! 3080: //
! 3081: // Indicates the sub-authority value is invalid for the particular use.
! 3082: //
! 3083: #define ERROR_INVALID_SUB_AUTHORITY 1335L
! 3084:
! 3085: //
! 3086: // MessageId: ERROR_INVALID_ACL
! 3087: //
! 3088: // MessageText:
! 3089: //
! 3090: // Indicates the ACL structure is not valid.
! 3091: //
! 3092: #define ERROR_INVALID_ACL 1336L
! 3093:
! 3094: //
! 3095: // MessageId: ERROR_INVALID_SID
! 3096: //
! 3097: // MessageText:
! 3098: //
! 3099: // Indicates the SID structure is not valid.
! 3100: //
! 3101: #define ERROR_INVALID_SID 1337L
! 3102:
! 3103: //
! 3104: // MessageId: ERROR_INVALID_SECURITY_DESCR
! 3105: //
! 3106: // MessageText:
! 3107: //
! 3108: // Indicates the SECURITY_DESCRIPTOR structure is not valid.
! 3109: //
! 3110: #define ERROR_INVALID_SECURITY_DESCR 1338L
! 3111:
! 3112: //
! 3113: // MessageId: ERROR_BAD_INHERITANCE_ACL
! 3114: //
! 3115: // MessageText:
! 3116: //
! 3117: // Indicates that an attempt to build either an inherited ACL or ACE
! 3118: // was not successful.
! 3119: // This can be caused by a number of things. One of the more probable
! 3120: // causes is the replacement of a CreatorId with an SID that didn't fit
! 3121: // into the ACE or ACL.
! 3122: //
! 3123: #define ERROR_BAD_INHERITANCE_ACL 1340L
! 3124:
! 3125: //
! 3126: // MessageId: ERROR_SERVER_DISABLED
! 3127: //
! 3128: // MessageText:
! 3129: //
! 3130: // The GUID allocation server is [already] disabled at the moment.
! 3131: //
! 3132: #define ERROR_SERVER_DISABLED 1341L
! 3133:
! 3134: //
! 3135: // MessageId: ERROR_SERVER_NOT_DISABLED
! 3136: //
! 3137: // MessageText:
! 3138: //
! 3139: // The GUID allocation server is [already] enabled at the moment.
! 3140: //
! 3141: #define ERROR_SERVER_NOT_DISABLED 1342L
! 3142:
! 3143: //
! 3144: // MessageId: ERROR_INVALID_ID_AUTHORITY
! 3145: //
! 3146: // MessageText:
! 3147: //
! 3148: // The value provided was an invalid value for an identifier authority.
! 3149: //
! 3150: #define ERROR_INVALID_ID_AUTHORITY 1343L
! 3151:
! 3152: //
! 3153: // MessageId: ERROR_ALLOTTED_SPACE_EXCEEDED
! 3154: //
! 3155: // MessageText:
! 3156: //
! 3157: // When a block of memory is allotted for future updates, such as the memory
! 3158: // allocated to hold discretionary access control and primary group information,
! 3159: // successive updates may exceed the amount of memory originally allotted.
! 3160: // Since quota may already have been charged to several processes which have
! 3161: // handles to the object, it is not reasonable to alter the size of the
! 3162: // allocated memory. Instead, a request that requires more memory than has
! 3163: // been allotted must fail and the ERROR_ALLOTTED_SPACE_EXCEEDED error returned.
! 3164: //
! 3165: #define ERROR_ALLOTTED_SPACE_EXCEEDED 1344L
! 3166:
! 3167: //
! 3168: // MessageId: ERROR_INVALID_GROUP_ATTRIBUTES
! 3169: //
! 3170: // MessageText:
! 3171: //
! 3172: // The specified attributes are invalid, or incompatible with the
! 3173: // attributes for the group as a whole.
! 3174: //
! 3175: #define ERROR_INVALID_GROUP_ATTRIBUTES 1345L
! 3176:
! 3177: //
! 3178: // MessageId: ERROR_BAD_IMPERSONATION_LEVEL
! 3179: //
! 3180: // MessageText:
! 3181: //
! 3182: // A specified impersonation level is invalid.
! 3183: // Also used to indicate a required impersonation level was not provided.
! 3184: //
! 3185: #define ERROR_BAD_IMPERSONATION_LEVEL 1346L
! 3186:
! 3187: //
! 3188: // MessageId: ERROR_CANT_OPEN_ANONYMOUS
! 3189: //
! 3190: // MessageText:
! 3191: //
! 3192: // An attempt was made to open an Anonymous level token.
! 3193: // Anonymous tokens may not be opened.
! 3194: //
! 3195: #define ERROR_CANT_OPEN_ANONYMOUS 1347L
! 3196:
! 3197: //
! 3198: // MessageId: ERROR_BAD_VALIDATION_CLASS
! 3199: //
! 3200: // MessageText:
! 3201: //
! 3202: // The validation information class requested was invalid.
! 3203: //
! 3204: #define ERROR_BAD_VALIDATION_CLASS 1348L
! 3205:
! 3206: //
! 3207: // MessageId: ERROR_BAD_TOKEN_TYPE
! 3208: //
! 3209: // MessageText:
! 3210: //
! 3211: // The type of a token object is inapropriate for its attempted use.
! 3212: //
! 3213: #define ERROR_BAD_TOKEN_TYPE 1349L
! 3214:
! 3215: //
! 3216: // MessageId: ERROR_NO_SECURITY_ON_OBJECT
! 3217: //
! 3218: // MessageText:
! 3219: //
! 3220: // Indicates an attempt was made to operate on the security of
! 3221: // an object that does not have security associated with it.
! 3222: //
! 3223: #define ERROR_NO_SECURITY_ON_OBJECT 1350L
! 3224:
! 3225: //
! 3226: // MessageId: ERROR_CANT_ACCESS_DOMAIN_INFO
! 3227: //
! 3228: // MessageText:
! 3229: //
! 3230: // Indicates a domain controller could not be contacted or that
! 3231: // objects within the domain are protected such that necessary
! 3232: // information could not be retrieved.
! 3233: //
! 3234: #define ERROR_CANT_ACCESS_DOMAIN_INFO 1351L
! 3235:
! 3236: //
! 3237: // MessageId: ERROR_INVALID_SERVER_STATE
! 3238: //
! 3239: // MessageText:
! 3240: //
! 3241: // Indicates the Sam Server was in the wrong state to
! 3242: // perform the desired operation.
! 3243: //
! 3244: #define ERROR_INVALID_SERVER_STATE 1352L
! 3245:
! 3246: //
! 3247: // MessageId: ERROR_INVALID_DOMAIN_STATE
! 3248: //
! 3249: // MessageText:
! 3250: //
! 3251: // Indicates the Domain was in the wrong state to
! 3252: // perform the desired operation.
! 3253: //
! 3254: #define ERROR_INVALID_DOMAIN_STATE 1353L
! 3255:
! 3256: //
! 3257: // MessageId: ERROR_INVALID_DOMAIN_ROLE
! 3258: //
! 3259: // MessageText:
! 3260: //
! 3261: // Indicates the desired operation cannot be completed
! 3262: // with the domain in its present role.
! 3263: //
! 3264: #define ERROR_INVALID_DOMAIN_ROLE 1354L
! 3265:
! 3266: //
! 3267: // MessageId: ERROR_NO_SUCH_DOMAIN
! 3268: //
! 3269: // MessageText:
! 3270: //
! 3271: // The specified Domain did not exist.
! 3272: //
! 3273: #define ERROR_NO_SUCH_DOMAIN 1355L
! 3274:
! 3275: //
! 3276: // MessageId: ERROR_DOMAIN_EXISTS
! 3277: //
! 3278: // MessageText:
! 3279: //
! 3280: // The specified Domain already exists.
! 3281: //
! 3282: #define ERROR_DOMAIN_EXISTS 1356L
! 3283:
! 3284: //
! 3285: // MessageId: ERROR_DOMAIN_LIMIT_EXCEEDED
! 3286: //
! 3287: // MessageText:
! 3288: //
! 3289: // An attempt to exceed the limit on the number of domains per server
! 3290: // for this release.
! 3291: //
! 3292: #define ERROR_DOMAIN_LIMIT_EXCEEDED 1357L
! 3293:
! 3294: //
! 3295: // MessageId: ERROR_INTERNAL_DB_CORRUPTION
! 3296: //
! 3297: // MessageText:
! 3298: //
! 3299: // This error indicates that the requested operation cannot be
! 3300: // completed due to a catastrophic media failure or on-disk data
! 3301: // structure corruption
! 3302: //
! 3303: #define ERROR_INTERNAL_DB_CORRUPTION 1358L
! 3304:
! 3305: //
! 3306: // MessageId: ERROR_INTERNAL_ERROR
! 3307: //
! 3308: // MessageText:
! 3309: //
! 3310: // This error indicates that the SAM server has encounterred an
! 3311: // internal consistency error in its database. This catastrophic
! 3312: // failure will prevent further operation of SAM
! 3313: //
! 3314: #define ERROR_INTERNAL_ERROR 1359L
! 3315:
! 3316: //
! 3317: // MessageId: ERROR_GENERIC_NOT_MAPPED
! 3318: //
! 3319: // MessageText:
! 3320: //
! 3321: // Indicates generic access types were contained in an access mask
! 3322: // which should already be mapped to non-generic access types.
! 3323: //
! 3324: #define ERROR_GENERIC_NOT_MAPPED 1360L
! 3325:
! 3326: //
! 3327: // MessageId: ERROR_BAD_DESCRIPTOR_FORMAT
! 3328: //
! 3329: // MessageText:
! 3330: //
! 3331: // Indicates a security descriptor is not in the necessary format (absolute
! 3332: // or self-relative).
! 3333: //
! 3334: #define ERROR_BAD_DESCRIPTOR_FORMAT 1361L
! 3335:
! 3336: //
! 3337: // MessageId: ERROR_NOT_LOGON_PROCESS
! 3338: //
! 3339: // MessageText:
! 3340: //
! 3341: // The requested action is restricted for use by logon processes
! 3342: // only. The calling process has not registered as a logon process.
! 3343: //
! 3344: #define ERROR_NOT_LOGON_PROCESS 1362L
! 3345:
! 3346: //
! 3347: // MessageId: ERROR_LOGON_SESSION_EXISTS
! 3348: //
! 3349: // MessageText:
! 3350: //
! 3351: // A attempt has been made to start a new session manager or
! 3352: // LSA logon session with an ID that is alread in use.
! 3353: //
! 3354: #define ERROR_LOGON_SESSION_EXISTS 1363L
! 3355:
! 3356: //
! 3357: // MessageId: ERROR_NO_SUCH_PACKAGE
! 3358: //
! 3359: // MessageText:
! 3360: //
! 3361: // A specified authentication package is unknown
! 3362: //
! 3363: #define ERROR_NO_SUCH_PACKAGE 1364L
! 3364:
! 3365: //
! 3366: // MessageId: ERROR_BAD_LOGON_SESSION_STATE
! 3367: //
! 3368: // MessageText:
! 3369: //
! 3370: // The logon session is not in a state the is consistent with the
! 3371: // requested operation.
! 3372: //
! 3373: #define ERROR_BAD_LOGON_SESSION_STATE 1365L
! 3374:
! 3375: //
! 3376: // MessageId: ERROR_LOGON_SESSION_COLLISION
! 3377: //
! 3378: // MessageText:
! 3379: //
! 3380: // The logon session is not in a state the is consistent with the
! 3381: // requested operation. BUG, BUG - fix this message
! 3382: //
! 3383: #define ERROR_LOGON_SESSION_COLLISION 1366L
! 3384:
! 3385: //
! 3386: // MessageId: ERROR_INVALID_LOGON_TYPE
! 3387: //
! 3388: // MessageText:
! 3389: //
! 3390: // Indicates an invalid value has been provided for LogonType has been
! 3391: // requested.
! 3392: //
! 3393: #define ERROR_INVALID_LOGON_TYPE 1367L
! 3394:
! 3395: //
! 3396: // MessageId: ERROR_CANNOT_IMPERSONATE
! 3397: //
! 3398: // MessageText:
! 3399: //
! 3400: // Indicates that an attempt has been made to impersonate via a named
! 3401: // pipe that has not yet been read from.
! 3402: //
! 3403: #define ERROR_CANNOT_IMPERSONATE 1368L
! 3404:
! 3405: //
! 3406: // MessageId: ERROR_RXACT_INVALID_STATE
! 3407: //
! 3408: // MessageText:
! 3409: //
! 3410: // Indicates that the transaction state of a registry sub-tree is
! 3411: // incompatible with the requested operation.
! 3412: // For example, a request has been made to start a new transaction with
! 3413: // one already in progress, or a request to apply a transaction when one
! 3414: // is not currently in progress.
! 3415: // This status value is returned by the runtime library (RTL) registry
! 3416: // transaction package (RXact).
! 3417: //
! 3418: #define ERROR_RXACT_INVALID_STATE 1369L
! 3419:
! 3420: //
! 3421: // MessageId: ERROR_RXACT_COMMIT_FAILURE
! 3422: //
! 3423: // MessageText:
! 3424: //
! 3425: // Indicates an error has occured during a registry transaction commit.
! 3426: // The database has been left in an unknown, but probably inconsistent,
! 3427: // state. The state of the registry transaction is left as COMMITTING.
! 3428: // This status value is returned by the runtime library (RTL) registry
! 3429: // transaction package (RXact).
! 3430: //
! 3431: #define ERROR_RXACT_COMMIT_FAILURE 1370L
! 3432:
! 3433: //
! 3434: // MessageId: ERROR_SPECIAL_ACCOUNT
! 3435: //
! 3436: // MessageText:
! 3437: //
! 3438: // Indicates an operation has been attempted on a built-in (special)
! 3439: // SAM account which is incompatible with built-in accounts. For
! 3440: // example, built-in accounts can not be re-named or deleted.
! 3441: //
! 3442: #define ERROR_SPECIAL_ACCOUNT 1371L
! 3443:
! 3444: //
! 3445: // MessageId: ERROR_SPECIAL_GROUP
! 3446: //
! 3447: // MessageText:
! 3448: //
! 3449: // The operation requested may not be performed on the specified
! 3450: // group because it is a built-in special group.
! 3451: //
! 3452: #define ERROR_SPECIAL_GROUP 1372L
! 3453:
! 3454: //
! 3455: // MessageId: ERROR_SPECIAL_USER
! 3456: //
! 3457: // MessageText:
! 3458: //
! 3459: // The operation requested may not be performed on the specified
! 3460: // user because it is a built-in special user.
! 3461: //
! 3462: #define ERROR_SPECIAL_USER 1373L
! 3463:
! 3464: //
! 3465: // MessageId: ERROR_MEMBERS_PRIMARY_GROUP
! 3466: //
! 3467: // MessageText:
! 3468: //
! 3469: // Indicates a member can not be removed from a group because the
! 3470: // group is currently the member's primary group.
! 3471: //
! 3472: #define ERROR_MEMBERS_PRIMARY_GROUP 1374L
! 3473:
! 3474: //
! 3475: // MessageId: ERROR_TOKEN_ALREADY_IN_USE
! 3476: //
! 3477: // MessageText:
! 3478: //
! 3479: // An attempt was made to establish a token for use as a primary token
! 3480: // but the token is already in use. A token can only be the primary token
! 3481: // of one process at a time.
! 3482: //
! 3483: #define ERROR_TOKEN_ALREADY_IN_USE 1375L
! 3484:
! 3485: //
! 3486: // MessageId: ERROR_NO_SUCH_ALIAS
! 3487: //
! 3488: // MessageText:
! 3489: //
! 3490: // The specified alias does not exist.
! 3491: //
! 3492: #define ERROR_NO_SUCH_ALIAS 1376L
! 3493:
! 3494: //
! 3495: // MessageId: ERROR_MEMBER_NOT_IN_ALIAS
! 3496: //
! 3497: // MessageText:
! 3498: //
! 3499: // The specified account name is not a member of the alias.
! 3500: //
! 3501: #define ERROR_MEMBER_NOT_IN_ALIAS 1377L
! 3502:
! 3503: //
! 3504: // MessageId: ERROR_MEMBER_IN_ALIAS
! 3505: //
! 3506: // MessageText:
! 3507: //
! 3508: // The specified account name is not a member of the alias.
! 3509: //
! 3510: #define ERROR_MEMBER_IN_ALIAS 1378L
! 3511:
! 3512: //
! 3513: // MessageId: ERROR_ALIAS_EXISTS
! 3514: //
! 3515: // MessageText:
! 3516: //
! 3517: // The specified alias already exists.
! 3518: //
! 3519: #define ERROR_ALIAS_EXISTS 1379L
! 3520:
! 3521: //
! 3522: // MessageId: ERROR_LOGON_NOT_GRANTED
! 3523: //
! 3524: // MessageText:
! 3525: //
! 3526: // A requested type of logon (e.g., Interactive, Network, Service) is not
! 3527: // granted by the target system's local security policy. Please ask the
! 3528: // system administrator to grant the necessary form of logon.
! 3529: //
! 3530: #define ERROR_LOGON_NOT_GRANTED 1380L
! 3531:
! 3532: //
! 3533: // MessageId: ERROR_TOO_MANY_SECRETS
! 3534: //
! 3535: // MessageText:
! 3536: //
! 3537: // The maximum number of secrets that may be stored in a single system has been
! 3538: // exceeded. The length and number of secrets is limited to satisfy United
! 3539: // States State Department export restrictions.
! 3540: //
! 3541: #define ERROR_TOO_MANY_SECRETS 1381L
! 3542:
! 3543: //
! 3544: // MessageId: ERROR_SECRET_TOO_LONG
! 3545: //
! 3546: // MessageText:
! 3547: //
! 3548: // The length of an secret exceeds the maximum length allowed. The length and
! 3549: // number of secrets is limited to satisfy United States State Department
! 3550: // export restrictions.
! 3551: //
! 3552: #define ERROR_SECRET_TOO_LONG 1382L
! 3553:
! 3554: //
! 3555: // MessageId: ERROR_INTERNAL_DB_ERROR
! 3556: //
! 3557: // MessageText:
! 3558: //
! 3559: // The Local Security Authority (LSA) database contains in internal inconsistency.
! 3560: //
! 3561: #define ERROR_INTERNAL_DB_ERROR 1383L
! 3562:
! 3563: //
! 3564: // MessageId: ERROR_TOO_MANY_CONTEXT_IDS
! 3565: //
! 3566: // MessageText:
! 3567: //
! 3568: // During a logon attempt, the user's security context accumulated too many
! 3569: // security IDs. This is a very unusual situation. Remove the user from
! 3570: // some groups or aliases to reduce the number of security ids to incorporate
! 3571: // into the security context.
! 3572: //
! 3573: #define ERROR_TOO_MANY_CONTEXT_IDS 1384L
! 3574:
! 3575: //
! 3576: // MessageId: ERROR_LOGON_TYPE_NOT_GRANTED
! 3577: //
! 3578: // MessageText:
! 3579: //
! 3580: // A user has requested a type of logon (e.g., interactive or network) that
! 3581: // has not be granted. An administrator has control over who may logon
! 3582: // interactively and through the network.
! 3583: //
! 3584: #define ERROR_LOGON_TYPE_NOT_GRANTED 1385L
! 3585:
! 3586: //
! 3587: // MessageId: ERROR_NT_CROSS_ENCRYPTION_REQUIRED
! 3588: //
! 3589: // MessageText:
! 3590: //
! 3591: // An attempt was made to change a user password in the security account manager
! 3592: // without providing the necessary NT cross-encrypted password.
! 3593: //
! 3594: #define ERROR_NT_CROSS_ENCRYPTION_REQUIRED 1386L
! 3595:
! 3596: //
! 3597: // MessageId: ERROR_NO_SUCH_MEMBER
! 3598: //
! 3599: // MessageText:
! 3600: //
! 3601: // A new member could not be added to an alias because the member does not exist.
! 3602: //
! 3603: #define ERROR_NO_SUCH_MEMBER 1387L
! 3604:
! 3605: //
! 3606: // MessageId: ERROR_INVALID_MEMBER
! 3607: //
! 3608: // MessageText:
! 3609: //
! 3610: // A new member could not be added to an alias because the member has the
! 3611: // wrong account type.
! 3612: //
! 3613: #define ERROR_INVALID_MEMBER 1388L
! 3614:
! 3615: //
! 3616: // MessageId: ERROR_TOO_MANY_SIDS
! 3617: //
! 3618: // MessageText:
! 3619: //
! 3620: // Too many Sids have been specified.
! 3621: //
! 3622: #define ERROR_TOO_MANY_SIDS 1389L
! 3623:
! 3624: //
! 3625: // MessageId: ERROR_LM_CROSS_ENCRYPTION_REQUIRED
! 3626: //
! 3627: // MessageText:
! 3628: //
! 3629: // An attempt was made to change a user password in the security account manager
! 3630: // without providing the necessary LM cross-encrypted password.
! 3631: //
! 3632: #define ERROR_LM_CROSS_ENCRYPTION_REQUIRED 1390L
! 3633:
! 3634: //
! 3635: // MessageId: ERROR_NO_INHERITANCE
! 3636: //
! 3637: // MessageText:
! 3638: //
! 3639: // Indicates an ACL contains no inheritable components
! 3640: //
! 3641: #define ERROR_NO_INHERITANCE 1391L
! 3642:
! 3643: //
! 3644: // MessageId: ERROR_FILE_CORRUPT
! 3645: //
! 3646: // MessageText:
! 3647: //
! 3648: // The file or directory is corrupt and non-readable.
! 3649: //
! 3650: #define ERROR_FILE_CORRUPT 1392L
! 3651:
! 3652: //
! 3653: // MessageId: ERROR_DISK_CORRUPT
! 3654: //
! 3655: // MessageText:
! 3656: //
! 3657: // The disk structure is corrupt and non-readable.
! 3658: //
! 3659: #define ERROR_DISK_CORRUPT 1393L
! 3660:
! 3661: // End of security error codes
! 3662:
! 3663:
! 3664:
! 3665: ///////////////////////////
! 3666: // //
! 3667: // WinUser Error Codes //
! 3668: // //
! 3669: ///////////////////////////
! 3670:
! 3671:
! 3672: //
! 3673: // MessageId: ERROR_INVALID_WINDOW_HANDLE
! 3674: //
! 3675: // MessageText:
! 3676: //
! 3677: // Invalid window handle.
! 3678: //
! 3679: #define ERROR_INVALID_WINDOW_HANDLE 1400L
! 3680:
! 3681: //
! 3682: // MessageId: ERROR_INVALID_MENU_HANDLE
! 3683: //
! 3684: // MessageText:
! 3685: //
! 3686: // Invalid menu handle.
! 3687: //
! 3688: #define ERROR_INVALID_MENU_HANDLE 1401L
! 3689:
! 3690: //
! 3691: // MessageId: ERROR_INVALID_CURSOR_HANDLE
! 3692: //
! 3693: // MessageText:
! 3694: //
! 3695: // Invalid cursor handle.
! 3696: //
! 3697: #define ERROR_INVALID_CURSOR_HANDLE 1402L
! 3698:
! 3699: //
! 3700: // MessageId: ERROR_INVALID_ACCEL_HANDLE
! 3701: //
! 3702: // MessageText:
! 3703: //
! 3704: // Invalid accelerator-table handle.
! 3705: //
! 3706: #define ERROR_INVALID_ACCEL_HANDLE 1403L
! 3707:
! 3708: //
! 3709: // MessageId: ERROR_INVALID_HOOK_HANDLE
! 3710: //
! 3711: // MessageText:
! 3712: //
! 3713: // Invalid hook handle.
! 3714: //
! 3715: #define ERROR_INVALID_HOOK_HANDLE 1404L
! 3716:
! 3717: //
! 3718: // MessageId: ERROR_INVALID_DWP_HANDLE
! 3719: //
! 3720: // MessageText:
! 3721: //
! 3722: // Invalid DeferWindowPos handle.
! 3723: //
! 3724: #define ERROR_INVALID_DWP_HANDLE 1405L
! 3725:
! 3726: //
! 3727: // MessageId: ERROR_TLW_WITH_WSCHILD
! 3728: //
! 3729: // MessageText:
! 3730: //
! 3731: // CreateWindow() failed, creating top-level window with WS_CHILD style.
! 3732: //
! 3733: #define ERROR_TLW_WITH_WSCHILD 1406L
! 3734:
! 3735: //
! 3736: // MessageId: ERROR_CANNOT_FIND_WND_CLASS
! 3737: //
! 3738: // MessageText:
! 3739: //
! 3740: // Cannot find window class.
! 3741: //
! 3742: #define ERROR_CANNOT_FIND_WND_CLASS 1407L
! 3743:
! 3744: //
! 3745: // MessageId: ERROR_WINDOW_OF_OTHER_THREAD
! 3746: //
! 3747: // MessageText:
! 3748: //
! 3749: // Invalid window, belongs to other thread.
! 3750: //
! 3751: #define ERROR_WINDOW_OF_OTHER_THREAD 1408L
! 3752:
! 3753: //
! 3754: // MessageId: ERROR_HOTKEY_ALREADY_REGISTERED
! 3755: //
! 3756: // MessageText:
! 3757: //
! 3758: // Hotkey already registered.
! 3759: //
! 3760: #define ERROR_HOTKEY_ALREADY_REGISTERED 1409L
! 3761:
! 3762: //
! 3763: // MessageId: ERROR_CLASS_ALREADY_EXISTS
! 3764: //
! 3765: // MessageText:
! 3766: //
! 3767: // Class already exists.
! 3768: //
! 3769: #define ERROR_CLASS_ALREADY_EXISTS 1410L
! 3770:
! 3771: //
! 3772: // MessageId: ERROR_CLASS_DOES_NOT_EXIST
! 3773: //
! 3774: // MessageText:
! 3775: //
! 3776: // Class does not exist.
! 3777: //
! 3778: #define ERROR_CLASS_DOES_NOT_EXIST 1411L
! 3779:
! 3780: //
! 3781: // MessageId: ERROR_CLASS_HAS_WINDOWS
! 3782: //
! 3783: // MessageText:
! 3784: //
! 3785: // Class still has open windows.
! 3786: //
! 3787: #define ERROR_CLASS_HAS_WINDOWS 1412L
! 3788:
! 3789: //
! 3790: // MessageId: ERROR_INVALID_INDEX
! 3791: //
! 3792: // MessageText:
! 3793: //
! 3794: // Invalid index.
! 3795: //
! 3796: #define ERROR_INVALID_INDEX 1413L
! 3797:
! 3798: //
! 3799: // MessageId: ERROR_INVALID_ICON_HANDLE
! 3800: //
! 3801: // MessageText:
! 3802: //
! 3803: // Invalid icon handle.
! 3804: //
! 3805: #define ERROR_INVALID_ICON_HANDLE 1414L
! 3806:
! 3807: //
! 3808: // MessageId: ERROR_PRIVATE_DIALOG_INDEX
! 3809: //
! 3810: // MessageText:
! 3811: //
! 3812: // Using private DIALOG window words.
! 3813: //
! 3814: #define ERROR_PRIVATE_DIALOG_INDEX 1415L
! 3815:
! 3816: //
! 3817: // MessageId: ERROR_LISTBOX_ID_NOT_FOUND
! 3818: //
! 3819: // MessageText:
! 3820: //
! 3821: // Listbox ID not found.
! 3822: //
! 3823: #define ERROR_LISTBOX_ID_NOT_FOUND 1416L
! 3824:
! 3825: //
! 3826: // MessageId: ERROR_NO_WILDCARD_CHARACTERS
! 3827: //
! 3828: // MessageText:
! 3829: //
! 3830: // No wildcard characters found.
! 3831: //
! 3832: #define ERROR_NO_WILDCARD_CHARACTERS 1417L
! 3833:
! 3834: //
! 3835: // MessageId: ERROR_CLIPBOARD_NOT_OPEN
! 3836: //
! 3837: // MessageText:
! 3838: //
! 3839: // Thread doesn't have clipboard open.
! 3840: //
! 3841: #define ERROR_CLIPBOARD_NOT_OPEN 1418L
! 3842:
! 3843: //
! 3844: // MessageId: ERROR_HOTKEY_NOT_REGISTERED
! 3845: //
! 3846: // MessageText:
! 3847: //
! 3848: // Hotkey not registered.
! 3849: //
! 3850: #define ERROR_HOTKEY_NOT_REGISTERED 1419L
! 3851:
! 3852: //
! 3853: // MessageId: ERROR_WINDOW_NOT_DIALOG
! 3854: //
! 3855: // MessageText:
! 3856: //
! 3857: // The window is not a valid dialog window.
! 3858: //
! 3859: #define ERROR_WINDOW_NOT_DIALOG 1420L
! 3860:
! 3861: //
! 3862: // MessageId: ERROR_CONTROL_ID_NOT_FOUND
! 3863: //
! 3864: // MessageText:
! 3865: //
! 3866: // Control ID not found.
! 3867: //
! 3868: #define ERROR_CONTROL_ID_NOT_FOUND 1421L
! 3869:
! 3870: //
! 3871: // MessageId: ERROR_INVALID_COMBOBOX_MESSAGE
! 3872: //
! 3873: // MessageText:
! 3874: //
! 3875: // Invalid Message, combobox doesn't have an edit control.
! 3876: //
! 3877: #define ERROR_INVALID_COMBOBOX_MESSAGE 1422L
! 3878:
! 3879: //
! 3880: // MessageId: ERROR_WINDOW_NOT_COMBOBOX
! 3881: //
! 3882: // MessageText:
! 3883: //
! 3884: // The window is not a combobox.
! 3885: //
! 3886: #define ERROR_WINDOW_NOT_COMBOBOX 1423L
! 3887:
! 3888: //
! 3889: // MessageId: ERROR_INVALID_EDIT_HEIGHT
! 3890: //
! 3891: // MessageText:
! 3892: //
! 3893: // Height must be less than 256.
! 3894: //
! 3895: #define ERROR_INVALID_EDIT_HEIGHT 1424L
! 3896:
! 3897: //
! 3898: // MessageId: ERROR_DC_NOT_FOUND
! 3899: //
! 3900: // MessageText:
! 3901: //
! 3902: // Invalid HDC passed to ReleaseDC.
! 3903: //
! 3904: #define ERROR_DC_NOT_FOUND 1425L
! 3905:
! 3906: //
! 3907: // MessageId: ERROR_INVALID_HOOK_FILTER
! 3908: //
! 3909: // MessageText:
! 3910: //
! 3911: // Invalid hook filter type.
! 3912: //
! 3913: #define ERROR_INVALID_HOOK_FILTER 1426L
! 3914:
! 3915: //
! 3916: // MessageId: ERROR_INVALID_FILTER_PROC
! 3917: //
! 3918: // MessageText:
! 3919: //
! 3920: // Invalid filter proc.
! 3921: //
! 3922: #define ERROR_INVALID_FILTER_PROC 1427L
! 3923:
! 3924: //
! 3925: // MessageId: ERROR_HOOK_NEEDS_HMOD
! 3926: //
! 3927: // MessageText:
! 3928: //
! 3929: // Cannot set non-local hook without an module handle.
! 3930: //
! 3931: #define ERROR_HOOK_NEEDS_HMOD 1428L
! 3932:
! 3933: //
! 3934: // MessageId: ERROR_GLOBAL_ONLY_HOOK
! 3935: //
! 3936: // MessageText:
! 3937: //
! 3938: // This hook can only be set globally.
! 3939: //
! 3940: #define ERROR_GLOBAL_ONLY_HOOK 1429L
! 3941:
! 3942: //
! 3943: // MessageId: ERROR_JOURNAL_HOOK_SET
! 3944: //
! 3945: // MessageText:
! 3946: //
! 3947: // The journal hook is already installed.
! 3948: //
! 3949: #define ERROR_JOURNAL_HOOK_SET 1430L
! 3950:
! 3951: //
! 3952: // MessageId: ERROR_HOOK_NOT_INSTALLED
! 3953: //
! 3954: // MessageText:
! 3955: //
! 3956: // Hook not installed.
! 3957: //
! 3958: #define ERROR_HOOK_NOT_INSTALLED 1431L
! 3959:
! 3960: //
! 3961: // MessageId: ERROR_INVALID_LB_MESSAGE
! 3962: //
! 3963: // MessageText:
! 3964: //
! 3965: // Invalid message for single-selection listbox.
! 3966: //
! 3967: #define ERROR_INVALID_LB_MESSAGE 1432L
! 3968:
! 3969: //
! 3970: // MessageId: ERROR_SETCOUNT_ON_BAD_LB
! 3971: //
! 3972: // MessageText:
! 3973: //
! 3974: // LB_SETCOUNT sent to non-lazy listbox.
! 3975: //
! 3976: #define ERROR_SETCOUNT_ON_BAD_LB 1433L
! 3977:
! 3978: //
! 3979: // MessageId: ERROR_LB_WITHOUT_TABSTOPS
! 3980: //
! 3981: // MessageText:
! 3982: //
! 3983: // This listbox doesn't support tab stops.
! 3984: //
! 3985: #define ERROR_LB_WITHOUT_TABSTOPS 1434L
! 3986:
! 3987: //
! 3988: // MessageId: ERROR_DESTROY_OBJECT_OF_OTHER_THREAD
! 3989: //
! 3990: // MessageText:
! 3991: //
! 3992: // Cannot destroy object created by another thread.
! 3993: //
! 3994: #define ERROR_DESTROY_OBJECT_OF_OTHER_THREAD 1435L
! 3995:
! 3996: //
! 3997: // MessageId: ERROR_CHILD_WINDOW_MENU
! 3998: //
! 3999: // MessageText:
! 4000: //
! 4001: // Child windows can't have menus.
! 4002: //
! 4003: #define ERROR_CHILD_WINDOW_MENU 1436L
! 4004:
! 4005: //
! 4006: // MessageId: ERROR_NO_SYSTEM_MENU
! 4007: //
! 4008: // MessageText:
! 4009: //
! 4010: // Window doesn't have system menu.
! 4011: //
! 4012: #define ERROR_NO_SYSTEM_MENU 1437L
! 4013:
! 4014: //
! 4015: // MessageId: ERROR_INVALID_MSGBOX_STYLE
! 4016: //
! 4017: // MessageText:
! 4018: //
! 4019: // Invalid message box style.
! 4020: //
! 4021: #define ERROR_INVALID_MSGBOX_STYLE 1438L
! 4022:
! 4023: //
! 4024: // MessageId: ERROR_INVALID_SPI_VALUE
! 4025: //
! 4026: // MessageText:
! 4027: //
! 4028: // Invalid SPI_* parameter.
! 4029: //
! 4030: #define ERROR_INVALID_SPI_VALUE 1439L
! 4031:
! 4032: //
! 4033: // MessageId: ERROR_SCREEN_ALREADY_LOCKED
! 4034: //
! 4035: // MessageText:
! 4036: //
! 4037: // Screen already locked.
! 4038: //
! 4039: #define ERROR_SCREEN_ALREADY_LOCKED 1440L
! 4040:
! 4041: //
! 4042: // MessageId: ERROR_HWNDS_HAVE_DIFFERENT_PARENT
! 4043: //
! 4044: // MessageText:
! 4045: //
! 4046: // All DeferWindowPos() HWNDs must have same parent.
! 4047: //
! 4048: #define ERROR_HWNDS_HAVE_DIFFERENT_PARENT 1441L
! 4049:
! 4050: //
! 4051: // MessageId: ERROR_NOT_CHILD_WINDOW
! 4052: //
! 4053: // MessageText:
! 4054: //
! 4055: // Window is not a child window.
! 4056: //
! 4057: #define ERROR_NOT_CHILD_WINDOW 1442L
! 4058:
! 4059: //
! 4060: // MessageId: ERROR_INVALID_GW_COMMAND
! 4061: //
! 4062: // MessageText:
! 4063: //
! 4064: // Invalid GW_* command.
! 4065: //
! 4066: #define ERROR_INVALID_GW_COMMAND 1443L
! 4067:
! 4068: //
! 4069: // MessageId: ERROR_INVALID_THREAD_ID
! 4070: //
! 4071: // MessageText:
! 4072: //
! 4073: // Invalid thread ID.
! 4074: //
! 4075: #define ERROR_INVALID_THREAD_ID 1444L
! 4076:
! 4077: //
! 4078: // MessageId: ERROR_NON_MDICHILD_WINDOW
! 4079: //
! 4080: // MessageText:
! 4081: //
! 4082: // DefMDIChildProc() called with a non-MDIChild window.
! 4083: //
! 4084: #define ERROR_NON_MDICHILD_WINDOW 1445L
! 4085:
! 4086: //
! 4087: // MessageId: ERROR_POPUP_ALREADY_ACTIVE
! 4088: //
! 4089: // MessageText:
! 4090: //
! 4091: // Popup menu already active.
! 4092: //
! 4093: #define ERROR_POPUP_ALREADY_ACTIVE 1446L
! 4094:
! 4095: //
! 4096: // MessageId: ERROR_NO_SCROLLBARS
! 4097: //
! 4098: // MessageText:
! 4099: //
! 4100: // Window does not have scrollbars.
! 4101: //
! 4102: #define ERROR_NO_SCROLLBARS 1447L
! 4103:
! 4104: //
! 4105: // MessageId: ERROR_INVALID_SCROLLBAR_RANGE
! 4106: //
! 4107: // MessageText:
! 4108: //
! 4109: // Scrollbar range greater than 0x7FFF.
! 4110: //
! 4111: #define ERROR_INVALID_SCROLLBAR_RANGE 1448L
! 4112:
! 4113: //
! 4114: // MessageId: ERROR_INVALID_SHOWWIN_COMMAND
! 4115: //
! 4116: // MessageText:
! 4117: //
! 4118: // Invalid ShowWindow() command.
! 4119: //
! 4120: #define ERROR_INVALID_SHOWWIN_COMMAND 1449L
! 4121:
! 4122: // End of WinUser error codes
! 4123:
! 4124:
! 4125:
! 4126: ///////////////////////////
! 4127: // //
! 4128: // Eventlog Status Codes //
! 4129: // //
! 4130: ///////////////////////////
! 4131:
! 4132:
! 4133: //
! 4134: // MessageId: ERROR_EVENTLOG_FILE_CORRUPT
! 4135: //
! 4136: // MessageText:
! 4137: //
! 4138: // One of the Eventlog logfiles has been corrupted.
! 4139: //
! 4140: #define ERROR_EVENTLOG_FILE_CORRUPT 1500L
! 4141:
! 4142: // End of eventlog error codes
! 4143:
! 4144:
! 4145:
! 4146: ///////////////////////////
! 4147: // //
! 4148: // RPC Status Codes //
! 4149: // //
! 4150: ///////////////////////////
! 4151:
! 4152:
! 4153: //
! 4154: // MessageId: RPC_S_INVALID_STRING_BINDING
! 4155: //
! 4156: // MessageText:
! 4157: //
! 4158: // The string binding is invalid.
! 4159: //
! 4160: #define RPC_S_INVALID_STRING_BINDING 1700L
! 4161:
! 4162: //
! 4163: // MessageId: RPC_S_WRONG_KIND_OF_BINDING
! 4164: //
! 4165: // MessageText:
! 4166: //
! 4167: // The binding handle is not the correct type.
! 4168: //
! 4169: #define RPC_S_WRONG_KIND_OF_BINDING 1701L
! 4170:
! 4171: //
! 4172: // MessageId: RPC_S_INVALID_BINDING
! 4173: //
! 4174: // MessageText:
! 4175: //
! 4176: // The binding handle is invalid.
! 4177: //
! 4178: #define RPC_S_INVALID_BINDING 1702L
! 4179:
! 4180: //
! 4181: // MessageId: RPC_S_PROTSEQ_NOT_SUPPORTED
! 4182: //
! 4183: // MessageText:
! 4184: //
! 4185: // The Rpc protocol sequence is not supported.
! 4186: //
! 4187: #define RPC_S_PROTSEQ_NOT_SUPPORTED 1703L
! 4188:
! 4189: //
! 4190: // MessageId: RPC_S_INVALID_RPC_PROTSEQ
! 4191: //
! 4192: // MessageText:
! 4193: //
! 4194: // The rpc protocol sequence is invalid.
! 4195: //
! 4196: #define RPC_S_INVALID_RPC_PROTSEQ 1704L
! 4197:
! 4198: //
! 4199: // MessageId: RPC_S_INVALID_STRING_UUID
! 4200: //
! 4201: // MessageText:
! 4202: //
! 4203: // The string uuid is invalid.
! 4204: //
! 4205: #define RPC_S_INVALID_STRING_UUID 1705L
! 4206:
! 4207: //
! 4208: // MessageId: RPC_S_INVALID_ENDPOINT_FORMAT
! 4209: //
! 4210: // MessageText:
! 4211: //
! 4212: // The endpoint format is invalid.
! 4213: //
! 4214: #define RPC_S_INVALID_ENDPOINT_FORMAT 1706L
! 4215:
! 4216: //
! 4217: // MessageId: RPC_S_INVALID_NET_ADDR
! 4218: //
! 4219: // MessageText:
! 4220: //
! 4221: // The network address is invalid.
! 4222: //
! 4223: #define RPC_S_INVALID_NET_ADDR 1707L
! 4224:
! 4225: //
! 4226: // MessageId: RPC_S_NO_ENDPOINT_FOUND
! 4227: //
! 4228: // MessageText:
! 4229: //
! 4230: // No endpoint was found.
! 4231: //
! 4232: #define RPC_S_NO_ENDPOINT_FOUND 1708L
! 4233:
! 4234: //
! 4235: // MessageId: RPC_S_INVALID_TIMEOUT
! 4236: //
! 4237: // MessageText:
! 4238: //
! 4239: // The timeout value is invalid.
! 4240: //
! 4241: #define RPC_S_INVALID_TIMEOUT 1709L
! 4242:
! 4243: //
! 4244: // MessageId: RPC_S_OBJECT_NOT_FOUND
! 4245: //
! 4246: // MessageText:
! 4247: //
! 4248: // The object uuid was not found.
! 4249: //
! 4250: #define RPC_S_OBJECT_NOT_FOUND 1710L
! 4251:
! 4252: //
! 4253: // MessageId: RPC_S_ALREADY_REGISTERED
! 4254: //
! 4255: // MessageText:
! 4256: //
! 4257: // The object uuid has already been registered.
! 4258: //
! 4259: #define RPC_S_ALREADY_REGISTERED 1711L
! 4260:
! 4261: //
! 4262: // MessageId: RPC_S_TYPE_ALREADY_REGISTERED
! 4263: //
! 4264: // MessageText:
! 4265: //
! 4266: // The type uuid has already been registered.
! 4267: //
! 4268: #define RPC_S_TYPE_ALREADY_REGISTERED 1712L
! 4269:
! 4270: //
! 4271: // MessageId: RPC_S_ALREADY_LISTENING
! 4272: //
! 4273: // MessageText:
! 4274: //
! 4275: // The server is already listening.
! 4276: //
! 4277: #define RPC_S_ALREADY_LISTENING 1713L
! 4278:
! 4279: //
! 4280: // MessageId: RPC_S_NO_PROTSEQS_REGISTERED
! 4281: //
! 4282: // MessageText:
! 4283: //
! 4284: // No protocol sequences have been registered.
! 4285: //
! 4286: #define RPC_S_NO_PROTSEQS_REGISTERED 1714L
! 4287:
! 4288: //
! 4289: // MessageId: RPC_S_NOT_LISTENING
! 4290: //
! 4291: // MessageText:
! 4292: //
! 4293: // The server is not listening.
! 4294: //
! 4295: #define RPC_S_NOT_LISTENING 1715L
! 4296:
! 4297: //
! 4298: // MessageId: RPC_S_UNKNOWN_MGR_TYPE
! 4299: //
! 4300: // MessageText:
! 4301: //
! 4302: // The manager type is unknown.
! 4303: //
! 4304: #define RPC_S_UNKNOWN_MGR_TYPE 1716L
! 4305:
! 4306: //
! 4307: // MessageId: RPC_S_UNKNOWN_IF
! 4308: //
! 4309: // MessageText:
! 4310: //
! 4311: // The interface is unknown.
! 4312: //
! 4313: #define RPC_S_UNKNOWN_IF 1717L
! 4314:
! 4315: //
! 4316: // MessageId: RPC_S_NO_BINDINGS
! 4317: //
! 4318: // MessageText:
! 4319: //
! 4320: // There are no bindings.
! 4321: //
! 4322: #define RPC_S_NO_BINDINGS 1718L
! 4323:
! 4324: //
! 4325: // MessageId: RPC_S_NO_PROTSEQS
! 4326: //
! 4327: // MessageText:
! 4328: //
! 4329: // There are no protocol sequences.
! 4330: //
! 4331: #define RPC_S_NO_PROTSEQS 1719L
! 4332:
! 4333: //
! 4334: // MessageId: RPC_S_CANT_CREATE_ENDPOINT
! 4335: //
! 4336: // MessageText:
! 4337: //
! 4338: // The endpoint can not be created.
! 4339: //
! 4340: #define RPC_S_CANT_CREATE_ENDPOINT 1720L
! 4341:
! 4342: //
! 4343: // MessageId: RPC_S_OUT_OF_RESOURCES
! 4344: //
! 4345: // MessageText:
! 4346: //
! 4347: // Not enough resources are available to complete this operation.
! 4348: //
! 4349: #define RPC_S_OUT_OF_RESOURCES 1721L
! 4350:
! 4351: //
! 4352: // MessageId: RPC_S_SERVER_UNAVAILABLE
! 4353: //
! 4354: // MessageText:
! 4355: //
! 4356: // The server is unavailable.
! 4357: //
! 4358: #define RPC_S_SERVER_UNAVAILABLE 1722L
! 4359:
! 4360: //
! 4361: // MessageId: RPC_S_SERVER_TOO_BUSY
! 4362: //
! 4363: // MessageText:
! 4364: //
! 4365: // The server is too busy to complete this operation.
! 4366: //
! 4367: #define RPC_S_SERVER_TOO_BUSY 1723L
! 4368:
! 4369: //
! 4370: // MessageId: RPC_S_INVALID_NETWORK_OPTIONS
! 4371: //
! 4372: // MessageText:
! 4373: //
! 4374: // The network options are invalid.
! 4375: //
! 4376: #define RPC_S_INVALID_NETWORK_OPTIONS 1724L
! 4377:
! 4378: //
! 4379: // MessageId: RPC_S_NO_CALL_ACTIVE
! 4380: //
! 4381: // MessageText:
! 4382: //
! 4383: // There is not a remote procedure call active in this thread.
! 4384: //
! 4385: #define RPC_S_NO_CALL_ACTIVE 1725L
! 4386:
! 4387: //
! 4388: // MessageId: RPC_S_CALL_FAILED
! 4389: //
! 4390: // MessageText:
! 4391: //
! 4392: // The remote procedure call failed.
! 4393: //
! 4394: #define RPC_S_CALL_FAILED 1726L
! 4395:
! 4396: //
! 4397: // MessageId: RPC_S_CALL_FAILED_DNE
! 4398: //
! 4399: // MessageText:
! 4400: //
! 4401: // The remote procedure call failed and did not execute.
! 4402: //
! 4403: #define RPC_S_CALL_FAILED_DNE 1727L
! 4404:
! 4405: //
! 4406: // MessageId: RPC_S_PROTOCOL_ERROR
! 4407: //
! 4408: // MessageText:
! 4409: //
! 4410: // An rpc protocol error occured.
! 4411: //
! 4412: #define RPC_S_PROTOCOL_ERROR 1728L
! 4413:
! 4414: //
! 4415: // MessageId: RPC_S_CANNOT_BIND
! 4416: //
! 4417: // MessageText:
! 4418: //
! 4419: // An attempt to bind with the server failed.
! 4420: //
! 4421: #define RPC_S_CANNOT_BIND 1729L
! 4422:
! 4423: //
! 4424: // MessageId: RPC_S_UNSUPPORTED_TRANS_SYN
! 4425: //
! 4426: // MessageText:
! 4427: //
! 4428: // The transfer syntax is not supported by the server.
! 4429: //
! 4430: #define RPC_S_UNSUPPORTED_TRANS_SYN 1730L
! 4431:
! 4432: //
! 4433: // MessageId: RPC_S_SERVER_OUT_OF_MEMORY
! 4434: //
! 4435: // MessageText:
! 4436: //
! 4437: // The server has insufficient memory to complete this operation.
! 4438: //
! 4439: #define RPC_S_SERVER_OUT_OF_MEMORY 1731L
! 4440:
! 4441: //
! 4442: // MessageId: RPC_S_UNSUPPORTED_TYPE
! 4443: //
! 4444: // MessageText:
! 4445: //
! 4446: // The type uuid is not supported.
! 4447: //
! 4448: #define RPC_S_UNSUPPORTED_TYPE 1732L
! 4449:
! 4450: //
! 4451: // MessageId: RPC_S_INVALID_TAG
! 4452: //
! 4453: // MessageText:
! 4454: //
! 4455: // The tag is invalid.
! 4456: //
! 4457: #define RPC_S_INVALID_TAG 1733L
! 4458:
! 4459: //
! 4460: // MessageId: RPC_S_INVALID_BOUND
! 4461: //
! 4462: // MessageText:
! 4463: //
! 4464: // The array bounds are invalid.
! 4465: //
! 4466: #define RPC_S_INVALID_BOUND 1734L
! 4467:
! 4468: //
! 4469: // MessageId: RPC_S_NO_ENTRY_NAME
! 4470: //
! 4471: // MessageText:
! 4472: //
! 4473: // The binding does not contain an entry name.
! 4474: //
! 4475: #define RPC_S_NO_ENTRY_NAME 1735L
! 4476:
! 4477: //
! 4478: // MessageId: RPC_S_INVALID_NAME_SYNTAX
! 4479: //
! 4480: // MessageText:
! 4481: //
! 4482: // The name syntax is invalid.
! 4483: //
! 4484: #define RPC_S_INVALID_NAME_SYNTAX 1736L
! 4485:
! 4486: //
! 4487: // MessageId: RPC_S_UNSUPPORTED_NAME_SYNTAX
! 4488: //
! 4489: // MessageText:
! 4490: //
! 4491: // The name syntax is not supported.
! 4492: //
! 4493: #define RPC_S_UNSUPPORTED_NAME_SYNTAX 1737L
! 4494:
! 4495: //
! 4496: // MessageId: RPC_S_SERVER_NOT_LISTENING
! 4497: //
! 4498: // MessageText:
! 4499: //
! 4500: // The server is not listening for remote procedure calls.
! 4501: //
! 4502: #define RPC_S_SERVER_NOT_LISTENING 1738L
! 4503:
! 4504: //
! 4505: // MessageId: RPC_S_UUID_NO_ADDRESS
! 4506: //
! 4507: // MessageText:
! 4508: //
! 4509: // No network address is available to use to construct a uuid.
! 4510: //
! 4511: #define RPC_S_UUID_NO_ADDRESS 1739L
! 4512:
! 4513: //
! 4514: // MessageId: RPC_S_DUPLICATE_ENDPOINT
! 4515: //
! 4516: // MessageText:
! 4517: //
! 4518: // The endpoint is a duplicate.
! 4519: //
! 4520: #define RPC_S_DUPLICATE_ENDPOINT 1740L
! 4521:
! 4522: //
! 4523: // MessageId: RPC_S_UNKNOWN_AUTHN_TYPE
! 4524: //
! 4525: // MessageText:
! 4526: //
! 4527: // The authentication type is unknown.
! 4528: //
! 4529: #define RPC_S_UNKNOWN_AUTHN_TYPE 1741L
! 4530:
! 4531: //
! 4532: // MessageId: RPC_S_MAX_CALLS_TOO_SMALL
! 4533: //
! 4534: // MessageText:
! 4535: //
! 4536: // The maximum number of calls is too small.
! 4537: //
! 4538: #define RPC_S_MAX_CALLS_TOO_SMALL 1742L
! 4539:
! 4540: //
! 4541: // MessageId: RPC_S_STRING_TOO_LONG
! 4542: //
! 4543: // MessageText:
! 4544: //
! 4545: // The string is too long.
! 4546: //
! 4547: #define RPC_S_STRING_TOO_LONG 1743L
! 4548:
! 4549: //
! 4550: // MessageId: RPC_S_PROTSEQ_NOT_FOUND
! 4551: //
! 4552: // MessageText:
! 4553: //
! 4554: // The rpc protocol sequence was not found.
! 4555: //
! 4556: #define RPC_S_PROTSEQ_NOT_FOUND 1744L
! 4557:
! 4558: //
! 4559: // MessageId: RPC_S_PROCNUM_OUT_OF_RANGE
! 4560: //
! 4561: // MessageText:
! 4562: //
! 4563: // The procedure number is out of range.
! 4564: //
! 4565: #define RPC_S_PROCNUM_OUT_OF_RANGE 1745L
! 4566:
! 4567: //
! 4568: // MessageId: RPC_S_BINDING_HAS_NO_AUTH
! 4569: //
! 4570: // MessageText:
! 4571: //
! 4572: // The binding does not contain any authentication information.
! 4573: //
! 4574: #define RPC_S_BINDING_HAS_NO_AUTH 1746L
! 4575:
! 4576: //
! 4577: // MessageId: RPC_S_UNKNOWN_AUTHN_SERVICE
! 4578: //
! 4579: // MessageText:
! 4580: //
! 4581: // The authentication service is unknown.
! 4582: //
! 4583: #define RPC_S_UNKNOWN_AUTHN_SERVICE 1747L
! 4584:
! 4585: //
! 4586: // MessageId: RPC_S_UNKNOWN_AUTHN_LEVEL
! 4587: //
! 4588: // MessageText:
! 4589: //
! 4590: // The authentication level is unknown.
! 4591: //
! 4592: #define RPC_S_UNKNOWN_AUTHN_LEVEL 1748L
! 4593:
! 4594: //
! 4595: // MessageId: RPC_S_INVALID_AUTH_IDENTITY
! 4596: //
! 4597: // MessageText:
! 4598: //
! 4599: // The security context is invalid.
! 4600: //
! 4601: #define RPC_S_INVALID_AUTH_IDENTITY 1749L
! 4602:
! 4603: //
! 4604: // MessageId: RPC_S_UNKNOWN_AUTHZ_SERVICE
! 4605: //
! 4606: // MessageText:
! 4607: //
! 4608: // The authorization service is unknown.
! 4609: //
! 4610: #define RPC_S_UNKNOWN_AUTHZ_SERVICE 1750L
! 4611:
! 4612: //
! 4613: // MessageId: EPT_S_INVALID_ENTRY
! 4614: //
! 4615: // MessageText:
! 4616: //
! 4617: // The entry is invalid.
! 4618: //
! 4619: #define EPT_S_INVALID_ENTRY 1751L
! 4620:
! 4621: //
! 4622: // MessageId: EPT_S_CANT_PERFORM_OP
! 4623: //
! 4624: // MessageText:
! 4625: //
! 4626: // The operation can not be performed.
! 4627: //
! 4628: #define EPT_S_CANT_PERFORM_OP 1752L
! 4629:
! 4630: //
! 4631: // MessageId: EPT_S_NOT_REGISTERED
! 4632: //
! 4633: // MessageText:
! 4634: //
! 4635: // There are not more endpoints available from the endpoint mapper.
! 4636: //
! 4637: #define EPT_S_NOT_REGISTERED 1753L
! 4638:
! 4639: //
! 4640: // MessageId: RPC_S_NO_INTERFACES_EXPORTED
! 4641: //
! 4642: // MessageText:
! 4643: //
! 4644: // No interfaces have been exported.
! 4645: //
! 4646: #define RPC_S_NO_INTERFACES_EXPORTED 1754L
! 4647:
! 4648: //
! 4649: // MessageId: RPC_S_INCOMPLETE_NAME
! 4650: //
! 4651: // MessageText:
! 4652: //
! 4653: // The entry name is incomplete.
! 4654: //
! 4655: #define RPC_S_INCOMPLETE_NAME 1755L
! 4656:
! 4657: //
! 4658: // MessageId: RPC_S_INVALID_VERS_OPTION
! 4659: //
! 4660: // MessageText:
! 4661: //
! 4662: // The version option is invalid.
! 4663: //
! 4664: #define RPC_S_INVALID_VERS_OPTION 1756L
! 4665:
! 4666: //
! 4667: // MessageId: RPC_S_NO_MORE_MEMBERS
! 4668: //
! 4669: // MessageText:
! 4670: //
! 4671: // There are no more members.
! 4672: //
! 4673: #define RPC_S_NO_MORE_MEMBERS 1757L
! 4674:
! 4675: //
! 4676: // MessageId: RPC_S_NOTHING_TO_UNEXPORT
! 4677: //
! 4678: // MessageText:
! 4679: //
! 4680: // There is nothing to unexport.
! 4681: //
! 4682: #define RPC_S_NOTHING_TO_UNEXPORT 1758L
! 4683:
! 4684: //
! 4685: // MessageId: RPC_S_INTERFACE_NOT_FOUND
! 4686: //
! 4687: // MessageText:
! 4688: //
! 4689: // The interface was not found.
! 4690: //
! 4691: #define RPC_S_INTERFACE_NOT_FOUND 1759L
! 4692:
! 4693: //
! 4694: // MessageId: RPC_S_ENTRY_ALREADY_EXISTS
! 4695: //
! 4696: // MessageText:
! 4697: //
! 4698: // The entry already exists.
! 4699: //
! 4700: #define RPC_S_ENTRY_ALREADY_EXISTS 1760L
! 4701:
! 4702: //
! 4703: // MessageId: RPC_S_ENTRY_NOT_FOUND
! 4704: //
! 4705: // MessageText:
! 4706: //
! 4707: // The entry is not found.
! 4708: //
! 4709: #define RPC_S_ENTRY_NOT_FOUND 1761L
! 4710:
! 4711: //
! 4712: // MessageId: RPC_S_NAME_SERVICE_UNAVAILABLE
! 4713: //
! 4714: // MessageText:
! 4715: //
! 4716: // The name service is unavailable.
! 4717: //
! 4718: #define RPC_S_NAME_SERVICE_UNAVAILABLE 1762L
! 4719:
! 4720: //
! 4721: // MessageId: RPC_S_INVALID_NAF_IF
! 4722: //
! 4723: // MessageText:
! 4724: //
! 4725: // The network address family is invalid.
! 4726: //
! 4727: #define RPC_S_INVALID_NAF_IF 1763L
! 4728:
! 4729: //
! 4730: // MessageId: RPC_S_CANNOT_SUPPORT
! 4731: //
! 4732: // MessageText:
! 4733: //
! 4734: // The requested operation is not supported.
! 4735: //
! 4736: #define RPC_S_CANNOT_SUPPORT 1764L
! 4737:
! 4738: //
! 4739: // MessageId: RPC_S_NO_CONTEXT_AVAILABLE
! 4740: //
! 4741: // MessageText:
! 4742: //
! 4743: // No security context is available to allow impersonation.
! 4744: //
! 4745: #define RPC_S_NO_CONTEXT_AVAILABLE 1765L
! 4746:
! 4747: //
! 4748: // MessageId: RPC_S_INTERNAL_ERROR
! 4749: //
! 4750: // MessageText:
! 4751: //
! 4752: // An internal error occured in rpc.
! 4753: //
! 4754: #define RPC_S_INTERNAL_ERROR 1766L
! 4755:
! 4756: //
! 4757: // MessageId: RPC_S_ZERO_DIVIDE
! 4758: //
! 4759: // MessageText:
! 4760: //
! 4761: // The server attempted an integer divide by zero.
! 4762: //
! 4763: #define RPC_S_ZERO_DIVIDE 1767L
! 4764:
! 4765: //
! 4766: // MessageId: RPC_S_ADDRESS_ERROR
! 4767: //
! 4768: // MessageText:
! 4769: //
! 4770: // An addressing error occured in the server.
! 4771: //
! 4772: #define RPC_S_ADDRESS_ERROR 1768L
! 4773:
! 4774: //
! 4775: // MessageId: RPC_S_FP_DIV_ZERO
! 4776: //
! 4777: // MessageText:
! 4778: //
! 4779: // A floating point operation at the server caused a divide by zero.
! 4780: //
! 4781: #define RPC_S_FP_DIV_ZERO 1769L
! 4782:
! 4783: //
! 4784: // MessageId: RPC_S_FP_UNDERFLOW
! 4785: //
! 4786: // MessageText:
! 4787: //
! 4788: // A floating point underflow occured at the server.
! 4789: //
! 4790: #define RPC_S_FP_UNDERFLOW 1770L
! 4791:
! 4792: //
! 4793: // MessageId: RPC_S_FP_OVERFLOW
! 4794: //
! 4795: // MessageText:
! 4796: //
! 4797: // A floating point overflow occured at the server.
! 4798: //
! 4799: #define RPC_S_FP_OVERFLOW 1771L
! 4800:
! 4801: //
! 4802: // MessageId: RPC_X_NO_MORE_ENTRIES
! 4803: //
! 4804: // MessageText:
! 4805: //
! 4806: // The list of servers available for auto_handle binding has been exhausted.
! 4807: //
! 4808: #define RPC_X_NO_MORE_ENTRIES 1772L
! 4809:
! 4810: //
! 4811: // MessageId: RPC_X_SS_CHAR_TRANS_OPEN_FAIL
! 4812: //
! 4813: // MessageText:
! 4814: //
! 4815: // The file designated by DCERPCCHARTRANS cannot be opened.
! 4816: //
! 4817: #define RPC_X_SS_CHAR_TRANS_OPEN_FAIL 1773L
! 4818:
! 4819: //
! 4820: // MessageId: RPC_X_SS_CHAR_TRANS_SHORT_FILE
! 4821: //
! 4822: // MessageText:
! 4823: //
! 4824: // The file containing the character translation table has fewer than
! 4825: // 512 bytes.
! 4826: //
! 4827: #define RPC_X_SS_CHAR_TRANS_SHORT_FILE 1774L
! 4828:
! 4829: //
! 4830: // MessageId: RPC_X_SS_IN_NULL_CONTEXT
! 4831: //
! 4832: // MessageText:
! 4833: //
! 4834: // A null context handle is passed as an [in] parameter.
! 4835: //
! 4836: #define RPC_X_SS_IN_NULL_CONTEXT 1775L
! 4837:
! 4838: //
! 4839: // MessageId: RPC_X_SS_CONTEXT_MISMATCH
! 4840: //
! 4841: // MessageText:
! 4842: //
! 4843: // The context handle does not match any known context handles.
! 4844: //
! 4845: #define RPC_X_SS_CONTEXT_MISMATCH 1776L
! 4846:
! 4847: //
! 4848: // MessageId: RPC_X_SS_CONTEXT_DAMAGED
! 4849: //
! 4850: // MessageText:
! 4851: //
! 4852: // The context handle changed during a call.
! 4853: //
! 4854: #define RPC_X_SS_CONTEXT_DAMAGED 1777L
! 4855:
! 4856: //
! 4857: // MessageId: RPC_X_SS_HANDLES_MISMATCH
! 4858: //
! 4859: // MessageText:
! 4860: //
! 4861: // The binding handles passed to a remote procedure call do not match.
! 4862: //
! 4863: #define RPC_X_SS_HANDLES_MISMATCH 1778L
! 4864:
! 4865: //
! 4866: // MessageId: RPC_X_SS_CANNOT_GET_CALL_HANDLE
! 4867: //
! 4868: // MessageText:
! 4869: //
! 4870: // The stub is unable to get the call handle.
! 4871: //
! 4872: #define RPC_X_SS_CANNOT_GET_CALL_HANDLE 1779L
! 4873:
! 4874: //
! 4875: // MessageId: RPC_X_NULL_REF_POINTER
! 4876: //
! 4877: // MessageText:
! 4878: //
! 4879: // A null reference pointer was passed to the stub.
! 4880: //
! 4881: #define RPC_X_NULL_REF_POINTER 1780L
! 4882:
! 4883: //
! 4884: // MessageId: RPC_X_ENUM_VALUE_OUT_OF_RANGE
! 4885: //
! 4886: // MessageText:
! 4887: //
! 4888: // The enumeration value is out of range.
! 4889: //
! 4890: #define RPC_X_ENUM_VALUE_OUT_OF_RANGE 1781L
! 4891:
! 4892: //
! 4893: // MessageId: RPC_X_BYTE_COUNT_TOO_SMALL
! 4894: //
! 4895: // MessageText:
! 4896: //
! 4897: // The byte count is too small
! 4898: //
! 4899: #define RPC_X_BYTE_COUNT_TOO_SMALL 1782L
! 4900:
! 4901: //
! 4902: // MessageId: RPC_X_BAD_STUB_DATA
! 4903: //
! 4904: // MessageText:
! 4905: //
! 4906: // The stub received bad data.
! 4907: //
! 4908: #define RPC_X_BAD_STUB_DATA 1783L
! 4909:
! 4910: //
! 4911: // MessageId: ERROR_INVALID_USER_BUFFER
! 4912: //
! 4913: // MessageText:
! 4914: //
! 4915: // The supplied user buffer is not valid for the requested operation.
! 4916: //
! 4917: #define ERROR_INVALID_USER_BUFFER 1784L
! 4918:
! 4919: //
! 4920: // MessageId: ERROR_UNRECOGNIZED_MEDIA
! 4921: //
! 4922: // MessageText:
! 4923: //
! 4924: // The disk media is not recognized. It may not be formatted.
! 4925: //
! 4926: #define ERROR_UNRECOGNIZED_MEDIA 1785L
! 4927:
1.1 root 4928: #endif // _WINERROR_
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.