Source code of Windows XP (NT5)
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.

37 lines
2.5 KiB

  1. /*++
  2. This file contains the symbolic names and test for SH errors
  3. --*/
  4. DECL_STR( sheNone, 0, "symbols loaded" )
  5. DECL_STR( sheNoSymbols, 1, "no symbols loaded" )
  6. DECL_STR( sheFutureSymbols, 2, "symbol format not supported" )
  7. DECL_STR( sheMustRelink, 3, "symbol format not supported" )
  8. DECL_STR( sheNotPacked, 4, "must run cvpack on symbols" )
  9. DECL_STR( sheOutOfMemory, 5, "out of memory" )
  10. DECL_STR( sheCorruptOmf, 6, "symbol information corrupt" )
  11. DECL_STR( sheFileOpen, 7, "could not open symbol file" )
  12. DECL_STR( sheSuppressSyms, 8, "symbol loading suppressed" )
  13. DECL_STR( sheDeferSyms, 9, "symbol loading deferred" )
  14. DECL_STR( sheSymbolsConverted, 10, "symbols converted & loaded" )
  15. DECL_STR( sheBadTimeStamp, 11, "has mismatched timestamps" )
  16. DECL_STR( sheBadChecksum, 12, "has mismatched checksums" )
  17. DECL_STR( shePdbNotFound, 13, "can't find/open pdb file" )
  18. DECL_STR( shePdbBadSig, 14, "internal pdb signature doesn't match sym handler" )
  19. DECL_STR( shePdbInvalidAge, 15, "pdb info doesn't match image" )
  20. DECL_STR( shePdbOldFormat, 16, "pdb format is obsolete" )
  21. DECL_STR( sheConvertTIs, 17, "16 bit data was converted to 32 bits") // NB09 format, needs conversion to 32-bit type indices
  22. DECL_STR( sheJavaInvalidClass, 18, "Invalid Java class" ) // the class given is invalid
  23. DECL_STR( sheJavaNoCurrentProcess, 19, "No Java process" ) // no current process
  24. DECL_STR( sheJavaInvalidFile, 20, "Invalid Java file" ) // the file given is invalid
  25. DECL_STR( sheExportsConverted, 21, "exports loaded" )
  26. DECL_STR( sheCouldntReadImageHeader, 22, "Image header could not be read" ) // When the debugger cannot read the image header (because it
  27. // is paged out), it gets -1 for timestamps and checksums.
  28. // This message really means that it could not verifty that the symbols match, not that it thinks they don't.
  29. //
  30. // Last resort error returned by SHLszGetErrorText()
  31. // always the last one...
  32. //
  33. DECL_STR( sheMax, 23, "unknown symbol handler error" ) // marker for count of she's