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.

50 lines
1.3 KiB

  1. //+-------------------------------------------------------------------
  2. // File: testglob.hxx
  3. //
  4. // Contents: Generally useful global values.
  5. //
  6. // History: 19-Oct-93 DeanE Created
  7. //---------------------------------------------------------------------
  8. #ifndef __TESTGLOB_HXX__
  9. #define __TESTGLOB_HXX__
  10. typedef CONST WCHAR CWCHAR;
  11. // Global library character constants - note alphabetical order for
  12. // easy reference
  13. //
  14. CWCHAR wchBackSlash = L'\\';
  15. CWCHAR wchEqual = L'=';
  16. CWCHAR wchNewLine = L'\n';
  17. CWCHAR wchNull = L'\0';
  18. CWCHAR wchPeriod = L'.';
  19. CWCHAR wchSpace = L' ';
  20. // Global library string contants - note alphabetical order for
  21. // easy reference
  22. //
  23. CWCHAR wszNewLine[] = L"\n";
  24. CWCHAR wszNull[] = L"";
  25. CWCHAR wszPeriod[] = L".";
  26. typedef CONST NCHAR CNCHAR;
  27. // Global library character constants - note alphabetical order for
  28. // easy reference
  29. //
  30. CNCHAR nchBackSlash = _TN('\\');
  31. CNCHAR nchEqual = _TN('=');
  32. CNCHAR nchNewLine = _TN('\n');
  33. CNCHAR nchNull = _TN('\0');
  34. CNCHAR nchPeriod = _TN('.');
  35. CNCHAR nchSpace = _TN(' ');
  36. // Global library string contants - note alphabetical order for
  37. // easy reference
  38. //
  39. CNCHAR nszNewLine[] = _TN("\n");
  40. CNCHAR nszNull[] = _TN("");
  41. CNCHAR nszPeriod[] = _TN(".");
  42. #endif // __TESTGLOB_HXX__