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.

45 lines
1.3 KiB

  1. //+------------------------------------------------------------------
  2. //
  3. // File: _clw.hxx
  4. //
  5. // Contents: Private command line implementation header
  6. //
  7. // Classes:
  8. //
  9. // History: 25 Oct 93 DeanE Created
  10. //
  11. //-------------------------------------------------------------------
  12. #ifndef __CLW_HXX__
  13. #define __CLW_HXX__
  14. typedef const NCHAR CNCHAR;
  15. // Miscellaneous buffer/screen sizes
  16. //
  17. #define CMD_INDENT 14
  18. #define CMD_DISPLAY_WIDTH 75
  19. #define CMD_SWITCH_INDENT 2
  20. // Miscellaneous constants - note unique names as some are popular and
  21. // we don't want people using this library pick them up without realizing
  22. // it.
  23. //
  24. CNCHAR nchDefaultSep = _TEXTN('/');
  25. CNCHAR nchDefaultEquater = _TEXTN(':');
  26. CNCHAR nchClNull = _TEXTN('\0');
  27. CNCHAR nchClSpace = _TEXTN(' ');
  28. CNCHAR nchClNewLine = _TEXTN('\n');
  29. CNCHAR nchClQuote = _TEXTN('\"');
  30. CNCHAR nchClBackSlash = _TEXTN('\\');
  31. CNCHAR nszBoolTrue[] = _TEXTN("true");
  32. CNCHAR nszBoolFalse[] = _TEXTN("false");
  33. CNCHAR nszBoolOne[] = _TEXTN("1");
  34. CNCHAR nszBoolZero[] = _TEXTN("0");
  35. CNCHAR nszClSpace[] = _TEXTN(" ");
  36. CNCHAR nszClNewLine[] = _TEXTN("\n");
  37. CNCHAR nszClNull[] = _TEXTN("");
  38. #endif // __CLW_HXX__