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.

41 lines
820 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1996.
  5. //
  6. // File: consts.cxx
  7. //
  8. // Contents: Storage for contants declared in consts.hxx
  9. //
  10. // History: 01-02-96 DavidMun Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #include <headers.hxx>
  14. #pragma hdrstop
  15. #include "jt.hxx"
  16. //
  17. // Tunable parameters
  18. //
  19. const ULONG INDENT = 4; // spaces to indent each level of output
  20. const ULONG TIME_NOW_INCREMENT = 60; // seconds that NOW is in future
  21. const WCHAR *g_awszMonthAbbrev[12] =
  22. {
  23. L"Jan",
  24. L"Feb",
  25. L"Mar",
  26. L"Apr",
  27. L"May",
  28. L"Jun",
  29. L"Jul",
  30. L"Aug",
  31. L"Sep",
  32. L"Oct",
  33. L"Nov",
  34. L"Dec"
  35. };