home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c496 / 1.img / H_SYS.WPK / TIMEB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-20  |  559 b   |  23 lines

  1. /*
  2.  *  sys/timeb.h
  3.  *
  4.  *  Copyright (C) by WATCOM Systems Inc. 1991.    All rights reserved.
  5.  */
  6. #ifndef _TIME_T_DEFINED_
  7. typedef unsigned long time_t;    /* time value */
  8. #define _TIME_T_DEFINED_
  9. #endif
  10.  
  11. #ifndef _TIMEB_H_INCLUDED
  12.  
  13. struct timeb {
  14.     time_t    time;        /* time in seconds since Jan 1, 1970 GMT */
  15.     unsigned short millitm; /* milliseconds */
  16.     short    timezone;    /* difference in minutes from GMT to local */
  17.     short    dstflag;    /* nonzero if we are in daylight savings time */
  18. };
  19.  
  20. void ftime(struct timeb *);
  21. #define _TIMEB_H_INCLUDED
  22. #endif
  23.