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.

54 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. All rights reserved.
  4. Module Name:
  5. dbgreg.cxx
  6. Abstract:
  7. Debug Constant Strings.
  8. Author:
  9. Steve Kiraly (SteveKi) 19-Jun-1998
  10. Revision History:
  11. --*/
  12. #include "precomp.hxx"
  13. #pragma hdrstop
  14. #include "dbgcstr.hxx"
  15. DEBUG_NS_BEGIN
  16. LPCTSTR kstrAnsi = _T("ansi");
  17. LPCTSTR kstrUnicode = _T("unicode");
  18. LPCTSTR kstrPrefix = _T("Debug");
  19. LPCTSTR kstrDefault = _T("Debug");
  20. LPCTSTR kstrNull = _T("");
  21. LPCTSTR kstrDefaultLogFileName = _T("debug.log");
  22. LPCTSTR kstrNewLine = _T("\n");
  23. LPCTSTR kstrSlash = _T("\\");
  24. LPCTSTR kstrSeparator = _T(":");
  25. LPCTSTR kstrSymbols = _T("symbols");
  26. LPCTSTR kstrDeviceNull = _T("null");
  27. LPCTSTR kstrConsole = _T("console");
  28. LPCTSTR kstrDebugger = _T("debugger");
  29. LPCTSTR kstrFile = _T("file");
  30. LPCTSTR kstrBacktrace = _T("backtrace");
  31. LPCTSTR kstrSympathRegistryPath = _T("Software\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options");
  32. LPCTSTR kstrSympathRegistryKey = _T("Sympath");
  33. LPCTSTR kstrSympathFormat = _T("Capture: Sympath %s\n");
  34. LPCTSTR kstrBacktraceStart = _T("++%x\n");
  35. LPCTSTR kstrBacktraceEnd = _T("--%x\n");
  36. LPCTSTR kstrBacktraceMiddle = _T(" %x\n");
  37. LPCTSTR kstrFileInfoFormat = _T(" %s %d");
  38. LPCTSTR kstrTimeStampFormatShort = _T(" tc=%x");
  39. LPCTSTR kstrTimeStampFormatLong = _T(" time=%s");
  40. LPCTSTR kstrThreadIdFormat = _T(" tid=%x");
  41. DEBUG_NS_END