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.

62 lines
1.5 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corp., 1991 **/
  4. /**********************************************************************/
  5. /*
  6. strtmdt.hxx
  7. String classes for time/date formatted output - definitions
  8. This file defines the classes
  9. TIME_NLS_STR
  10. DATE_NLS_STR
  11. Q.v. string.hxx, strformt.hxx, and strnumer.hxx.
  12. FILE HISTORY:
  13. beng 25-Feb-1992 Created
  14. */
  15. #ifndef _STRTMDT_HXX_
  16. #define _STRTMDT_HXX_
  17. /*************************************************************************
  18. NAME: TIME_NLS_STR
  19. SYNOPSIS: String formatted as a time, with time separators
  20. INTERFACE: TIME_NLS_STR() - ctor. Takes the value of the number as parm.
  21. PARENT: NLS_STR
  22. HISTORY:
  23. beng 25-Feb-1992 Created
  24. **************************************************************************/
  25. DLL_CLASS TIME_NLS_STR;
  26. /*************************************************************************
  27. NAME: DATE_NLS_STR
  28. SYNOPSIS: String formatted as a date
  29. INTERFACE: DATE_NLS_STR() - ctor. Takes the value of the number as parm.
  30. PARENT: NLS_STR
  31. HISTORY:
  32. beng 25-Feb-1992 Created
  33. **************************************************************************/
  34. DLL_CLASS DATE_NLS_STR;
  35. #endif // _STRTMDT_HXX_ - end of file