home *** CD-ROM | disk | FTP | other *** search
/ Total Destruction / Total_Destruction.iso / addons / Lccwin32.exe / Lccwin32 / lccpub / include / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-21  |  465 b   |  26 lines

  1. #ifndef _LCC_TIMEB
  2. #define _LCC_TIMEB
  3.  
  4.  
  5. #ifndef _TIME_T_DEFINED
  6. typedef long time_t;
  7. #define _TIME_T_DEFINED
  8. #endif
  9. #define timeb    _timeb
  10. /* current definition */
  11. struct timeb {
  12.     time_t time;
  13.     unsigned short pad0;
  14.     unsigned long lpad0;
  15.     unsigned short millitm;
  16.     unsigned short pad1;
  17.     unsigned long lpad1;
  18.     short timezone;
  19.     unsigned short pad2;
  20.     unsigned long lpad2;
  21.     short dstflag;
  22.     };
  23.  
  24. void _ftime(struct _timeb *);
  25. #endif    /* _LCC_TIMEB */
  26.