Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

191 lines
6.7 KiB

  1. ;*** Translateable text for command.com resident data.
  2. ;* Input characters for critical error "Abort, Retry, Fail, Ignore?"
  3. ; and Yes/No.
  4. Abort_Char db "A"
  5. Retry_Char db "R"
  6. Ignore_Char db "I"
  7. Fail_Char db "F"
  8. Yes_Char db "Y"
  9. No_Char db "N"
  10. ;* MESSAGES
  11. ;
  12. ; See resmsg.equ for macro definition.
  13. ;* Local messages.
  14. msg Req_Abort, <"Abort">
  15. msg Req_Retry, <", Retry">
  16. msg Req_Ignore,<", Ignore">
  17. msg Req_Fail, <", Fail">
  18. msg Req_End, <"?">
  19. msg MRead, <"reading",0>
  20. msg MWrite, <"writing",0>
  21. msg BlkDevErr, <" %1 drive %2",CR,LF>
  22. msg CharDevErr,<" %1 device %2",CR,LF>
  23. msg NeedVolMsg,<"Please insert volume %1 serial %2-%3",CR,LF>
  24. msg BadFatMsg, <"File allocation table bad, drive %1",CR,LF>
  25. msg ComBad, <"Invalid COMMAND.COM",CR,LF>
  26. msg PutBackMsg,<"Insert disk with %1 in drive %2",CR,LF>
  27. msg Prompt, <"Press any key to continue . . .",CR,LF>
  28. msg EndBatMes, <CR,LF,"Terminate batch job (Y/N)?">
  29. msg ExecEMes, <"Cannot execute %1",CR,LF>
  30. msg ExeBad, <"Error in EXE file",CR,LF>
  31. msg TooBig, <"Program too big to fit in memory",CR,LF>
  32. msg NoHandMes, <CR,LF,"No free file handles">
  33. msg RBadNam, <"Bad Command or file name",CR,LF>
  34. msg AccDen, <"Access denied ">
  35. msg BMemMes, <CR,LF,"Memory allocation error">
  36. msg HaltMes, <CR,LF,"Cannot load COMMAND, system halted",CR,LF>
  37. msg FRetMes, <CR,LF,"Cannot start COMMAND, exiting",CR,LF>
  38. msg Patricide, <CR,LF,"Top level process aborted, cannot continue",CR,LF>
  39. msg Newlin, <CR,LF>
  40. ;* Ptrs to message lists.
  41. ; Segment portion is 1, signalling message services to call retriever.
  42. MsgPtrLists label dword
  43. dw DATARES:ExtMsgPtrs,1 ; extended error messages
  44. dw DATARES:ParsMsgPtrs,1 ; parse error messages
  45. dw DATARES:ExtMsgPtrs,1 ; critical error messages -
  46. ; use extended error list
  47. dw 0,0 ; file system error messages - none
  48. dw DATARES:MsgRetrv_Trap ; address of message retriever
  49. MySeg3 dw ? ; (segment filled in during init)
  50. ;* Critical error messages.
  51. msg ExtErr19,<"Write protect error">
  52. msg ExtErr20,<"Invalid unit">
  53. msg ExtErr21,<"Not ready">
  54. msg ExtErr22,<"Invalid device request">
  55. msg ExtErr23,<"Data error">
  56. msg ExtErr24,<"Invalid device request parameters">
  57. msg ExtErr25,<"Seek error">
  58. msg ExtErr26,<"Invalid media type">
  59. msg ExtErr27,<"Sector not found">
  60. msg ExtErr28,<"Printer out of paper error">
  61. msg ExtErr29,<"Write fault error">
  62. msg ExtErr30,<"Read fault error">
  63. msg ExtErr31,<"General failure">
  64. msg ExtErr32,<"Sharing violation">
  65. msg ExtErr33,<"Lock violation">
  66. msg ExtErr34,<"Invalid disk change">
  67. msg ExtErr35,<"FCB unavailable">
  68. msg ExtErr36,<"System resource exhausted">
  69. msg ExtErr37,<"Code page mismatch">
  70. msg ExtErr38,<"Out of input">
  71. msg ExtErr39,<"Insufficient disk space">
  72. ; List of ptrs to critical error messages.
  73. ; Code assumes extended error number order, beginning
  74. ; with extended error number 19.
  75. CritMsgPtrs label word
  76. dw DATARES:ExtErr19,DATARES:ExtErr20,DATARES:ExtErr21,DATARES:ExtErr22,DATARES:ExtErr23,DATARES:ExtErr24
  77. dw DATARES:ExtErr25,DATARES:ExtErr26,DATARES:ExtErr27,DATARES:ExtErr28,DATARES:ExtErr29,DATARES:ExtErr30
  78. dw DATARES:ExtErr31,DATARES:ExtErr32,DATARES:ExtErr33,DATARES:ExtErr34,DATARES:ExtErr35,DATARES:ExtErr36
  79. dw DATARES:ExtErr37,DATARES:ExtErr38,DATARES:ExtErr39
  80. DataResEnd label byte ; end of resident portion if /msg not used
  81. ;* Parse error messages.
  82. msg ParsErr01,<"Too many parameters">
  83. msg ParsErr02,<"Required parameter missing">
  84. msg ParsErr03,<"Invalid switch">
  85. msg ParsErr04,<"Invalid keyword">
  86. msg ParsErr05,<" ">
  87. msg ParsErr06,<"Parameter value not in allowed range">
  88. msg ParsErr07,<"Parameter value not allowed">
  89. msg ParsErr08,<"Parameter value not allowed">
  90. msg ParsErr09,<"Parameter format not correct">
  91. msg ParsErr10,<"Invalid parameter">
  92. msg ParsErr11,<"Invalid parameter combination">
  93. ; List of ptrs to parse error messages.
  94. ; In order, beginning with parse error number 1.
  95. ParsMsgPtrs label word
  96. dw DATARES:ParsErr01,DATARES:ParsErr02,DATARES:ParsErr03
  97. dw DATARES:ParsErr04,DATARES:ParsErr05,DATARES:ParsErr06
  98. dw DATARES:ParsErr07,DATARES:ParsErr08,DATARES:ParsErr09
  99. dw DATARES:ParsErr10,DATARES:ParsErr11
  100. NUMPARSMSGS equ ($ - ParsMsgPtrs) / 2 ;M033
  101. ;* Extended error messages.
  102. msg ExtErr01,<"Invalid function">
  103. msg ExtErr02,<"File not found">
  104. msg ExtErr03,<"Path not found">
  105. msg ExtErr04,<"Too many open files">
  106. msg ExtErr05,<"Access denied ">
  107. msg ExtErr06,<"Invalid handle">
  108. msg ExtErr07,<"Memory control blocks destroyed">
  109. msg ExtErr08,<"Insufficient memory">
  110. msg ExtErr09,<"Invalid memory block address">
  111. msg ExtErr10,<"Invalid Environment">
  112. msg ExtErr11,<"Invalid format">
  113. msg ExtErr12,<"Invalid function parameter">
  114. msg ExtErr13,<"Invalid data">
  115. msg ExtErr15,<"Invalid drive specification">
  116. msg ExtErr16,<"Attempt to remove current directory">
  117. msg ExtErr17,<"Not same device">
  118. msg ExtErr18,<"No more files">
  119. msg ExtErr80,<"File exists">
  120. msg ExtErr82,<"Cannot make directory entry">
  121. msg ExtErr83,<"Fail on INT 24">
  122. msg ExtErr84,<"Too many redirections">
  123. msg ExtErr85,<"Duplicate redirection">
  124. msg ExtErr86,<"Invalid password">
  125. msg ExtErr87,<"Invalid parameter">
  126. msg ExtErr88,<"Network data fault">
  127. msg ExtErr89,<"Function not supported by network">
  128. msg ExtErr90,<"Required system component not installed">
  129. ; List of ptrs to extended error messages.
  130. ; In order, beginning with extended error number 1.
  131. ; Critical error messages are included here, as well as in the
  132. ; critical error message list.
  133. ; Error numbers without messages are included as null ptrs.
  134. ExtMsgPtrs label word
  135. dw DATARES:ExtErr01,DATARES:ExtErr02,DATARES:ExtErr03
  136. dw DATARES:ExtErr04,DATARES:ExtErr05,DATARES:ExtErr06
  137. dw DATARES:ExtErr07,DATARES:ExtErr08,DATARES:ExtErr09
  138. dw DATARES:ExtErr10,DATARES:ExtErr11,DATARES:ExtErr12
  139. dw DATARES:ExtErr13,0, DATARES:ExtErr15
  140. dw DATARES:ExtErr16,DATARES:ExtErr17,DATARES:ExtErr18
  141. dw DATARES:ExtErr19,DATARES:ExtErr20,DATARES:ExtErr21
  142. dw DATARES:ExtErr22,DATARES:ExtErr23,DATARES:ExtErr24
  143. dw DATARES:ExtErr25,DATARES:ExtErr26,DATARES:ExtErr27
  144. dw DATARES:ExtErr28,DATARES:ExtErr29,DATARES:ExtErr30
  145. dw DATARES:ExtErr31,DATARES:ExtErr32,DATARES:ExtErr33
  146. dw DATARES:ExtErr34,DATARES:ExtErr35,DATARES:ExtErr36
  147. dw DATARES:ExtErr37,DATARES:ExtErr38,DATARES:ExtErr39
  148. dw 80-40 dup (0) ; null ptrs for errors 40-79
  149. dw DATARES:ExtErr80,0, DATARES:ExtErr82
  150. dw DATARES:ExtErr83,DATARES:ExtErr84,DATARES:ExtErr85
  151. dw DATARES:ExtErr86,DATARES:ExtErr87,DATARES:ExtErr88
  152. dw DATARES:ExtErr89,DATARES:ExtErr90
  153. ExtMsgPtrsEnd label word
  154. NUMEXTMSGS equ ($ - ExtMsgPtrs) / 2 ;M033
  155. ExtMsgEnd label byte ; end of extended error messages
  156. ; = end of resident if /msg is used
  157.