home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / TIMEB.H < prev    next >
C/C++ Source or Header  |  1992-11-18  |  435b  |  30 lines

  1. /* sys/timeb.h (emx+gcc) */
  2.  
  3. #if !defined (_SYS_TIMEB_H)
  4. #define _SYS_TIMEB_H
  5.  
  6. #if defined (__cplusplus)
  7. extern "C" {
  8. #endif
  9.  
  10. #if !defined (_TIME_T)
  11. #define _TIME_T
  12. typedef unsigned long time_t;
  13. #endif
  14.  
  15. struct timeb
  16. {
  17.   time_t   time;
  18.   unsigned millitm;
  19.   int      timezone;
  20.   int      dstflag;
  21. };
  22.  
  23. void ftime (struct timeb *ptr);
  24.  
  25. #if defined (__cplusplus)
  26. }
  27. #endif
  28.  
  29. #endif /* !defined (_SYS_TIMEB_H) */
  30.