home *** CD-ROM | disk | FTP | other *** search
/ Sams Cobol 24 Hours / Sams_Cobol_24_Hours.iso / Cobol32 / CRW / 32BIT / DISK6 / WINTIME.H_ / WINTIME.H
Text File  |  1995-08-29  |  2KB  |  59 lines

  1. /************************************************************************
  2.  *
  3.  *      Module:  WINTIME.H
  4.  *
  5.  ************************************************************************/
  6.  
  7. #define TIME_24HOUR      0x0001
  8. #define TIME_12HOUR      0x0002
  9. #define TIME_NOSECONDS   0x0004
  10.  
  11.  
  12. #define  IDS_SUNDAY    1024
  13. #define  IDS_MONDAY    1025
  14. #define  IDS_TUESDAY    1026
  15. #define  IDS_WEDNESDAY    1027
  16. #define  IDS_THURSDAY    1028
  17. #define  IDS_FRIDAY    1029
  18. #define  IDS_SATURDAY    1030
  19. #define  IDS_SUNDAY_SHORT    1031
  20. #define  IDS_MONDAY_SHORT    1032
  21. #define  IDS_TUESDAY_SHORT    1033
  22. #define  IDS_WEDNESDAY_SHORT    1034
  23. #define  IDS_THURSDAY_SHORT    1035
  24. #define  IDS_FRIDAY_SHORT    1036
  25. #define  IDS_SATURDAY_SHORT    1037
  26. #define  IDS_JANUARY    1040
  27. #define  IDS_FEBURARY    1041
  28. #define  IDS_MARCH    1042
  29. #define  IDS_APRIL    1043
  30. #define  IDS_MAY    1044
  31. #define  IDS_JUNE    1045
  32. #define  IDS_JULY    1046
  33. #define  IDS_AUGUST    1047
  34. #define  IDS_SEPTEMBER    1048
  35. #define  IDS_OCTOBER    1049
  36. #define  IDS_NOVEMBER    1050
  37. #define  IDS_DECEMBER    1051
  38. #define  IDS_JANUARY_SHORT    1056
  39. #define  IDS_FEBURARY_SHORT    1057
  40. #define  IDS_MARCH_SHORT    1058
  41. #define  IDS_APRIL_SHORT    1059
  42. #define  IDS_MAY_SHORT    1060
  43. #define  IDS_JUNE_SHORT    1061
  44. #define  IDS_JULY_SHORT    1062
  45. #define  IDS_AUGUST_SHORT    1063
  46. #define  IDS_SEPTEMBER_SHORT    1064
  47. #define  IDS_OCTOBER_SHORT    1065
  48. #define  IDS_NOVEMBER_SHORT    1066
  49. #define  IDS_DECEMBER_SHORT    1067
  50. #define  IDS_LONGDATE         1068
  51. #define  IDS_SHORTDATE        1069
  52.  
  53. LPSTR TimeGetCurTime( LPSTR lpszTime, WORD wFlags ) ;
  54. LPSTR TimeFormatTime( LPSTR lpszTime,
  55.                       struct tm FAR *pTM,
  56.                       WORD wFlags ) ;
  57. void TimeResetInternational( void ) ;
  58.  
  59.