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.

39 lines
950 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1996.
  5. //
  6. // File: consts.hxx
  7. //
  8. // Contents: Constants used in various modules.
  9. //
  10. // History: 01-02-96 DavidMun Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #ifndef __CONSTS_HXX_
  14. #define __CONSTS_HXX_
  15. //
  16. // Constants
  17. //
  18. // INDENT - number of chars per indentation level
  19. //
  20. // MAX_TOKEN_LEN - max string length of a token that parser can handle
  21. // (since tokens can be arbitrary strings, this should be
  22. // a generous limit)
  23. //
  24. extern const ULONG INDENT;
  25. #define MAX_TOKEN_LEN 1024
  26. #define MONTH_ABBREV_LEN 3
  27. extern const WCHAR *g_awszMonthAbbrev[12];
  28. extern const ULONG TIME_NOW_INCREMENT;
  29. #endif // __CONSTS_HXX_