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.

43 lines
2.1 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #include "common.h"
  4. #include "rcids.h"
  5. STRINGTABLE
  6. BEGIN
  7. IDS_ERR_OutOfMemory "There is not enough memory to process this script."
  8. IDS_ERR_InternalError "%1(%2!d!) : '%3' : an internal error occurred."
  9. IDS_ERR_DivByZero "%1(%2!d!) : divide by zero"
  10. IDS_ERR_UnexpectedEOF "%1(%2!d!) : unexpected end of file"
  11. IDS_ERR_SyntaxError "%1(%2!d!) : '%3' : syntax error"
  12. IDS_ERR_Redefined "%1(%2!d!) : '%3' : identifier already defined"
  13. IDS_ERR_Undefined "%1(%2!d!) : '%3' : identifier not defined"
  14. IDS_ERR_MainProcMissing "%1 : 'proc main' declaration missing"
  15. IDS_ERR_IdentifierMissing "%1(%2!d!) : identifier expected"
  16. IDS_ERR_StringMissing "%1(%2!d!) : string parameter expected"
  17. IDS_ERR_IntMissing "%1(%2!d!) : integer parameter expected"
  18. IDS_ERR_RParenMissing "%1(%2!d!) : '%3' : '(' expected"
  19. IDS_ERR_InvalidType "%1(%2!d!) : '%3' : invalid type"
  20. IDS_ERR_InvalidParam "%1(%2!d!) : '%3' : invalid parameter"
  21. IDS_ERR_InvalidIPParam "%1(%2!d!) : '%3' : invalid 'set ipaddr' parameter"
  22. IDS_ERR_InvalidPortParam "%1(%2!d!) : '%3' : invalid 'set port' parameter"
  23. IDS_ERR_InvalidRange "%1(%2!d!) : '%3' : invalid numerical range"
  24. IDS_ERR_InvalidScreenParam "%1(%2!d!) : '%3' : invalid 'set screen' parameter"
  25. IDS_ERR_RequireInt "%1(%2!d!) : '%3' : type is expected to be an integer"
  26. IDS_ERR_RequireString "%1(%2!d!) : '%3' : type is expected to be a string"
  27. IDS_ERR_RequireBool "%1(%2!d!) : '%3' : type is expected to be a boolean"
  28. IDS_ERR_RequireIntString "%1(%2!d!) : '%3' : type is expected to be an integer or string"
  29. IDS_ERR_RequireIntStrBool "%1(%2!d!) : '%3' : type is expected to be an integer, string, or boolean"
  30. IDS_ERR_RequireLabel "%1(%2!d!) : '%3' : type is expected to be a label"
  31. IDS_ERR_TypeMismatch "%1(%2!d!) : '%3' : types mismatch"
  32. IDS_ERR_ScriptNotFound "The script '%1' cannot be found."
  33. END