home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 1.ddi / GENSYS.PAK / TIMEB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  594 b   |  40 lines

  1. /*  timeb.h
  2.  
  3.     Struct and function declarations for ftime().
  4.  
  5. */
  6.  
  7. /* $Copyright: 1987$ */
  8.  
  9. #if !defined(__TIMEB_H)
  10. #define __TIMEB_H
  11.  
  12. #if !defined(___DEFS_H)
  13. #include <_defs.h>
  14. #endif
  15.  
  16. #if !defined(__STDC__)
  17. #define timezone _timezone
  18. #endif
  19.  
  20. struct timeb {
  21.       long  time;
  22.       short millitm;
  23. #if defined(_RTLDLL)
  24.       short __timezone;
  25. #else
  26.       short _timezone;
  27. #endif
  28.       short dstflag;
  29.       };
  30.  
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. void _RTLENTRY _EXPFUNC ftime(struct timeb _FAR *);
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38.  
  39. #endif  /* __TIMEB_H */
  40.